diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 02036b4bb..97469ed9a 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -26146,7 +26146,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -28201,7 +28201,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -53797,6 +53797,57 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/secret-scanning-scan-history" + }, + "examples": { + "default": { + "$ref": "#/components/examples/secret-scanning-scan-history" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -109264,6 +109315,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -113295,6 +113350,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -114669,6 +114728,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -117002,6 +117065,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -120019,6 +120086,77 @@ } } }, + "secret-scanning-scan": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + "secret-scanning-scan-history": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "backfill_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "$ref": "#/components/schemas/secret-scanning-scan" + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, "repository-advisory-create": { "type": "object", "properties": { @@ -253175,6 +253313,10 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -279795,7 +279937,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -279849,7 +279992,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -279888,7 +280032,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -281266,7 +281411,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -281303,7 +281449,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } }, @@ -286192,6 +286339,63 @@ "token_type": "mailchimp_api_key" } }, + "secret-scanning-scan-history": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + }, "repository-advisory": { "value": { "ghsa_id": "GHSA-abcd-1234-efgh", diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index a982c0520..8b833afea 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -18998,7 +18998,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -20426,6 +20426,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -39023,6 +39025,42 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': + "$ref": "#/components/responses/service_unavailable" + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/secret-scanning-scan-history" + examples: + default: + "$ref": "#/components/examples/secret-scanning-scan-history" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -80267,6 +80305,9 @@ components: signature: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -83391,6 +83432,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true secret-scanning-push-protection-bypass-placeholder-id: description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -84483,6 +84527,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -86208,6 +86255,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -88431,6 +88481,56 @@ components: token_type: type: string description: The token type this bypass is for. + secret-scanning-scan: + description: Information on a single scan performed by secret scanning on the + repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or "running" + completed_at: + type: string + format: date-time + description: The time that the scan was completed. Empty if the scan is + active + nullable: true + started_at: + type: string + format: date-time + description: The time that the scan was started + secret-scanning-scan-history: + type: object + properties: + incremental_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + pattern_update_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + backfill_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + custom_pattern_backfill_scans: + type: array + items: + allOf: + - "$ref": "#/components/schemas/secret-scanning-scan" + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, one of + "repository", "organization", or "enterprise" repository-advisory-create: type: object properties: @@ -188841,6 +188941,9 @@ components: nullable: true verified: type: boolean + verified_at: + type: string + nullable: true required: - verified - reason @@ -211186,6 +211289,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -211228,6 +211332,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -211257,6 +211362,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -212296,6 +212402,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -212324,6 +212431,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -216618,6 +216726,43 @@ components: reason: will_fix_later expire_at: '2020-11-06T18:18:30Z' token_type: mailchimp_api_key + secret-scanning-scan-history: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization repository-advisory: value: ghsa_id: GHSA-abcd-1234-efgh diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 02036b4bb..97469ed9a 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -26146,7 +26146,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -28201,7 +28201,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -53797,6 +53797,57 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/secret-scanning-scan-history" + }, + "examples": { + "default": { + "$ref": "#/components/examples/secret-scanning-scan-history" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -109264,6 +109315,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -113295,6 +113350,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -114669,6 +114728,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -117002,6 +117065,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -120019,6 +120086,77 @@ } } }, + "secret-scanning-scan": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + "secret-scanning-scan-history": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "backfill_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "$ref": "#/components/schemas/secret-scanning-scan" + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, "repository-advisory-create": { "type": "object", "properties": { @@ -253175,6 +253313,10 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -279795,7 +279937,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -279849,7 +279992,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -279888,7 +280032,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -281266,7 +281411,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -281303,7 +281449,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } }, @@ -286192,6 +286339,63 @@ "token_type": "mailchimp_api_key" } }, + "secret-scanning-scan-history": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + }, "repository-advisory": { "value": { "ghsa_id": "GHSA-abcd-1234-efgh", diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index a982c0520..8b833afea 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -18998,7 +18998,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -20426,6 +20426,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -39023,6 +39025,42 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': + "$ref": "#/components/responses/service_unavailable" + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/secret-scanning-scan-history" + examples: + default: + "$ref": "#/components/examples/secret-scanning-scan-history" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -80267,6 +80305,9 @@ components: signature: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -83391,6 +83432,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true secret-scanning-push-protection-bypass-placeholder-id: description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -84483,6 +84527,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -86208,6 +86255,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -88431,6 +88481,56 @@ components: token_type: type: string description: The token type this bypass is for. + secret-scanning-scan: + description: Information on a single scan performed by secret scanning on the + repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or "running" + completed_at: + type: string + format: date-time + description: The time that the scan was completed. Empty if the scan is + active + nullable: true + started_at: + type: string + format: date-time + description: The time that the scan was started + secret-scanning-scan-history: + type: object + properties: + incremental_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + pattern_update_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + backfill_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + custom_pattern_backfill_scans: + type: array + items: + allOf: + - "$ref": "#/components/schemas/secret-scanning-scan" + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, one of + "repository", "organization", or "enterprise" repository-advisory-create: type: object properties: @@ -188841,6 +188941,9 @@ components: nullable: true verified: type: boolean + verified_at: + type: string + nullable: true required: - verified - reason @@ -211186,6 +211289,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -211228,6 +211332,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -211257,6 +211362,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -212296,6 +212402,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -212324,6 +212431,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -216618,6 +216726,43 @@ components: reason: will_fix_later expire_at: '2020-11-06T18:18:30Z' token_type: mailchimp_api_key + secret-scanning-scan-history: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization repository-advisory: value: ghsa_id: GHSA-abcd-1234-efgh diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index cad387514..65fe79549 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -162048,7 +162048,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -174214,7 +174214,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -180624,6 +180624,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -196853,6 +196857,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -229732,6 +229740,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -235419,6 +235431,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -240535,6 +240551,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -241077,6 +241097,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -241643,6 +241667,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -243622,6 +243650,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -243679,7 +243711,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -243838,6 +243871,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -243895,7 +243932,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -244337,6 +244375,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -244379,7 +244421,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -266464,6 +266507,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -266523,7 +266570,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -266853,6 +266901,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -266913,7 +266965,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -268166,6 +268219,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -268458,6 +268515,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -323598,6 +323659,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -328268,6 +328333,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -359812,6 +359881,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -391894,6 +391967,272 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "backfill_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -417810,6 +418149,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -1068726,6 +1069069,10 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 173c9311a..6776f634f 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -1004,7 +1004,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &548 + - &549 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -10761,7 +10761,7 @@ paths: url: type: string format: uri - user: &571 + user: &572 title: Public User description: Public User type: object @@ -15169,7 +15169,7 @@ paths: properties: *92 required: *93 examples: - default: &589 + default: &590 value: - login: github id: 1 @@ -16335,7 +16335,7 @@ paths: type: array items: *58 examples: - default: &583 + default: &584 value: total_count: 1 repositories: @@ -17149,7 +17149,7 @@ paths: type: array items: *113 examples: - default: &574 + default: &575 value: total_count: 1 repositories: @@ -27410,7 +27410,7 @@ paths: parameters: - *94 - *191 - - &588 + - &589 name: repo_name description: repo_name parameter in: path @@ -28429,7 +28429,7 @@ paths: - nuget - container - *94 - - &590 + - &591 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -28470,7 +28470,7 @@ paths: default: *199 '403': *29 '401': *25 - '400': &592 + '400': &593 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -33441,7 +33441,7 @@ paths: application/json: schema: type: array - items: &546 + items: &547 description: A repository security advisory. type: object properties: @@ -33732,7 +33732,7 @@ paths: - private_fork additionalProperties: false examples: - default: &547 + default: &548 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -34206,7 +34206,7 @@ paths: description: Response content: application/json: - schema: &606 + schema: &607 type: object properties: total_minutes_used: @@ -34276,7 +34276,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &607 + default: &608 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -34312,7 +34312,7 @@ paths: description: Response content: application/json: - schema: &608 + schema: &609 type: object properties: total_gigabytes_bandwidth_used: @@ -34330,7 +34330,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &609 + default: &610 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -34362,7 +34362,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &611 type: object properties: days_left_in_billing_cycle: @@ -34380,7 +34380,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &611 + default: &612 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -35301,7 +35301,7 @@ paths: - updated_at - url examples: - default: &561 + default: &562 value: - author: login: octocat @@ -35549,7 +35549,7 @@ paths: application/json: schema: *241 examples: - default: &562 + default: &563 value: author: login: octocat @@ -35732,7 +35732,7 @@ paths: - updated_at - url examples: - default: &563 + default: &564 value: - author: login: octocat @@ -35958,7 +35958,7 @@ paths: application/json: schema: *244 examples: - default: &564 + default: &565 value: author: login: octocat @@ -36574,7 +36574,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &565 + response-if-user-is-a-team-maintainer: &566 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -36639,7 +36639,7 @@ paths: application/json: schema: *251 examples: - response-if-users-membership-with-team-is-now-pending: &566 + response-if-users-membership-with-team-is-now-pending: &567 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -36781,7 +36781,7 @@ paths: - updated_at - permissions examples: - default: &567 + default: &568 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -36858,7 +36858,7 @@ paths: application/json: schema: *252 examples: - default: &568 + default: &569 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -37061,7 +37061,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &569 + schema: &570 title: Team Repository description: A team's access to a repository. type: object @@ -37718,7 +37718,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: &570 + response-if-child-teams-exist: &571 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -41932,7 +41932,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -44806,6 +44806,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -46222,6 +46224,9 @@ paths: signature: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -49387,7 +49392,7 @@ paths: check. type: array items: *333 - deployment: &620 + deployment: &621 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -50301,7 +50306,7 @@ paths: type: string format: date-time nullable: true - head_commit: &646 + head_commit: &647 title: Simple Commit description: A commit. type: object @@ -54245,14 +54250,14 @@ paths: type: integer machines: type: array - items: &577 + items: &578 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *372 required: *373 examples: - default: &578 + default: &579 value: total_count: 2 machines: @@ -57535,7 +57540,7 @@ paths: application/json: schema: type: array - items: &551 + items: &552 title: Status description: The status of a commit. type: object @@ -58959,6 +58964,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true examples: example-for-updating-a-file: value: @@ -59002,6 +59010,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -59050,6 +59059,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *7 '422': *16 '409': @@ -59205,6 +59215,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *16 '404': *7 '409': *134 @@ -63780,6 +63791,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -63826,6 +63840,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -63920,6 +63935,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *7 '409': *134 x-github: @@ -64814,7 +64830,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &654 + last_response: &655 title: Hook Response type: object properties: @@ -65771,7 +65787,7 @@ paths: parameters: - *254 - *255 - - &601 + - &602 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -66205,7 +66221,7 @@ paths: type: array items: *447 examples: - default: &594 + default: &595 value: - id: 1 repository: @@ -70042,6 +70058,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -79896,7 +79915,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &675 + items: &676 type: object properties: type: @@ -80317,6 +80336,122 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - *254 + - *255 + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': *63 + '200': + description: Response + content: + application/json: + schema: + type: object + properties: + incremental_scans: + type: array + items: &546 + description: Information on a single scan performed by secret + scanning on the repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or + "running" + completed_at: + type: string + format: date-time + description: The time that the scan was completed. Empty + if the scan is active + nullable: true + started_at: + type: string + format: date-time + description: The time that the scan was started + pattern_update_scans: + type: array + items: *546 + backfill_scans: + type: array + items: *546 + custom_pattern_backfill_scans: + type: array + items: + allOf: + - *546 + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern + scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, + one of "repository", "organization", or "enterprise" + examples: + default: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -80378,9 +80513,9 @@ paths: application/json: schema: type: array - items: *546 + items: *547 examples: - default: *547 + default: *548 '400': *15 '404': *7 x-github: @@ -80564,9 +80699,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: &549 + default: &550 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -80904,7 +81039,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: default: value: @@ -81053,15 +81188,15 @@ paths: parameters: - *254 - *255 - - *548 + - *549 responses: '200': description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: *549 + default: *550 '403': *29 '404': *7 x-github: @@ -81087,7 +81222,7 @@ paths: parameters: - *254 - *255 - - *548 + - *549 requestBody: required: true content: @@ -81246,10 +81381,10 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: *549 - add_credit: *549 + default: *550 + add_credit: *550 '403': *29 '404': *7 '422': @@ -81289,7 +81424,7 @@ paths: parameters: - *254 - *255 - - *548 + - *549 responses: '202': *99 '400': *15 @@ -81318,7 +81453,7 @@ paths: parameters: - *254 - *255 - - *548 + - *549 responses: '202': description: Response @@ -81462,7 +81597,7 @@ paths: application/json: schema: type: array - items: &550 + items: &551 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -81835,7 +81970,7 @@ paths: application/json: schema: type: array - items: *550 + items: *551 examples: default: value: @@ -81923,7 +82058,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -82017,7 +82152,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &552 + schema: &553 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -82112,7 +82247,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *553 examples: default: value: @@ -82249,7 +82384,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Tag protection description: Tag protection type: object @@ -82325,7 +82460,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -82473,7 +82608,7 @@ paths: description: Response content: application/json: - schema: &554 + schema: &555 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -82485,7 +82620,7 @@ paths: required: - names examples: - default: &555 + default: &556 value: names: - octocat @@ -82540,9 +82675,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: - default: *555 + default: *556 '404': *7 '422': *8 x-github: @@ -82565,7 +82700,7 @@ paths: parameters: - *254 - *255 - - &556 + - &557 name: per description: The time frame to display results for. in: query @@ -82594,7 +82729,7 @@ paths: example: 128 clones: type: array - items: &557 + items: &558 title: Traffic type: object properties: @@ -82835,7 +82970,7 @@ paths: parameters: - *254 - *255 - - *556 + - *557 responses: '200': description: Response @@ -82854,7 +82989,7 @@ paths: example: 3782 views: type: array - items: *557 + items: *558 required: - uniques - count @@ -83623,7 +83758,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &558 + text_matches: &559 title: Search Result Text Matches type: array items: @@ -83785,7 +83920,7 @@ paths: enum: - author-date - committer-date - - &559 + - &560 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 @@ -83913,7 +84048,7 @@ paths: type: number node_id: type: string - text_matches: *558 + text_matches: *559 required: - sha - node_id @@ -84105,7 +84240,7 @@ paths: - interactions - created - updated - - *559 + - *560 - *18 - *20 responses: @@ -84225,7 +84360,7 @@ paths: type: string format: date-time nullable: true - text_matches: *558 + text_matches: *559 pull_request: type: object properties: @@ -84449,7 +84584,7 @@ paths: enum: - created - updated - - *559 + - *560 - *18 - *20 responses: @@ -84493,7 +84628,7 @@ paths: nullable: true score: type: number - text_matches: *558 + text_matches: *559 required: - id - node_id @@ -84578,7 +84713,7 @@ paths: - forks - help-wanted-issues - updated - - *559 + - *560 - *18 - *20 responses: @@ -84817,7 +84952,7 @@ paths: - admin - pull - push - text_matches: *558 + text_matches: *559 temp_clone_token: type: string allow_merge_commit: @@ -85117,7 +85252,7 @@ paths: type: string format: uri nullable: true - text_matches: *558 + text_matches: *559 related: type: array nullable: true @@ -85308,7 +85443,7 @@ paths: - followers - repositories - joined - - *559 + - *560 - *18 - *20 responses: @@ -85412,7 +85547,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *558 + text_matches: *559 blog: type: string nullable: true @@ -85491,7 +85626,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &560 + - &561 name: team_id description: The unique identifier of the team. in: path @@ -85532,7 +85667,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *560 + - *561 requestBody: required: true content: @@ -85632,7 +85767,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *560 + - *561 responses: '204': description: Response @@ -85663,7 +85798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *560 + - *561 - *42 - *18 - *20 @@ -85676,7 +85811,7 @@ paths: type: array items: *241 examples: - default: *561 + default: *562 headers: Link: *39 x-github: @@ -85705,7 +85840,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *560 + - *561 requestBody: required: true content: @@ -85768,7 +85903,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *560 + - *561 - *243 responses: '200': @@ -85802,7 +85937,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *560 + - *561 - *243 requestBody: required: false @@ -85828,7 +85963,7 @@ paths: application/json: schema: *241 examples: - default: *562 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85853,7 +85988,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *560 + - *561 - *243 responses: '204': @@ -85883,7 +86018,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *560 + - *561 - *243 - *42 - *18 @@ -85897,7 +86032,7 @@ paths: type: array items: *244 examples: - default: *563 + default: *564 headers: Link: *39 x-github: @@ -85926,7 +86061,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *560 + - *561 - *243 requestBody: required: true @@ -85978,7 +86113,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *560 + - *561 - *243 - *246 responses: @@ -86013,7 +86148,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *560 + - *561 - *243 - *246 requestBody: @@ -86039,7 +86174,7 @@ paths: application/json: schema: *244 examples: - default: *564 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86064,7 +86199,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *560 + - *561 - *243 - *246 responses: @@ -86095,7 +86230,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *560 + - *561 - *243 - *246 - name: content @@ -86154,7 +86289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *560 + - *561 - *243 - *246 requestBody: @@ -86216,7 +86351,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *560 + - *561 - *243 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -86274,7 +86409,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *560 + - *561 - *243 requestBody: required: true @@ -86333,7 +86468,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *560 + - *561 - *18 - *20 responses: @@ -86371,7 +86506,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *560 + - *561 - name: role description: Filters members returned by their role in the team. in: query @@ -86422,7 +86557,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *560 + - *561 - *126 responses: '204': @@ -86459,7 +86594,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *560 + - *561 - *126 responses: '204': @@ -86499,7 +86634,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *560 + - *561 - *126 responses: '204': @@ -86536,7 +86671,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *560 + - *561 - *126 responses: '200': @@ -86545,7 +86680,7 @@ paths: application/json: schema: *251 examples: - response-if-user-is-a-team-maintainer: *565 + response-if-user-is-a-team-maintainer: *566 '404': *7 x-github: githubCloudOnly: false @@ -86578,7 +86713,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *560 + - *561 - *126 requestBody: required: false @@ -86606,7 +86741,7 @@ paths: application/json: schema: *251 examples: - response-if-users-membership-with-team-is-now-pending: *566 + response-if-users-membership-with-team-is-now-pending: *567 '403': description: Forbidden if team synchronization is set up '422': @@ -86640,7 +86775,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *560 + - *561 - *126 responses: '204': @@ -86670,7 +86805,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *560 + - *561 - *18 - *20 responses: @@ -86682,7 +86817,7 @@ paths: type: array items: *252 examples: - default: *567 + default: *568 headers: Link: *39 '404': *7 @@ -86709,7 +86844,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *560 + - *561 - *253 responses: '200': @@ -86718,7 +86853,7 @@ paths: application/json: schema: *252 examples: - default: *568 + default: *569 '404': description: Not Found if project is not managed by this team x-github: @@ -86743,7 +86878,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *560 + - *561 - *253 requestBody: required: false @@ -86812,7 +86947,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *560 + - *561 - *253 responses: '204': @@ -86840,7 +86975,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *560 + - *561 - *18 - *20 responses: @@ -86882,7 +87017,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *560 + - *561 - *254 - *255 responses: @@ -86890,7 +87025,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *569 + schema: *570 examples: alternative-response-with-extra-repository-information: value: @@ -87041,7 +87176,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *560 + - *561 - *254 - *255 requestBody: @@ -87093,7 +87228,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *560 + - *561 - *254 - *255 responses: @@ -87120,7 +87255,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *560 + - *561 - *18 - *20 responses: @@ -87132,7 +87267,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: *570 + response-if-child-teams-exist: *571 headers: Link: *39 '404': *7 @@ -87165,7 +87300,7 @@ paths: application/json: schema: oneOf: - - &572 + - &573 title: Private User description: Private User type: object @@ -87368,7 +87503,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *571 + - *572 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -87521,7 +87656,7 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: default: value: @@ -87919,7 +88054,7 @@ paths: type: integer secrets: type: array - items: &573 + items: &574 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -88035,7 +88170,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: default: value: @@ -88181,7 +88316,7 @@ paths: type: array items: *113 examples: - default: *574 + default: *575 '401': *25 '403': *29 '404': *7 @@ -88448,7 +88583,7 @@ paths: description: Response content: application/json: - schema: &575 + schema: &576 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -88489,7 +88624,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &576 + default: &577 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -88534,9 +88669,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 '404': *7 x-github: githubCloudOnly: false @@ -88573,9 +88708,9 @@ paths: type: integer machines: type: array - items: *577 + items: *578 examples: - default: *578 + default: *579 '304': *37 '500': *41 '401': *25 @@ -89514,7 +89649,7 @@ paths: type: array items: *198 examples: - default: &591 + default: &592 value: - id: 197 name: hello_docker @@ -89615,7 +89750,7 @@ paths: application/json: schema: type: array - items: &579 + items: &580 title: Email description: Email type: object @@ -89680,9 +89815,9 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: - default: &593 + default: &594 value: - email: octocat@github.com verified: true @@ -89757,7 +89892,7 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: default: value: @@ -90013,7 +90148,7 @@ paths: application/json: schema: type: array - items: &580 + items: &581 title: GPG Key description: A unique encryption key type: object @@ -90144,7 +90279,7 @@ paths: - subkeys - revoked examples: - default: &604 + default: &605 value: - id: 3 name: Octocat's GPG Key @@ -90229,9 +90364,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: &581 + default: &582 value: id: 3 name: Octocat's GPG Key @@ -90288,7 +90423,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &582 + - &583 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -90300,9 +90435,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: *581 + default: *582 '404': *7 '304': *37 '403': *29 @@ -90325,7 +90460,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *582 + - *583 responses: '204': description: Response @@ -90516,7 +90651,7 @@ paths: type: array items: *58 examples: - default: *583 + default: *584 headers: Link: *39 '404': *7 @@ -90780,7 +90915,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: Key description: Key type: object @@ -90877,9 +91012,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &585 + default: &586 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -90918,9 +91053,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *585 + default: *586 '404': *7 '304': *37 '403': *29 @@ -90976,7 +91111,7 @@ paths: application/json: schema: type: array - items: &586 + items: &587 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -91044,7 +91179,7 @@ paths: - account - plan examples: - default: &587 + default: &588 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -91106,9 +91241,9 @@ paths: application/json: schema: type: array - items: *586 + items: *587 examples: - default: *587 + default: *588 headers: Link: *39 '304': *37 @@ -92103,7 +92238,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *191 - - *588 + - *589 responses: '204': description: Response @@ -92176,7 +92311,7 @@ paths: type: array items: *187 examples: - default: *589 + default: *590 headers: Link: *39 '304': *37 @@ -92218,7 +92353,7 @@ paths: - docker - nuget - container - - *590 + - *591 - *20 - *18 responses: @@ -92230,8 +92365,8 @@ paths: type: array items: *198 examples: - default: *591 - '400': *592 + default: *592 + '400': *593 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -92260,7 +92395,7 @@ paths: application/json: schema: *198 examples: - default: &605 + default: &606 value: id: 40201 name: octo-name @@ -92710,9 +92845,9 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: - default: *593 + default: *594 headers: Link: *39 '304': *37 @@ -92825,7 +92960,7 @@ paths: type: array items: *58 examples: - default: &600 + default: &601 summary: Default response value: - id: 1296269 @@ -93169,7 +93304,7 @@ paths: type: array items: *447 examples: - default: *594 + default: *595 headers: Link: *39 '304': *37 @@ -93248,7 +93383,7 @@ paths: application/json: schema: type: array - items: &595 + items: &596 title: Social account description: Social media account type: object @@ -93263,7 +93398,7 @@ paths: - provider - url examples: - default: &596 + default: &597 value: - provider: twitter url: https://twitter.com/github @@ -93325,9 +93460,9 @@ paths: application/json: schema: type: array - items: *595 + items: *596 examples: - default: *596 + default: *597 '422': *16 '304': *37 '404': *7 @@ -93414,7 +93549,7 @@ paths: application/json: schema: type: array - items: &597 + items: &598 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -93434,7 +93569,7 @@ paths: - title - created_at examples: - default: &612 + default: &613 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -93500,9 +93635,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: &598 + default: &599 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -93533,7 +93668,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: - - &599 + - &600 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -93545,9 +93680,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: *598 + default: *599 '404': *7 '304': *37 '403': *29 @@ -93570,7 +93705,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: - - *599 + - *600 responses: '204': description: Response @@ -93599,7 +93734,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &613 + - &614 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 @@ -93624,11 +93759,11 @@ paths: type: array items: *58 examples: - default-response: *600 + default-response: *601 application/vnd.github.v3.star+json: schema: type: array - items: &614 + items: &615 title: Starred Repository description: Starred Repository type: object @@ -93995,10 +94130,10 @@ paths: application/json: schema: oneOf: + - *573 - *572 - - *571 examples: - default-response: &602 + default-response: &603 summary: Default response value: login: octocat @@ -94033,7 +94168,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &603 + response-with-git-hub-plan-information: &604 summary: Response with GitHub plan information value: login: octocat @@ -94093,7 +94228,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *601 + - *602 - *18 responses: '200': @@ -94140,11 +94275,11 @@ paths: application/json: schema: oneOf: + - *573 - *572 - - *571 examples: - default-response: *602 - response-with-git-hub-plan-information: *603 + default-response: *603 + response-with-git-hub-plan-information: *604 '404': *7 x-github: githubCloudOnly: false @@ -94306,7 +94441,7 @@ paths: type: array items: *198 examples: - default: *591 + default: *592 '403': *29 '401': *25 x-github: @@ -94710,9 +94845,9 @@ paths: application/json: schema: type: array - items: *580 + items: *581 examples: - default: *604 + default: *605 headers: Link: *39 x-github: @@ -94894,7 +95029,7 @@ paths: type: array items: *187 examples: - default: *589 + default: *590 headers: Link: *39 x-github: @@ -94933,7 +95068,7 @@ paths: - docker - nuget - container - - *590 + - *591 - *126 - *20 - *18 @@ -94946,10 +95081,10 @@ paths: type: array items: *198 examples: - default: *591 + default: *592 '403': *29 '401': *25 - '400': *592 + '400': *593 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -94979,7 +95114,7 @@ paths: application/json: schema: *198 examples: - default: *605 + default: *606 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95572,9 +95707,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: *607 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95602,9 +95737,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *609 + default: *610 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95632,9 +95767,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *611 examples: - default: *611 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95662,9 +95797,9 @@ paths: application/json: schema: type: array - items: *595 + items: *596 examples: - default: *596 + default: *597 headers: Link: *39 x-github: @@ -95694,9 +95829,9 @@ paths: application/json: schema: type: array - items: *597 + items: *598 examples: - default: *612 + default: *613 headers: Link: *39 x-github: @@ -95721,7 +95856,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *126 - - *613 + - *614 - *42 - *18 - *20 @@ -95733,11 +95868,11 @@ paths: schema: anyOf: - type: array - items: *614 + items: *615 - type: array items: *58 examples: - default-response: *600 + default-response: *601 headers: Link: *39 x-github: @@ -95896,7 +96031,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &615 + enterprise: &616 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -95954,7 +96089,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &616 + installation: &617 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -95973,7 +96108,7 @@ x-webhooks: required: - id - node_id - organization: &617 + organization: &618 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -96033,13 +96168,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &618 + repository: &619 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &648 + properties: &649 id: description: Unique identifier of the repository example: 42 @@ -96722,7 +96857,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &649 + required: &650 - archive_url - assignees_url - blobs_url @@ -96873,10 +97008,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -96952,11 +97087,11 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - rule: &619 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + rule: &620 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) @@ -97179,11 +97314,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - rule: *619 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + rule: *620 sender: *19 required: - action @@ -97366,11 +97501,11 @@ x-webhooks: - everyone required: - from - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - rule: *619 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + rule: *620 sender: *19 required: - action @@ -97454,7 +97589,7 @@ x-webhooks: type: string enum: - completed - check_run: &621 + check_run: &622 title: CheckRun description: A check performed on the code of a given code change type: object @@ -97555,7 +97690,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *620 + deployment: *621 details_url: example: https://example.com type: string @@ -97640,9 +97775,9 @@ x-webhooks: - output - app - pull_requests - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - check_run @@ -98035,10 +98170,10 @@ x-webhooks: type: string enum: - created - check_run: *621 - installation: *616 - organization: *617 - repository: *618 + check_run: *622 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - check_run @@ -98434,10 +98569,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *621 - installation: *616 - organization: *617 - repository: *618 + check_run: *622 + installation: *617 + organization: *618 + repository: *619 requested_action: description: The action requested by the user. type: object @@ -98842,10 +98977,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *621 - installation: *616 - organization: *617 - repository: *618 + check_run: *622 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - check_run @@ -99822,10 +99957,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -100495,10 +100630,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -101162,10 +101297,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -101465,20 +101600,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &622 + commit_oid: &623 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: *615 - installation: *616 - organization: *617 - ref: &623 + enterprise: *616 + installation: *617 + organization: *618 + ref: &624 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: *618 + repository: *619 sender: *19 required: - action @@ -101796,12 +101931,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *622 - enterprise: *615 - installation: *616 - organization: *617 - ref: *623 - repository: *618 + commit_oid: *623 + enterprise: *616 + installation: *617 + organization: *618 + ref: *624 + repository: *619 sender: *19 required: - action @@ -102058,12 +102193,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *622 - enterprise: *615 - installation: *616 - organization: *617 - ref: *623 - repository: *618 + commit_oid: *623 + enterprise: *616 + installation: *617 + organization: *618 + ref: *624 + repository: *619 sender: *19 required: - action @@ -102384,12 +102519,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *622 - enterprise: *615 - installation: *616 - organization: *617 - ref: *623 - repository: *618 + commit_oid: *623 + enterprise: *616 + installation: *617 + organization: *618 + ref: *624 + repository: *619 sender: *19 required: - action @@ -102646,16 +102781,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *618 + repository: *619 sender: *19 required: - action @@ -102881,12 +103016,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *622 - enterprise: *615 - installation: *616 - organization: *617 - ref: *623 - repository: *618 + commit_oid: *623 + enterprise: *616 + installation: *617 + organization: *618 + ref: *624 + repository: *619 sender: *19 required: - action @@ -103143,10 +103278,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -103226,18 +103361,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *617 - pusher_type: &624 + organization: *618 + pusher_type: &625 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &625 + ref: &626 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -103247,7 +103382,7 @@ x-webhooks: enum: - tag - branch - repository: *618 + repository: *619 sender: *19 required: - ref @@ -103330,9 +103465,9 @@ x-webhooks: enum: - created definition: *212 - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 sender: *19 required: - action @@ -103417,9 +103552,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 sender: *19 required: - action @@ -103497,9 +103632,9 @@ x-webhooks: enum: - updated definition: *212 - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 sender: *19 required: - action @@ -103576,10 +103711,10 @@ x-webhooks: type: string enum: - updated - enterprise: *615 - installation: *616 - repository: *618 - organization: *617 + enterprise: *616 + installation: *617 + repository: *619 + organization: *618 sender: *19 new_property_values: type: array @@ -103664,18 +103799,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *615 - installation: *616 - organization: *617 - pusher_type: *624 - ref: *625 + enterprise: *616 + installation: *617 + organization: *618 + pusher_type: *625 + ref: *626 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *618 + repository: *619 sender: *19 required: - ref @@ -103760,10 +103895,10 @@ x-webhooks: enum: - auto_dismissed alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -103848,10 +103983,10 @@ x-webhooks: enum: - auto_reopened alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -103936,10 +104071,10 @@ x-webhooks: enum: - created alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -104022,10 +104157,10 @@ x-webhooks: enum: - dismissed alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -104108,10 +104243,10 @@ x-webhooks: enum: - fixed alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -104195,10 +104330,10 @@ x-webhooks: enum: - reintroduced alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -104281,10 +104416,10 @@ x-webhooks: enum: - reopened alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -104361,9 +104496,9 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - key: &626 + enterprise: *616 + installation: *617 + key: &627 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -104399,8 +104534,8 @@ x-webhooks: - verified - created_at - read_only - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -104477,11 +104612,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - key: *626 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + key: *627 + organization: *618 + repository: *619 sender: *19 required: - action @@ -105042,12 +105177,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - workflow: &630 + workflow: &631 title: Workflow type: object nullable: true @@ -105777,9 +105912,9 @@ x-webhooks: pull_requests: type: array items: *493 - repository: *618 - organization: *617 - installation: *616 + repository: *619 + organization: *618 + installation: *617 sender: *19 responses: '200': @@ -105850,7 +105985,7 @@ x-webhooks: type: string enum: - approved - approver: &627 + approver: &628 type: object properties: avatar_url: @@ -105893,11 +106028,11 @@ x-webhooks: type: string comment: type: string - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - reviewers: &628 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + reviewers: &629 type: array items: type: object @@ -105976,7 +106111,7 @@ x-webhooks: sender: *19 since: type: string - workflow_job_run: &629 + workflow_job_run: &630 type: object properties: conclusion: @@ -106707,18 +106842,18 @@ x-webhooks: type: string enum: - rejected - approver: *627 + approver: *628 comment: type: string - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - reviewers: *628 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + reviewers: *629 sender: *19 since: type: string - workflow_job_run: *629 + workflow_job_run: *630 workflow_job_runs: type: array items: @@ -107422,13 +107557,13 @@ x-webhooks: type: string enum: - requested - enterprise: *615 + enterprise: *616 environment: type: string - installation: *616 - organization: *617 - repository: *618 - requestor: &635 + installation: *617 + organization: *618 + repository: *619 + requestor: &636 title: User type: object nullable: true @@ -109327,12 +109462,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - workflow: *630 + workflow: *631 workflow_run: title: Deployment Workflow Run type: object @@ -110012,7 +110147,7 @@ x-webhooks: type: string enum: - answered - answer: &633 + answer: &634 type: object properties: author_association: @@ -110169,7 +110304,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &631 + discussion: &632 title: Discussion description: A Discussion in a repository. type: object @@ -110477,10 +110612,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -110607,11 +110742,11 @@ x-webhooks: - from required: - category - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -110694,11 +110829,11 @@ x-webhooks: type: string enum: - closed - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -110780,7 +110915,7 @@ x-webhooks: type: string enum: - created - comment: &632 + comment: &633 type: object properties: author_association: @@ -110937,11 +111072,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111024,12 +111159,12 @@ x-webhooks: type: string enum: - deleted - comment: *632 - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + comment: *633 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111124,12 +111259,12 @@ x-webhooks: - from required: - body - comment: *632 - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + comment: *633 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111213,11 +111348,11 @@ x-webhooks: type: string enum: - created - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111299,11 +111434,11 @@ x-webhooks: type: string enum: - deleted - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111403,11 +111538,11 @@ x-webhooks: type: string required: - from - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111489,10 +111624,10 @@ x-webhooks: type: string enum: - labeled - discussion: *631 - enterprise: *615 - installation: *616 - label: &634 + discussion: *632 + enterprise: *616 + installation: *617 + label: &635 title: Label type: object properties: @@ -111524,8 +111659,8 @@ x-webhooks: - color - default - description - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111608,11 +111743,11 @@ x-webhooks: type: string enum: - locked - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111694,11 +111829,11 @@ x-webhooks: type: string enum: - pinned - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111780,11 +111915,11 @@ x-webhooks: type: string enum: - reopened - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111869,16 +112004,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *631 - new_repository: *618 + new_discussion: *632 + new_repository: *619 required: - new_discussion - new_repository - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111961,10 +112096,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *631 - old_answer: *633 - organization: *617 - repository: *618 + discussion: *632 + old_answer: *634 + organization: *618 + repository: *619 sender: *19 required: - action @@ -112046,12 +112181,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *631 - enterprise: *615 - installation: *616 - label: *634 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -112134,11 +112269,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -112220,11 +112355,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -112297,7 +112432,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *615 + enterprise: *616 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -112957,9 +113092,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - forkee @@ -113105,9 +113240,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pages: description: The pages that were updated. type: array @@ -113144,7 +113279,7 @@ x-webhooks: - action - sha - html_url - repository: *618 + repository: *619 sender: *19 required: - pages @@ -113220,10 +113355,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories: &636 + organization: *618 + repositories: &637 description: An array of repository objects that the installation can access. type: array @@ -113249,8 +113384,8 @@ x-webhooks: - name - full_name - private - repository: *618 - requester: *635 + repository: *619 + requester: *636 sender: *19 required: - action @@ -113325,11 +113460,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories: *636 - repository: *618 + organization: *618 + repositories: *637 + repository: *619 requester: nullable: true sender: *19 @@ -113405,11 +113540,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories: *636 - repository: *618 + organization: *618 + repositories: *637 + repository: *619 requester: nullable: true sender: *19 @@ -113485,10 +113620,10 @@ x-webhooks: type: string enum: - added - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories_added: &637 + organization: *618 + repositories_added: &638 description: An array of repository objects, which were added to the installation. type: array @@ -113534,15 +113669,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *618 - repository_selection: &638 + repository: *619 + repository_selection: &639 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *635 + requester: *636 sender: *19 required: - action @@ -113621,10 +113756,10 @@ x-webhooks: type: string enum: - removed - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories_added: *637 + organization: *618 + repositories_added: *638 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -113651,9 +113786,9 @@ x-webhooks: - name - full_name - private - repository: *618 - repository_selection: *638 - requester: *635 + repository: *619 + repository_selection: *639 + requester: *636 sender: *19 required: - action @@ -113732,11 +113867,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories: *636 - repository: *618 + organization: *618 + repositories: *637 + repository: *619 requester: nullable: true sender: *19 @@ -113914,10 +114049,10 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 target_type: type: string @@ -113996,11 +114131,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories: *636 - repository: *618 + organization: *618 + repositories: *637 + repository: *619 requester: nullable: true sender: *19 @@ -114252,8 +114387,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -115394,8 +115529,8 @@ x-webhooks: - state - locked - assignee - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -115475,7 +115610,7 @@ x-webhooks: type: string enum: - deleted - comment: &639 + comment: &640 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -115640,8 +115775,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -116780,8 +116915,8 @@ x-webhooks: - state - locked - assignee - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -116861,7 +116996,7 @@ x-webhooks: type: string enum: - edited - changes: &667 + changes: &668 description: The changes to the comment. type: object properties: @@ -116873,9 +117008,9 @@ x-webhooks: type: string required: - from - comment: *639 - enterprise: *615 - installation: *616 + comment: *640 + enterprise: *616 + installation: *617 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -118015,8 +118150,8 @@ x-webhooks: - state - locked - assignee - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -118098,10 +118233,10 @@ x-webhooks: type: string enum: - assigned - assignee: *635 - enterprise: *615 - installation: *616 - issue: &642 + assignee: *636 + enterprise: *616 + installation: *617 + issue: &643 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -119005,8 +119140,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -119086,8 +119221,8 @@ x-webhooks: type: string enum: - closed - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -120131,8 +120266,8 @@ x-webhooks: required: - state - closed_at - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -120211,8 +120346,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -121109,8 +121244,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -121189,8 +121324,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -122090,7 +122225,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &640 + milestone: &641 title: Milestone description: A collection of related issues and pull requests. type: object @@ -122228,8 +122363,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -122328,8 +122463,8 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -123233,9 +123368,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *634 - organization: *617 - repository: *618 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -123315,8 +123450,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -124219,9 +124354,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *634 - organization: *617 - repository: *618 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -124301,8 +124436,8 @@ x-webhooks: type: string enum: - locked - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -125206,8 +125341,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -125286,8 +125421,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -126185,9 +126320,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *640 - organization: *617 - repository: *618 + milestone: *641 + organization: *618 + repository: *619 sender: *19 required: - action @@ -127634,8 +127769,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128538,8 +128673,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -128619,9 +128754,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *615 - installation: *616 - issue: &641 + enterprise: *616 + installation: *617 + issue: &642 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -129518,8 +129653,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -129598,8 +129733,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -130502,8 +130637,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -131951,11 +132086,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *615 - installation: *616 - issue: *641 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + issue: *642 + organization: *618 + repository: *619 sender: *19 required: - action @@ -132036,7 +132171,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &670 + assignee: &671 title: User type: object nullable: true @@ -132106,11 +132241,11 @@ x-webhooks: required: - login - id - enterprise: *615 - installation: *616 - issue: *642 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + issue: *643 + organization: *618 + repository: *619 sender: *19 required: - action @@ -132189,12 +132324,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *615 - installation: *616 - issue: *642 - label: *634 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + issue: *643 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -132274,8 +132409,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -133177,8 +133312,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -133258,11 +133393,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *615 - installation: *616 - issue: *641 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + issue: *642 + organization: *618 + repository: *619 sender: *19 required: - action @@ -133341,11 +133476,11 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - label: *634 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -133423,11 +133558,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - label: *634 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -133537,11 +133672,11 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - label: *634 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -133623,9 +133758,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *615 - installation: *616 - marketplace_purchase: &643 + enterprise: *616 + installation: *617 + marketplace_purchase: &644 title: Marketplace Purchase type: object required: @@ -133708,8 +133843,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *617 - previous_marketplace_purchase: &644 + organization: *618 + previous_marketplace_purchase: &645 title: Marketplace Purchase type: object properties: @@ -133789,7 +133924,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *618 + repository: *619 sender: *19 required: - action @@ -133869,10 +134004,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *615 - installation: *616 - marketplace_purchase: *643 - organization: *617 + enterprise: *616 + installation: *617 + marketplace_purchase: *644 + organization: *618 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -133955,7 +134090,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *618 + repository: *619 sender: *19 required: - action @@ -134037,10 +134172,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *615 - installation: *616 - marketplace_purchase: *643 - organization: *617 + enterprise: *616 + installation: *617 + marketplace_purchase: *644 + organization: *618 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -134122,7 +134257,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *618 + repository: *619 sender: *19 required: - action @@ -134203,8 +134338,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 marketplace_purchase: title: Marketplace Purchase type: object @@ -134286,9 +134421,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *617 - previous_marketplace_purchase: *644 - repository: *618 + organization: *618 + previous_marketplace_purchase: *645 + repository: *619 sender: *19 required: - action @@ -134368,12 +134503,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *615 - installation: *616 - marketplace_purchase: *643 - organization: *617 - previous_marketplace_purchase: *644 - repository: *618 + enterprise: *616 + installation: *617 + marketplace_purchase: *644 + organization: *618 + previous_marketplace_purchase: *645 + repository: *619 sender: *19 required: - action @@ -134475,11 +134610,11 @@ x-webhooks: type: string required: - to - enterprise: *615 - installation: *616 - member: *635 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + member: *636 + organization: *618 + repository: *619 sender: *19 required: - action @@ -134579,11 +134714,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *615 - installation: *616 - member: *635 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + member: *636 + organization: *618 + repository: *619 sender: *19 required: - action @@ -134662,11 +134797,11 @@ x-webhooks: type: string enum: - removed - enterprise: *615 - installation: *616 - member: *635 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + member: *636 + organization: *618 + repository: *619 sender: *19 required: - action @@ -134744,11 +134879,11 @@ x-webhooks: type: string enum: - added - enterprise: *615 - installation: *616 - member: *635 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + member: *636 + organization: *618 + repository: *619 scope: description: The scope of the membership. Currently, can only be `team`. @@ -134824,7 +134959,7 @@ x-webhooks: required: - login - id - team: &645 + team: &646 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -135014,11 +135149,11 @@ x-webhooks: type: string enum: - removed - enterprise: *615 - installation: *616 - member: *635 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + member: *636 + organization: *618 + repository: *619 scope: description: The scope of the membership. Currently, can only be `team`. @@ -135095,7 +135230,7 @@ x-webhooks: required: - login - id - team: *645 + team: *646 required: - action - scope @@ -135177,8 +135312,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *616 - merge_group: &647 + installation: *617 + merge_group: &648 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -135197,15 +135332,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *646 + head_commit: *647 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -135291,10 +135426,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *616 - merge_group: *647 - organization: *617 - repository: *618 + installation: *617 + merge_group: *648 + organization: *618 + repository: *619 sender: *19 required: - action @@ -135367,7 +135502,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 + enterprise: *616 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -135475,16 +135610,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *616 - organization: *617 + installation: *617 + organization: *618 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *648 - required: *649 + properties: *649 + required: *650 nullable: true sender: *19 required: @@ -135565,11 +135700,11 @@ x-webhooks: type: string enum: - closed - enterprise: *615 - installation: *616 - milestone: *640 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + milestone: *641 + organization: *618 + repository: *619 sender: *19 required: - action @@ -135648,9 +135783,9 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - milestone: &650 + enterprise: *616 + installation: *617 + milestone: &651 title: Milestone description: A collection of related issues and pull requests. type: object @@ -135787,8 +135922,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -135867,11 +136002,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - milestone: *640 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + milestone: *641 + organization: *618 + repository: *619 sender: *19 required: - action @@ -135981,11 +136116,11 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - milestone: *640 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + milestone: *641 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136065,11 +136200,11 @@ x-webhooks: type: string enum: - opened - enterprise: *615 - installation: *616 - milestone: *650 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + milestone: *651 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136148,11 +136283,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *635 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + blocked_user: *636 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136231,11 +136366,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *635 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + blocked_user: *636 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136314,9 +136449,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - membership: &651 + enterprise: *616 + installation: *617 + membership: &652 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -136408,8 +136543,8 @@ x-webhooks: - role - organization_url - user - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136487,11 +136622,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *615 - installation: *616 - membership: *651 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + membership: *652 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136570,8 +136705,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -136687,10 +136822,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 - user: *635 + user: *636 required: - action - invitation @@ -136768,11 +136903,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *615 - installation: *616 - membership: *651 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + membership: *652 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136859,11 +136994,11 @@ x-webhooks: properties: from: type: string - enterprise: *615 - installation: *616 - membership: *651 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + membership: *652 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136939,9 +137074,9 @@ x-webhooks: type: string enum: - published - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 package: description: Information about the package. type: object @@ -137440,7 +137575,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &652 + items: &653 title: Ruby Gems metadata type: object properties: @@ -137535,7 +137670,7 @@ x-webhooks: - owner - package_version - registry - repository: *618 + repository: *619 sender: *19 required: - action @@ -137611,9 +137746,9 @@ x-webhooks: type: string enum: - updated - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 package: description: Information about the package. type: object @@ -137966,7 +138101,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *652 + items: *653 source_url: type: string format: uri @@ -138036,7 +138171,7 @@ x-webhooks: - owner - package_version - registry - repository: *618 + repository: *619 sender: *19 required: - action @@ -138213,12 +138348,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *615 + enterprise: *616 id: type: integer - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - id @@ -138298,7 +138433,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &653 + personal_access_token_request: &654 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -138444,10 +138579,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *615 - organization: *617 + enterprise: *616 + organization: *618 sender: *19 - installation: *616 + installation: *617 required: - action - personal_access_token_request @@ -138526,11 +138661,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *653 - enterprise: *615 - organization: *617 + personal_access_token_request: *654 + enterprise: *616 + organization: *618 sender: *19 - installation: *616 + installation: *617 required: - action - personal_access_token_request @@ -138608,11 +138743,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *653 - enterprise: *615 - organization: *617 + personal_access_token_request: *654 + enterprise: *616 + organization: *618 sender: *19 - installation: *616 + installation: *617 required: - action - personal_access_token_request @@ -138689,11 +138824,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *653 - organization: *617 - enterprise: *615 + personal_access_token_request: *654 + organization: *618 + enterprise: *616 sender: *19 - installation: *616 + installation: *617 required: - action - personal_access_token_request @@ -138797,7 +138932,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *654 + last_response: *655 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -138829,8 +138964,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 zen: description: Random string of GitHub zen. @@ -139075,10 +139210,10 @@ x-webhooks: - from required: - note - enterprise: *615 - installation: *616 - organization: *617 - project_card: &655 + enterprise: *616 + installation: *617 + organization: *618 + project_card: &656 title: Project Card type: object properties: @@ -139197,7 +139332,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *618 + repository: *619 sender: *19 required: - action @@ -139278,11 +139413,11 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - project_card: *655 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project_card: *656 + repository: *619 sender: *19 required: - action @@ -139362,9 +139497,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 project_card: title: Project Card type: object @@ -139492,8 +139627,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *648 - required: *649 + properties: *649 + required: *650 nullable: true sender: *19 required: @@ -139587,11 +139722,11 @@ x-webhooks: - from required: - note - enterprise: *615 - installation: *616 - organization: *617 - project_card: *655 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project_card: *656 + repository: *619 sender: *19 required: - action @@ -139685,9 +139820,9 @@ x-webhooks: - from required: - column_id - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 project_card: allOf: - title: Project Card @@ -139877,7 +140012,7 @@ x-webhooks: type: string required: - after_id - repository: *618 + repository: *619 sender: *19 required: - action @@ -139957,10 +140092,10 @@ x-webhooks: type: string enum: - closed - enterprise: *615 - installation: *616 - organization: *617 - project: &657 + enterprise: *616 + installation: *617 + organization: *618 + project: &658 title: Project type: object properties: @@ -140084,7 +140219,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *618 + repository: *619 sender: *19 required: - action @@ -140164,10 +140299,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - project_column: &656 + enterprise: *616 + installation: *617 + organization: *618 + project_column: &657 title: Project Column type: object properties: @@ -140206,7 +140341,7 @@ x-webhooks: - name - created_at - updated_at - repository: *618 + repository: *619 sender: *19 required: - action @@ -140285,18 +140420,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - project_column: *656 + enterprise: *616 + installation: *617 + organization: *618 + project_column: *657 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *648 - required: *649 + properties: *649 + required: *650 nullable: true sender: *19 required: @@ -140386,11 +140521,11 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - organization: *617 - project_column: *656 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project_column: *657 + repository: *619 sender: *19 required: - action @@ -140470,11 +140605,11 @@ x-webhooks: type: string enum: - moved - enterprise: *615 - installation: *616 - organization: *617 - project_column: *656 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project_column: *657 + repository: *619 sender: *19 required: - action @@ -140554,11 +140689,11 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - project: *657 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project: *658 + repository: *619 sender: *19 required: - action @@ -140638,18 +140773,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - project: *657 + enterprise: *616 + installation: *617 + organization: *618 + project: *658 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *648 - required: *649 + properties: *649 + required: *650 nullable: true sender: *19 required: @@ -140751,11 +140886,11 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - organization: *617 - project: *657 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project: *658 + repository: *619 sender: *19 required: - action @@ -140834,11 +140969,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *615 - installation: *616 - organization: *617 - project: *657 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project: *658 + repository: *619 sender: *19 required: - action @@ -140919,9 +141054,9 @@ x-webhooks: type: string enum: - closed - installation: *616 - organization: *617 - projects_v2: &658 + installation: *617 + organization: *618 + projects_v2: &659 title: Projects v2 Project description: A projects v2 project type: object @@ -141064,9 +141199,9 @@ x-webhooks: type: string enum: - created - installation: *616 - organization: *617 - projects_v2: *658 + installation: *617 + organization: *618 + projects_v2: *659 sender: *19 required: - action @@ -141147,9 +141282,9 @@ x-webhooks: type: string enum: - deleted - installation: *616 - organization: *617 - projects_v2: *658 + installation: *617 + organization: *618 + projects_v2: *659 sender: *19 required: - action @@ -141266,9 +141401,9 @@ x-webhooks: type: string to: type: string - installation: *616 - organization: *617 - projects_v2: *658 + installation: *617 + organization: *618 + projects_v2: *659 sender: *19 required: - action @@ -141351,7 +141486,7 @@ x-webhooks: type: string enum: - archived - changes: &662 + changes: &663 type: object properties: archived_at: @@ -141365,9 +141500,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *616 - organization: *617 - projects_v2_item: &659 + installation: *617 + organization: *618 + projects_v2_item: &660 title: Projects v2 Item description: An item belonging to a project type: object @@ -141501,9 +141636,9 @@ x-webhooks: nullable: true to: type: string - installation: *616 - organization: *617 - projects_v2_item: *659 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -141585,9 +141720,9 @@ x-webhooks: type: string enum: - created - installation: *616 - organization: *617 - projects_v2_item: *659 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -141668,9 +141803,9 @@ x-webhooks: type: string enum: - deleted - installation: *616 - organization: *617 - projects_v2_item: *659 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -141776,7 +141911,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &660 + - &661 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -141794,7 +141929,7 @@ x-webhooks: required: - id - name - - &661 + - &662 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -141817,8 +141952,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *660 - *661 + - *662 required: - field_value - type: object @@ -141834,9 +141969,9 @@ x-webhooks: nullable: true required: - body - installation: *616 - organization: *617 - projects_v2_item: *659 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -141931,9 +142066,9 @@ x-webhooks: to: type: string nullable: true - installation: *616 - organization: *617 - projects_v2_item: *659 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -142016,10 +142151,10 @@ x-webhooks: type: string enum: - restored - changes: *662 - installation: *616 - organization: *617 - projects_v2_item: *659 + changes: *663 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -142101,9 +142236,9 @@ x-webhooks: type: string enum: - reopened - installation: *616 - organization: *617 - projects_v2: *658 + installation: *617 + organization: *618 + projects_v2: *659 sender: *19 required: - action @@ -142184,9 +142319,9 @@ x-webhooks: type: string enum: - created - installation: *616 - organization: *617 - projects_v2_status_update: &663 + installation: *617 + organization: *618 + projects_v2_status_update: &664 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -142313,9 +142448,9 @@ x-webhooks: type: string enum: - deleted - installation: *616 - organization: *617 - projects_v2_status_update: *663 + installation: *617 + organization: *618 + projects_v2_status_update: *664 sender: *19 required: - action @@ -142451,9 +142586,9 @@ x-webhooks: type: string format: date nullable: true - installation: *616 - organization: *617 - projects_v2_status_update: *663 + installation: *617 + organization: *618 + projects_v2_status_update: *664 sender: *19 required: - action @@ -142524,10 +142659,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - repository @@ -142604,13 +142739,13 @@ x-webhooks: type: string enum: - assigned - assignee: *635 - enterprise: *615 - installation: *616 - number: &664 + assignee: *636 + enterprise: *616 + installation: *617 + number: &665 description: The pull request number. type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -144893,7 +145028,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -144975,11 +145110,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -147257,7 +147392,7 @@ x-webhooks: - draft reason: type: string - repository: *618 + repository: *619 sender: *19 required: - action @@ -147339,11 +147474,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -149621,7 +149756,7 @@ x-webhooks: - draft reason: type: string - repository: *618 + repository: *619 sender: *19 required: - action @@ -149703,11 +149838,11 @@ x-webhooks: type: string enum: - closed - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: &665 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: &666 allOf: - *493 - type: object @@ -149771,7 +149906,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *618 + repository: *619 sender: *19 required: - action @@ -149852,12 +149987,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: *665 - repository: *618 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: *666 + repository: *619 sender: *19 required: - action @@ -149937,11 +150072,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *615 + enterprise: *616 milestone: *476 - number: *664 - organization: *617 - pull_request: &666 + number: *665 + organization: *618 + pull_request: &667 title: Pull Request type: object properties: @@ -152204,7 +152339,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -152283,11 +152418,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -154569,7 +154704,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *618 + repository: *619 sender: *19 required: - action @@ -154693,12 +154828,12 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: *665 - repository: *618 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: *666 + repository: *619 sender: *19 required: - action @@ -154778,11 +154913,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -157049,7 +157184,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -157129,11 +157264,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *615 - installation: *616 - label: *634 - number: *664 - organization: *617 + enterprise: *616 + installation: *617 + label: *635 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -159415,7 +159550,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -159496,10 +159631,10 @@ x-webhooks: type: string enum: - locked - enterprise: *615 - installation: *616 - number: *664 - organization: *617 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -161779,7 +161914,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -161859,12 +161994,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *615 + enterprise: *616 milestone: *476 - number: *664 - organization: *617 - pull_request: *666 - repository: *618 + number: *665 + organization: *618 + pull_request: *667 + repository: *619 sender: *19 required: - action @@ -161943,12 +162078,12 @@ x-webhooks: type: string enum: - opened - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: *665 - repository: *618 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: *666 + repository: *619 sender: *19 required: - action @@ -162029,12 +162164,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: *665 - repository: *618 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: *666 + repository: *619 sender: *19 required: - action @@ -162114,12 +162249,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: *665 - repository: *618 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: *666 + repository: *619 sender: *19 required: - action @@ -162485,9 +162620,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: type: object properties: @@ -164657,7 +164792,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *618 + repository: *619 sender: *19 required: - action @@ -164737,7 +164872,7 @@ x-webhooks: type: string enum: - deleted - comment: &668 + comment: &669 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -165022,9 +165157,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: type: object properties: @@ -167182,7 +167317,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *618 + repository: *619 sender: *19 required: - action @@ -167262,11 +167397,11 @@ x-webhooks: type: string enum: - edited - changes: *667 - comment: *668 - enterprise: *615 - installation: *616 - organization: *617 + changes: *668 + comment: *669 + enterprise: *616 + installation: *617 + organization: *618 pull_request: type: object properties: @@ -169427,7 +169562,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *618 + repository: *619 sender: *19 required: - action @@ -169508,9 +169643,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: title: Simple Pull Request type: object @@ -171683,7 +171818,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *618 + repository: *619 review: description: The review that was affected. type: object @@ -171926,9 +172061,9 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: title: Simple Pull Request type: object @@ -173982,8 +174117,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *618 - review: &669 + repository: *619 + review: &670 description: The review that was affected. type: object properties: @@ -174212,12 +174347,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: description: The pull request number. type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -176500,7 +176635,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 requested_reviewer: title: User type: object @@ -176584,12 +176719,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: description: The pull request number. type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -178879,7 +179014,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 requested_team: title: Team description: Groups of organization members that gives permissions @@ -179071,12 +179206,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: description: The pull request number. type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -181361,7 +181496,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 requested_reviewer: title: User type: object @@ -181446,12 +181581,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: description: The pull request number. type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -183727,7 +183862,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 requested_team: title: Team description: Groups of organization members that gives permissions @@ -183908,9 +184043,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: title: Simple Pull Request type: object @@ -186085,8 +186220,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *618 - review: *669 + repository: *619 + review: *670 sender: *19 required: - action @@ -186166,9 +186301,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: title: Simple Pull Request type: object @@ -188238,7 +188373,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *618 + repository: *619 sender: *19 thread: type: object @@ -188621,9 +188756,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: title: Simple Pull Request type: object @@ -190679,7 +190814,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *618 + repository: *619 sender: *19 thread: type: object @@ -191065,10 +191200,10 @@ x-webhooks: type: string before: type: string - enterprise: *615 - installation: *616 - number: *664 - organization: *617 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -193339,7 +193474,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -193421,11 +193556,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *670 - enterprise: *615 - installation: *616 - number: *664 - organization: *617 + assignee: *671 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -195708,7 +195843,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -195787,11 +195922,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *615 - installation: *616 - label: *634 - number: *664 - organization: *617 + enterprise: *616 + installation: *617 + label: *635 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -198064,7 +198199,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -198145,10 +198280,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *615 - installation: *616 - number: *664 - organization: *617 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -200413,7 +200548,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -200613,7 +200748,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *615 + enterprise: *616 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -200705,8 +200840,8 @@ x-webhooks: - url - author - committer - installation: *616 - organization: *617 + installation: *617 + organization: *618 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -201281,9 +201416,9 @@ x-webhooks: type: string enum: - published - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 registry_package: type: object properties: @@ -201729,7 +201864,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *652 + items: *653 summary: type: string tag_name: @@ -201783,7 +201918,7 @@ x-webhooks: - owner - package_version - registry - repository: *618 + repository: *619 sender: *19 required: - action @@ -201861,9 +201996,9 @@ x-webhooks: type: string enum: - updated - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 registry_package: type: object properties: @@ -202171,7 +202306,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *652 + items: *653 summary: type: string tag_name: @@ -202220,7 +202355,7 @@ x-webhooks: - owner - package_version - registry - repository: *618 + repository: *619 sender: *19 required: - action @@ -202297,10 +202432,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - release: &671 + enterprise: *616 + installation: *617 + organization: *618 + release: &672 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -202605,7 +202740,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *618 + repository: *619 sender: *19 required: - action @@ -202682,11 +202817,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - release: *671 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + release: *672 + repository: *619 sender: *19 required: - action @@ -202794,11 +202929,11 @@ x-webhooks: type: boolean required: - to - enterprise: *615 - installation: *616 - organization: *617 - release: *671 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + release: *672 + repository: *619 sender: *19 required: - action @@ -202876,9 +203011,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -203187,7 +203322,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *618 + repository: *619 sender: *19 required: - action @@ -203263,10 +203398,10 @@ x-webhooks: type: string enum: - published - enterprise: *615 - installation: *616 - organization: *617 - release: &672 + enterprise: *616 + installation: *617 + organization: *618 + release: &673 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -203572,7 +203707,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *618 + repository: *619 sender: *19 required: - action @@ -203648,11 +203783,11 @@ x-webhooks: type: string enum: - released - enterprise: *615 - installation: *616 - organization: *617 - release: *671 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + release: *672 + repository: *619 sender: *19 required: - action @@ -203728,11 +203863,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *615 - installation: *616 - organization: *617 - release: *672 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + release: *673 + repository: *619 sender: *19 required: - action @@ -203808,11 +203943,11 @@ x-webhooks: type: string enum: - published - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - repository_advisory: *546 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + repository_advisory: *547 sender: *19 required: - action @@ -203888,11 +204023,11 @@ x-webhooks: type: string enum: - reported - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - repository_advisory: *546 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + repository_advisory: *547 sender: *19 required: - action @@ -203968,10 +204103,10 @@ x-webhooks: type: string enum: - archived - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204048,10 +204183,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204129,10 +204264,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204216,10 +204351,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204331,10 +204466,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204406,10 +204541,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 status: type: string @@ -204490,10 +204625,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204570,10 +204705,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204667,10 +204802,10 @@ x-webhooks: - name required: - repository - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204750,10 +204885,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 repository_ruleset: *226 sender: *19 required: @@ -204832,10 +204967,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 repository_ruleset: *226 sender: *19 required: @@ -204914,10 +205049,10 @@ x-webhooks: type: string enum: - edited - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 repository_ruleset: *226 changes: type: object @@ -205222,10 +205357,10 @@ x-webhooks: - from required: - owner - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -205303,10 +205438,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -205384,7 +205519,7 @@ x-webhooks: type: string enum: - create - alert: &673 + alert: &674 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -205505,10 +205640,10 @@ x-webhooks: type: string enum: - open - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -205714,10 +205849,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -205795,11 +205930,11 @@ x-webhooks: type: string enum: - reopen - alert: *673 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + alert: *674 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -205998,10 +206133,10 @@ x-webhooks: enum: - fixed - open - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206079,7 +206214,7 @@ x-webhooks: type: string enum: - created - alert: &674 + alert: &675 type: object properties: number: *48 @@ -206185,10 +206320,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206269,11 +206404,11 @@ x-webhooks: type: string enum: - created - alert: *674 - installation: *616 - location: *675 - organization: *617 - repository: *618 + alert: *675 + installation: *617 + location: *676 + organization: *618 + repository: *619 sender: *19 required: - location @@ -206511,11 +206646,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *674 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + alert: *675 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206593,11 +206728,11 @@ x-webhooks: type: string enum: - reopened - alert: *674 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + alert: *675 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206675,11 +206810,11 @@ x-webhooks: type: string enum: - resolved - alert: *674 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + alert: *675 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206757,11 +206892,11 @@ x-webhooks: type: string enum: - validated - alert: *674 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + alert: *675 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206837,11 +206972,11 @@ x-webhooks: type: string enum: - published - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - security_advisory: &676 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + security_advisory: &677 description: The details of the security advisory, including summary, description, and severity. type: object @@ -207024,11 +207159,11 @@ x-webhooks: type: string enum: - updated - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - security_advisory: *676 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + security_advisory: *677 sender: *19 required: - action @@ -207101,10 +207236,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -207289,9 +207424,9 @@ x-webhooks: type: object properties: security_and_analysis: *219 - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: *265 sender: *19 required: @@ -207370,12 +207505,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: &677 + sponsorship: &678 type: object properties: created_at: @@ -207676,12 +207811,12 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: *677 + sponsorship: *678 required: - action - sponsorship @@ -207769,12 +207904,12 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: *677 + sponsorship: *678 required: - action - changes @@ -207851,17 +207986,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &678 + effective_date: &679 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: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: *677 + sponsorship: *678 required: - action - sponsorship @@ -207935,7 +208070,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &679 + changes: &680 type: object properties: tier: @@ -207979,13 +208114,13 @@ x-webhooks: - from required: - tier - effective_date: *678 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + effective_date: *679 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: *677 + sponsorship: *678 required: - action - changes @@ -208062,13 +208197,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *679 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + changes: *680 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: *677 + sponsorship: *678 required: - action - changes @@ -208142,10 +208277,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -208228,10 +208363,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -208524,6 +208659,9 @@ x-webhooks: nullable: true verified: type: boolean + verified_at: + type: string + nullable: true required: - verified - reason @@ -208647,15 +208785,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *615 + enterprise: *616 id: description: The unique identifier of the status. type: integer - installation: *616 + installation: *617 name: type: string - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 sha: description: The Commit SHA. @@ -208770,9 +208908,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *75 - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -208862,9 +209000,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *75 - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -208954,9 +209092,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *75 - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -209046,9 +209184,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *75 - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -209125,12 +209263,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - team: &680 + team: &681 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -209320,9 +209458,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: title: Repository description: A git repository @@ -209780,7 +209918,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *680 + team: *681 required: - action - team @@ -209856,9 +209994,9 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: title: Repository description: A git repository @@ -210316,7 +210454,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *680 + team: *681 required: - action - team @@ -210393,9 +210531,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: title: Repository description: A git repository @@ -210853,7 +210991,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *680 + team: *681 required: - action - team @@ -210997,9 +211135,9 @@ x-webhooks: - from required: - permissions - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: title: Repository description: A git repository @@ -211457,7 +211595,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *680 + team: *681 required: - action - changes @@ -211535,9 +211673,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: title: Repository description: A git repository @@ -211995,7 +212133,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *680 + team: *681 required: - action - team @@ -212071,10 +212209,10 @@ x-webhooks: type: string enum: - started - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -212147,16 +212285,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *615 + enterprise: *616 inputs: type: object nullable: true additionalProperties: true - installation: *616 - organization: *617 + installation: *617 + organization: *618 ref: type: string - repository: *618 + repository: *619 sender: *19 workflow: type: string @@ -212238,10 +212376,10 @@ x-webhooks: type: string enum: - completed - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 workflow_job: allOf: @@ -212557,10 +212695,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 workflow_job: allOf: @@ -212899,10 +213037,10 @@ x-webhooks: type: string enum: - queued - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 workflow_job: type: object @@ -213116,10 +213254,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 workflow_job: type: object @@ -213335,12 +213473,12 @@ x-webhooks: type: string enum: - completed - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - workflow: *630 + workflow: *631 workflow_run: title: Workflow Run type: object @@ -214339,12 +214477,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - workflow: *630 + workflow: *631 workflow_run: title: Workflow Run type: object @@ -215328,12 +215466,12 @@ x-webhooks: type: string enum: - requested - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - workflow: *630 + workflow: *631 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index cad387514..65fe79549 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -162048,7 +162048,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -174214,7 +174214,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -180624,6 +180624,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -196853,6 +196857,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -229732,6 +229740,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -235419,6 +235431,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -240535,6 +240551,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -241077,6 +241097,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -241643,6 +241667,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -243622,6 +243650,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -243679,7 +243711,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -243838,6 +243871,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -243895,7 +243932,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -244337,6 +244375,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -244379,7 +244421,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -266464,6 +266507,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -266523,7 +266570,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -266853,6 +266901,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -266913,7 +266965,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -268166,6 +268219,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -268458,6 +268515,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -323598,6 +323659,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -328268,6 +328333,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -359812,6 +359881,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -391894,6 +391967,272 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "backfill_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -417810,6 +418149,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -1068726,6 +1069069,10 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index 173c9311a..6776f634f 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -1004,7 +1004,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &548 + - &549 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -10761,7 +10761,7 @@ paths: url: type: string format: uri - user: &571 + user: &572 title: Public User description: Public User type: object @@ -15169,7 +15169,7 @@ paths: properties: *92 required: *93 examples: - default: &589 + default: &590 value: - login: github id: 1 @@ -16335,7 +16335,7 @@ paths: type: array items: *58 examples: - default: &583 + default: &584 value: total_count: 1 repositories: @@ -17149,7 +17149,7 @@ paths: type: array items: *113 examples: - default: &574 + default: &575 value: total_count: 1 repositories: @@ -27410,7 +27410,7 @@ paths: parameters: - *94 - *191 - - &588 + - &589 name: repo_name description: repo_name parameter in: path @@ -28429,7 +28429,7 @@ paths: - nuget - container - *94 - - &590 + - &591 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -28470,7 +28470,7 @@ paths: default: *199 '403': *29 '401': *25 - '400': &592 + '400': &593 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -33441,7 +33441,7 @@ paths: application/json: schema: type: array - items: &546 + items: &547 description: A repository security advisory. type: object properties: @@ -33732,7 +33732,7 @@ paths: - private_fork additionalProperties: false examples: - default: &547 + default: &548 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -34206,7 +34206,7 @@ paths: description: Response content: application/json: - schema: &606 + schema: &607 type: object properties: total_minutes_used: @@ -34276,7 +34276,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &607 + default: &608 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -34312,7 +34312,7 @@ paths: description: Response content: application/json: - schema: &608 + schema: &609 type: object properties: total_gigabytes_bandwidth_used: @@ -34330,7 +34330,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &609 + default: &610 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -34362,7 +34362,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &611 type: object properties: days_left_in_billing_cycle: @@ -34380,7 +34380,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &611 + default: &612 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -35301,7 +35301,7 @@ paths: - updated_at - url examples: - default: &561 + default: &562 value: - author: login: octocat @@ -35549,7 +35549,7 @@ paths: application/json: schema: *241 examples: - default: &562 + default: &563 value: author: login: octocat @@ -35732,7 +35732,7 @@ paths: - updated_at - url examples: - default: &563 + default: &564 value: - author: login: octocat @@ -35958,7 +35958,7 @@ paths: application/json: schema: *244 examples: - default: &564 + default: &565 value: author: login: octocat @@ -36574,7 +36574,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &565 + response-if-user-is-a-team-maintainer: &566 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -36639,7 +36639,7 @@ paths: application/json: schema: *251 examples: - response-if-users-membership-with-team-is-now-pending: &566 + response-if-users-membership-with-team-is-now-pending: &567 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -36781,7 +36781,7 @@ paths: - updated_at - permissions examples: - default: &567 + default: &568 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -36858,7 +36858,7 @@ paths: application/json: schema: *252 examples: - default: &568 + default: &569 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -37061,7 +37061,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &569 + schema: &570 title: Team Repository description: A team's access to a repository. type: object @@ -37718,7 +37718,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: &570 + response-if-child-teams-exist: &571 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -41932,7 +41932,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -44806,6 +44806,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -46222,6 +46224,9 @@ paths: signature: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -49387,7 +49392,7 @@ paths: check. type: array items: *333 - deployment: &620 + deployment: &621 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -50301,7 +50306,7 @@ paths: type: string format: date-time nullable: true - head_commit: &646 + head_commit: &647 title: Simple Commit description: A commit. type: object @@ -54245,14 +54250,14 @@ paths: type: integer machines: type: array - items: &577 + items: &578 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *372 required: *373 examples: - default: &578 + default: &579 value: total_count: 2 machines: @@ -57535,7 +57540,7 @@ paths: application/json: schema: type: array - items: &551 + items: &552 title: Status description: The status of a commit. type: object @@ -58959,6 +58964,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true examples: example-for-updating-a-file: value: @@ -59002,6 +59010,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -59050,6 +59059,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *7 '422': *16 '409': @@ -59205,6 +59215,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *16 '404': *7 '409': *134 @@ -63780,6 +63791,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -63826,6 +63840,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -63920,6 +63935,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *7 '409': *134 x-github: @@ -64814,7 +64830,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &654 + last_response: &655 title: Hook Response type: object properties: @@ -65771,7 +65787,7 @@ paths: parameters: - *254 - *255 - - &601 + - &602 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -66205,7 +66221,7 @@ paths: type: array items: *447 examples: - default: &594 + default: &595 value: - id: 1 repository: @@ -70042,6 +70058,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -79896,7 +79915,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &675 + items: &676 type: object properties: type: @@ -80317,6 +80336,122 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository + parameters: + - *254 + - *255 + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': *63 + '200': + description: Response + content: + application/json: + schema: + type: object + properties: + incremental_scans: + type: array + items: &546 + description: Information on a single scan performed by secret + scanning on the repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or + "running" + completed_at: + type: string + format: date-time + description: The time that the scan was completed. Empty + if the scan is active + nullable: true + started_at: + type: string + format: date-time + description: The time that the scan was started + pattern_update_scans: + type: array + items: *546 + backfill_scans: + type: array + items: *546 + custom_pattern_backfill_scans: + type: array + items: + allOf: + - *546 + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern + scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, + one of "repository", "organization", or "enterprise" + examples: + default: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -80378,9 +80513,9 @@ paths: application/json: schema: type: array - items: *546 + items: *547 examples: - default: *547 + default: *548 '400': *15 '404': *7 x-github: @@ -80564,9 +80699,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: &549 + default: &550 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -80904,7 +81039,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: default: value: @@ -81053,15 +81188,15 @@ paths: parameters: - *254 - *255 - - *548 + - *549 responses: '200': description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: *549 + default: *550 '403': *29 '404': *7 x-github: @@ -81087,7 +81222,7 @@ paths: parameters: - *254 - *255 - - *548 + - *549 requestBody: required: true content: @@ -81246,10 +81381,10 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: *549 - add_credit: *549 + default: *550 + add_credit: *550 '403': *29 '404': *7 '422': @@ -81289,7 +81424,7 @@ paths: parameters: - *254 - *255 - - *548 + - *549 responses: '202': *99 '400': *15 @@ -81318,7 +81453,7 @@ paths: parameters: - *254 - *255 - - *548 + - *549 responses: '202': description: Response @@ -81462,7 +81597,7 @@ paths: application/json: schema: type: array - items: &550 + items: &551 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -81835,7 +81970,7 @@ paths: application/json: schema: type: array - items: *550 + items: *551 examples: default: value: @@ -81923,7 +82058,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -82017,7 +82152,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &552 + schema: &553 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -82112,7 +82247,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *553 examples: default: value: @@ -82249,7 +82384,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Tag protection description: Tag protection type: object @@ -82325,7 +82460,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -82473,7 +82608,7 @@ paths: description: Response content: application/json: - schema: &554 + schema: &555 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -82485,7 +82620,7 @@ paths: required: - names examples: - default: &555 + default: &556 value: names: - octocat @@ -82540,9 +82675,9 @@ paths: description: Response content: application/json: - schema: *554 + schema: *555 examples: - default: *555 + default: *556 '404': *7 '422': *8 x-github: @@ -82565,7 +82700,7 @@ paths: parameters: - *254 - *255 - - &556 + - &557 name: per description: The time frame to display results for. in: query @@ -82594,7 +82729,7 @@ paths: example: 128 clones: type: array - items: &557 + items: &558 title: Traffic type: object properties: @@ -82835,7 +82970,7 @@ paths: parameters: - *254 - *255 - - *556 + - *557 responses: '200': description: Response @@ -82854,7 +82989,7 @@ paths: example: 3782 views: type: array - items: *557 + items: *558 required: - uniques - count @@ -83623,7 +83758,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &558 + text_matches: &559 title: Search Result Text Matches type: array items: @@ -83785,7 +83920,7 @@ paths: enum: - author-date - committer-date - - &559 + - &560 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 @@ -83913,7 +84048,7 @@ paths: type: number node_id: type: string - text_matches: *558 + text_matches: *559 required: - sha - node_id @@ -84105,7 +84240,7 @@ paths: - interactions - created - updated - - *559 + - *560 - *18 - *20 responses: @@ -84225,7 +84360,7 @@ paths: type: string format: date-time nullable: true - text_matches: *558 + text_matches: *559 pull_request: type: object properties: @@ -84449,7 +84584,7 @@ paths: enum: - created - updated - - *559 + - *560 - *18 - *20 responses: @@ -84493,7 +84628,7 @@ paths: nullable: true score: type: number - text_matches: *558 + text_matches: *559 required: - id - node_id @@ -84578,7 +84713,7 @@ paths: - forks - help-wanted-issues - updated - - *559 + - *560 - *18 - *20 responses: @@ -84817,7 +84952,7 @@ paths: - admin - pull - push - text_matches: *558 + text_matches: *559 temp_clone_token: type: string allow_merge_commit: @@ -85117,7 +85252,7 @@ paths: type: string format: uri nullable: true - text_matches: *558 + text_matches: *559 related: type: array nullable: true @@ -85308,7 +85443,7 @@ paths: - followers - repositories - joined - - *559 + - *560 - *18 - *20 responses: @@ -85412,7 +85547,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *558 + text_matches: *559 blog: type: string nullable: true @@ -85491,7 +85626,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &560 + - &561 name: team_id description: The unique identifier of the team. in: path @@ -85532,7 +85667,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *560 + - *561 requestBody: required: true content: @@ -85632,7 +85767,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *560 + - *561 responses: '204': description: Response @@ -85663,7 +85798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *560 + - *561 - *42 - *18 - *20 @@ -85676,7 +85811,7 @@ paths: type: array items: *241 examples: - default: *561 + default: *562 headers: Link: *39 x-github: @@ -85705,7 +85840,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *560 + - *561 requestBody: required: true content: @@ -85768,7 +85903,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *560 + - *561 - *243 responses: '200': @@ -85802,7 +85937,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *560 + - *561 - *243 requestBody: required: false @@ -85828,7 +85963,7 @@ paths: application/json: schema: *241 examples: - default: *562 + default: *563 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85853,7 +85988,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *560 + - *561 - *243 responses: '204': @@ -85883,7 +86018,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *560 + - *561 - *243 - *42 - *18 @@ -85897,7 +86032,7 @@ paths: type: array items: *244 examples: - default: *563 + default: *564 headers: Link: *39 x-github: @@ -85926,7 +86061,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *560 + - *561 - *243 requestBody: required: true @@ -85978,7 +86113,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *560 + - *561 - *243 - *246 responses: @@ -86013,7 +86148,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *560 + - *561 - *243 - *246 requestBody: @@ -86039,7 +86174,7 @@ paths: application/json: schema: *244 examples: - default: *564 + default: *565 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86064,7 +86199,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *560 + - *561 - *243 - *246 responses: @@ -86095,7 +86230,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *560 + - *561 - *243 - *246 - name: content @@ -86154,7 +86289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *560 + - *561 - *243 - *246 requestBody: @@ -86216,7 +86351,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *560 + - *561 - *243 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -86274,7 +86409,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *560 + - *561 - *243 requestBody: required: true @@ -86333,7 +86468,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *560 + - *561 - *18 - *20 responses: @@ -86371,7 +86506,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *560 + - *561 - name: role description: Filters members returned by their role in the team. in: query @@ -86422,7 +86557,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *560 + - *561 - *126 responses: '204': @@ -86459,7 +86594,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *560 + - *561 - *126 responses: '204': @@ -86499,7 +86634,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *560 + - *561 - *126 responses: '204': @@ -86536,7 +86671,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *560 + - *561 - *126 responses: '200': @@ -86545,7 +86680,7 @@ paths: application/json: schema: *251 examples: - response-if-user-is-a-team-maintainer: *565 + response-if-user-is-a-team-maintainer: *566 '404': *7 x-github: githubCloudOnly: false @@ -86578,7 +86713,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *560 + - *561 - *126 requestBody: required: false @@ -86606,7 +86741,7 @@ paths: application/json: schema: *251 examples: - response-if-users-membership-with-team-is-now-pending: *566 + response-if-users-membership-with-team-is-now-pending: *567 '403': description: Forbidden if team synchronization is set up '422': @@ -86640,7 +86775,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *560 + - *561 - *126 responses: '204': @@ -86670,7 +86805,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *560 + - *561 - *18 - *20 responses: @@ -86682,7 +86817,7 @@ paths: type: array items: *252 examples: - default: *567 + default: *568 headers: Link: *39 '404': *7 @@ -86709,7 +86844,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *560 + - *561 - *253 responses: '200': @@ -86718,7 +86853,7 @@ paths: application/json: schema: *252 examples: - default: *568 + default: *569 '404': description: Not Found if project is not managed by this team x-github: @@ -86743,7 +86878,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *560 + - *561 - *253 requestBody: required: false @@ -86812,7 +86947,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *560 + - *561 - *253 responses: '204': @@ -86840,7 +86975,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *560 + - *561 - *18 - *20 responses: @@ -86882,7 +87017,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *560 + - *561 - *254 - *255 responses: @@ -86890,7 +87025,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *569 + schema: *570 examples: alternative-response-with-extra-repository-information: value: @@ -87041,7 +87176,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *560 + - *561 - *254 - *255 requestBody: @@ -87093,7 +87228,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *560 + - *561 - *254 - *255 responses: @@ -87120,7 +87255,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *560 + - *561 - *18 - *20 responses: @@ -87132,7 +87267,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: *570 + response-if-child-teams-exist: *571 headers: Link: *39 '404': *7 @@ -87165,7 +87300,7 @@ paths: application/json: schema: oneOf: - - &572 + - &573 title: Private User description: Private User type: object @@ -87368,7 +87503,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *571 + - *572 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -87521,7 +87656,7 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: default: value: @@ -87919,7 +88054,7 @@ paths: type: integer secrets: type: array - items: &573 + items: &574 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -88035,7 +88170,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: default: value: @@ -88181,7 +88316,7 @@ paths: type: array items: *113 examples: - default: *574 + default: *575 '401': *25 '403': *29 '404': *7 @@ -88448,7 +88583,7 @@ paths: description: Response content: application/json: - schema: &575 + schema: &576 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -88489,7 +88624,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &576 + default: &577 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -88534,9 +88669,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 '404': *7 x-github: githubCloudOnly: false @@ -88573,9 +88708,9 @@ paths: type: integer machines: type: array - items: *577 + items: *578 examples: - default: *578 + default: *579 '304': *37 '500': *41 '401': *25 @@ -89514,7 +89649,7 @@ paths: type: array items: *198 examples: - default: &591 + default: &592 value: - id: 197 name: hello_docker @@ -89615,7 +89750,7 @@ paths: application/json: schema: type: array - items: &579 + items: &580 title: Email description: Email type: object @@ -89680,9 +89815,9 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: - default: &593 + default: &594 value: - email: octocat@github.com verified: true @@ -89757,7 +89892,7 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: default: value: @@ -90013,7 +90148,7 @@ paths: application/json: schema: type: array - items: &580 + items: &581 title: GPG Key description: A unique encryption key type: object @@ -90144,7 +90279,7 @@ paths: - subkeys - revoked examples: - default: &604 + default: &605 value: - id: 3 name: Octocat's GPG Key @@ -90229,9 +90364,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: &581 + default: &582 value: id: 3 name: Octocat's GPG Key @@ -90288,7 +90423,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &582 + - &583 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -90300,9 +90435,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: *581 + default: *582 '404': *7 '304': *37 '403': *29 @@ -90325,7 +90460,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *582 + - *583 responses: '204': description: Response @@ -90516,7 +90651,7 @@ paths: type: array items: *58 examples: - default: *583 + default: *584 headers: Link: *39 '404': *7 @@ -90780,7 +90915,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: Key description: Key type: object @@ -90877,9 +91012,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &585 + default: &586 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -90918,9 +91053,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *585 + default: *586 '404': *7 '304': *37 '403': *29 @@ -90976,7 +91111,7 @@ paths: application/json: schema: type: array - items: &586 + items: &587 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -91044,7 +91179,7 @@ paths: - account - plan examples: - default: &587 + default: &588 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -91106,9 +91241,9 @@ paths: application/json: schema: type: array - items: *586 + items: *587 examples: - default: *587 + default: *588 headers: Link: *39 '304': *37 @@ -92103,7 +92238,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *191 - - *588 + - *589 responses: '204': description: Response @@ -92176,7 +92311,7 @@ paths: type: array items: *187 examples: - default: *589 + default: *590 headers: Link: *39 '304': *37 @@ -92218,7 +92353,7 @@ paths: - docker - nuget - container - - *590 + - *591 - *20 - *18 responses: @@ -92230,8 +92365,8 @@ paths: type: array items: *198 examples: - default: *591 - '400': *592 + default: *592 + '400': *593 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -92260,7 +92395,7 @@ paths: application/json: schema: *198 examples: - default: &605 + default: &606 value: id: 40201 name: octo-name @@ -92710,9 +92845,9 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: - default: *593 + default: *594 headers: Link: *39 '304': *37 @@ -92825,7 +92960,7 @@ paths: type: array items: *58 examples: - default: &600 + default: &601 summary: Default response value: - id: 1296269 @@ -93169,7 +93304,7 @@ paths: type: array items: *447 examples: - default: *594 + default: *595 headers: Link: *39 '304': *37 @@ -93248,7 +93383,7 @@ paths: application/json: schema: type: array - items: &595 + items: &596 title: Social account description: Social media account type: object @@ -93263,7 +93398,7 @@ paths: - provider - url examples: - default: &596 + default: &597 value: - provider: twitter url: https://twitter.com/github @@ -93325,9 +93460,9 @@ paths: application/json: schema: type: array - items: *595 + items: *596 examples: - default: *596 + default: *597 '422': *16 '304': *37 '404': *7 @@ -93414,7 +93549,7 @@ paths: application/json: schema: type: array - items: &597 + items: &598 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -93434,7 +93569,7 @@ paths: - title - created_at examples: - default: &612 + default: &613 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -93500,9 +93635,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: &598 + default: &599 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -93533,7 +93668,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: - - &599 + - &600 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -93545,9 +93680,9 @@ paths: description: Response content: application/json: - schema: *597 + schema: *598 examples: - default: *598 + default: *599 '404': *7 '304': *37 '403': *29 @@ -93570,7 +93705,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: - - *599 + - *600 responses: '204': description: Response @@ -93599,7 +93734,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &613 + - &614 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 @@ -93624,11 +93759,11 @@ paths: type: array items: *58 examples: - default-response: *600 + default-response: *601 application/vnd.github.v3.star+json: schema: type: array - items: &614 + items: &615 title: Starred Repository description: Starred Repository type: object @@ -93995,10 +94130,10 @@ paths: application/json: schema: oneOf: + - *573 - *572 - - *571 examples: - default-response: &602 + default-response: &603 summary: Default response value: login: octocat @@ -94033,7 +94168,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &603 + response-with-git-hub-plan-information: &604 summary: Response with GitHub plan information value: login: octocat @@ -94093,7 +94228,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *601 + - *602 - *18 responses: '200': @@ -94140,11 +94275,11 @@ paths: application/json: schema: oneOf: + - *573 - *572 - - *571 examples: - default-response: *602 - response-with-git-hub-plan-information: *603 + default-response: *603 + response-with-git-hub-plan-information: *604 '404': *7 x-github: githubCloudOnly: false @@ -94306,7 +94441,7 @@ paths: type: array items: *198 examples: - default: *591 + default: *592 '403': *29 '401': *25 x-github: @@ -94710,9 +94845,9 @@ paths: application/json: schema: type: array - items: *580 + items: *581 examples: - default: *604 + default: *605 headers: Link: *39 x-github: @@ -94894,7 +95029,7 @@ paths: type: array items: *187 examples: - default: *589 + default: *590 headers: Link: *39 x-github: @@ -94933,7 +95068,7 @@ paths: - docker - nuget - container - - *590 + - *591 - *126 - *20 - *18 @@ -94946,10 +95081,10 @@ paths: type: array items: *198 examples: - default: *591 + default: *592 '403': *29 '401': *25 - '400': *592 + '400': *593 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -94979,7 +95114,7 @@ paths: application/json: schema: *198 examples: - default: *605 + default: *606 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95572,9 +95707,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: *607 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95602,9 +95737,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *609 + default: *610 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95632,9 +95767,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *611 examples: - default: *611 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -95662,9 +95797,9 @@ paths: application/json: schema: type: array - items: *595 + items: *596 examples: - default: *596 + default: *597 headers: Link: *39 x-github: @@ -95694,9 +95829,9 @@ paths: application/json: schema: type: array - items: *597 + items: *598 examples: - default: *612 + default: *613 headers: Link: *39 x-github: @@ -95721,7 +95856,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *126 - - *613 + - *614 - *42 - *18 - *20 @@ -95733,11 +95868,11 @@ paths: schema: anyOf: - type: array - items: *614 + items: *615 - type: array items: *58 examples: - default-response: *600 + default-response: *601 headers: Link: *39 x-github: @@ -95896,7 +96031,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &615 + enterprise: &616 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -95954,7 +96089,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &616 + installation: &617 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -95973,7 +96108,7 @@ x-webhooks: required: - id - node_id - organization: &617 + organization: &618 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -96033,13 +96168,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &618 + repository: &619 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &648 + properties: &649 id: description: Unique identifier of the repository example: 42 @@ -96722,7 +96857,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &649 + required: &650 - archive_url - assignees_url - blobs_url @@ -96873,10 +97008,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -96952,11 +97087,11 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - rule: &619 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + rule: &620 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) @@ -97179,11 +97314,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - rule: *619 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + rule: *620 sender: *19 required: - action @@ -97366,11 +97501,11 @@ x-webhooks: - everyone required: - from - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - rule: *619 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + rule: *620 sender: *19 required: - action @@ -97454,7 +97589,7 @@ x-webhooks: type: string enum: - completed - check_run: &621 + check_run: &622 title: CheckRun description: A check performed on the code of a given code change type: object @@ -97555,7 +97690,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *620 + deployment: *621 details_url: example: https://example.com type: string @@ -97640,9 +97775,9 @@ x-webhooks: - output - app - pull_requests - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - check_run @@ -98035,10 +98170,10 @@ x-webhooks: type: string enum: - created - check_run: *621 - installation: *616 - organization: *617 - repository: *618 + check_run: *622 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - check_run @@ -98434,10 +98569,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *621 - installation: *616 - organization: *617 - repository: *618 + check_run: *622 + installation: *617 + organization: *618 + repository: *619 requested_action: description: The action requested by the user. type: object @@ -98842,10 +98977,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *621 - installation: *616 - organization: *617 - repository: *618 + check_run: *622 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - check_run @@ -99822,10 +99957,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -100495,10 +100630,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -101162,10 +101297,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -101465,20 +101600,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &622 + commit_oid: &623 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: *615 - installation: *616 - organization: *617 - ref: &623 + enterprise: *616 + installation: *617 + organization: *618 + ref: &624 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: *618 + repository: *619 sender: *19 required: - action @@ -101796,12 +101931,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *622 - enterprise: *615 - installation: *616 - organization: *617 - ref: *623 - repository: *618 + commit_oid: *623 + enterprise: *616 + installation: *617 + organization: *618 + ref: *624 + repository: *619 sender: *19 required: - action @@ -102058,12 +102193,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *622 - enterprise: *615 - installation: *616 - organization: *617 - ref: *623 - repository: *618 + commit_oid: *623 + enterprise: *616 + installation: *617 + organization: *618 + ref: *624 + repository: *619 sender: *19 required: - action @@ -102384,12 +102519,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *622 - enterprise: *615 - installation: *616 - organization: *617 - ref: *623 - repository: *618 + commit_oid: *623 + enterprise: *616 + installation: *617 + organization: *618 + ref: *624 + repository: *619 sender: *19 required: - action @@ -102646,16 +102781,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *618 + repository: *619 sender: *19 required: - action @@ -102881,12 +103016,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *622 - enterprise: *615 - installation: *616 - organization: *617 - ref: *623 - repository: *618 + commit_oid: *623 + enterprise: *616 + installation: *617 + organization: *618 + ref: *624 + repository: *619 sender: *19 required: - action @@ -103143,10 +103278,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -103226,18 +103361,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *617 - pusher_type: &624 + organization: *618 + pusher_type: &625 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &625 + ref: &626 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -103247,7 +103382,7 @@ x-webhooks: enum: - tag - branch - repository: *618 + repository: *619 sender: *19 required: - ref @@ -103330,9 +103465,9 @@ x-webhooks: enum: - created definition: *212 - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 sender: *19 required: - action @@ -103417,9 +103552,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 sender: *19 required: - action @@ -103497,9 +103632,9 @@ x-webhooks: enum: - updated definition: *212 - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 sender: *19 required: - action @@ -103576,10 +103711,10 @@ x-webhooks: type: string enum: - updated - enterprise: *615 - installation: *616 - repository: *618 - organization: *617 + enterprise: *616 + installation: *617 + repository: *619 + organization: *618 sender: *19 new_property_values: type: array @@ -103664,18 +103799,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *615 - installation: *616 - organization: *617 - pusher_type: *624 - ref: *625 + enterprise: *616 + installation: *617 + organization: *618 + pusher_type: *625 + ref: *626 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *618 + repository: *619 sender: *19 required: - ref @@ -103760,10 +103895,10 @@ x-webhooks: enum: - auto_dismissed alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -103848,10 +103983,10 @@ x-webhooks: enum: - auto_reopened alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -103936,10 +104071,10 @@ x-webhooks: enum: - created alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -104022,10 +104157,10 @@ x-webhooks: enum: - dismissed alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -104108,10 +104243,10 @@ x-webhooks: enum: - fixed alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -104195,10 +104330,10 @@ x-webhooks: enum: - reintroduced alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -104281,10 +104416,10 @@ x-webhooks: enum: - reopened alert: *403 - installation: *616 - organization: *617 - enterprise: *615 - repository: *618 + installation: *617 + organization: *618 + enterprise: *616 + repository: *619 sender: *19 required: - action @@ -104361,9 +104496,9 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - key: &626 + enterprise: *616 + installation: *617 + key: &627 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -104399,8 +104534,8 @@ x-webhooks: - verified - created_at - read_only - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -104477,11 +104612,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - key: *626 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + key: *627 + organization: *618 + repository: *619 sender: *19 required: - action @@ -105042,12 +105177,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - workflow: &630 + workflow: &631 title: Workflow type: object nullable: true @@ -105777,9 +105912,9 @@ x-webhooks: pull_requests: type: array items: *493 - repository: *618 - organization: *617 - installation: *616 + repository: *619 + organization: *618 + installation: *617 sender: *19 responses: '200': @@ -105850,7 +105985,7 @@ x-webhooks: type: string enum: - approved - approver: &627 + approver: &628 type: object properties: avatar_url: @@ -105893,11 +106028,11 @@ x-webhooks: type: string comment: type: string - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - reviewers: &628 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + reviewers: &629 type: array items: type: object @@ -105976,7 +106111,7 @@ x-webhooks: sender: *19 since: type: string - workflow_job_run: &629 + workflow_job_run: &630 type: object properties: conclusion: @@ -106707,18 +106842,18 @@ x-webhooks: type: string enum: - rejected - approver: *627 + approver: *628 comment: type: string - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - reviewers: *628 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + reviewers: *629 sender: *19 since: type: string - workflow_job_run: *629 + workflow_job_run: *630 workflow_job_runs: type: array items: @@ -107422,13 +107557,13 @@ x-webhooks: type: string enum: - requested - enterprise: *615 + enterprise: *616 environment: type: string - installation: *616 - organization: *617 - repository: *618 - requestor: &635 + installation: *617 + organization: *618 + repository: *619 + requestor: &636 title: User type: object nullable: true @@ -109327,12 +109462,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - workflow: *630 + workflow: *631 workflow_run: title: Deployment Workflow Run type: object @@ -110012,7 +110147,7 @@ x-webhooks: type: string enum: - answered - answer: &633 + answer: &634 type: object properties: author_association: @@ -110169,7 +110304,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &631 + discussion: &632 title: Discussion description: A Discussion in a repository. type: object @@ -110477,10 +110612,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -110607,11 +110742,11 @@ x-webhooks: - from required: - category - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -110694,11 +110829,11 @@ x-webhooks: type: string enum: - closed - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -110780,7 +110915,7 @@ x-webhooks: type: string enum: - created - comment: &632 + comment: &633 type: object properties: author_association: @@ -110937,11 +111072,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111024,12 +111159,12 @@ x-webhooks: type: string enum: - deleted - comment: *632 - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + comment: *633 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111124,12 +111259,12 @@ x-webhooks: - from required: - body - comment: *632 - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + comment: *633 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111213,11 +111348,11 @@ x-webhooks: type: string enum: - created - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111299,11 +111434,11 @@ x-webhooks: type: string enum: - deleted - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111403,11 +111538,11 @@ x-webhooks: type: string required: - from - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111489,10 +111624,10 @@ x-webhooks: type: string enum: - labeled - discussion: *631 - enterprise: *615 - installation: *616 - label: &634 + discussion: *632 + enterprise: *616 + installation: *617 + label: &635 title: Label type: object properties: @@ -111524,8 +111659,8 @@ x-webhooks: - color - default - description - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111608,11 +111743,11 @@ x-webhooks: type: string enum: - locked - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111694,11 +111829,11 @@ x-webhooks: type: string enum: - pinned - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111780,11 +111915,11 @@ x-webhooks: type: string enum: - reopened - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111869,16 +112004,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *631 - new_repository: *618 + new_discussion: *632 + new_repository: *619 required: - new_discussion - new_repository - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -111961,10 +112096,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *631 - old_answer: *633 - organization: *617 - repository: *618 + discussion: *632 + old_answer: *634 + organization: *618 + repository: *619 sender: *19 required: - action @@ -112046,12 +112181,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *631 - enterprise: *615 - installation: *616 - label: *634 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -112134,11 +112269,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -112220,11 +112355,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *631 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + discussion: *632 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -112297,7 +112432,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *615 + enterprise: *616 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -112957,9 +113092,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - forkee @@ -113105,9 +113240,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pages: description: The pages that were updated. type: array @@ -113144,7 +113279,7 @@ x-webhooks: - action - sha - html_url - repository: *618 + repository: *619 sender: *19 required: - pages @@ -113220,10 +113355,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories: &636 + organization: *618 + repositories: &637 description: An array of repository objects that the installation can access. type: array @@ -113249,8 +113384,8 @@ x-webhooks: - name - full_name - private - repository: *618 - requester: *635 + repository: *619 + requester: *636 sender: *19 required: - action @@ -113325,11 +113460,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories: *636 - repository: *618 + organization: *618 + repositories: *637 + repository: *619 requester: nullable: true sender: *19 @@ -113405,11 +113540,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories: *636 - repository: *618 + organization: *618 + repositories: *637 + repository: *619 requester: nullable: true sender: *19 @@ -113485,10 +113620,10 @@ x-webhooks: type: string enum: - added - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories_added: &637 + organization: *618 + repositories_added: &638 description: An array of repository objects, which were added to the installation. type: array @@ -113534,15 +113669,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *618 - repository_selection: &638 + repository: *619 + repository_selection: &639 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *635 + requester: *636 sender: *19 required: - action @@ -113621,10 +113756,10 @@ x-webhooks: type: string enum: - removed - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories_added: *637 + organization: *618 + repositories_added: *638 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -113651,9 +113786,9 @@ x-webhooks: - name - full_name - private - repository: *618 - repository_selection: *638 - requester: *635 + repository: *619 + repository_selection: *639 + requester: *636 sender: *19 required: - action @@ -113732,11 +113867,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories: *636 - repository: *618 + organization: *618 + repositories: *637 + repository: *619 requester: nullable: true sender: *19 @@ -113914,10 +114049,10 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 target_type: type: string @@ -113996,11 +114131,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *615 + enterprise: *616 installation: *22 - organization: *617 - repositories: *636 - repository: *618 + organization: *618 + repositories: *637 + repository: *619 requester: nullable: true sender: *19 @@ -114252,8 +114387,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -115394,8 +115529,8 @@ x-webhooks: - state - locked - assignee - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -115475,7 +115610,7 @@ x-webhooks: type: string enum: - deleted - comment: &639 + comment: &640 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -115640,8 +115775,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -116780,8 +116915,8 @@ x-webhooks: - state - locked - assignee - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -116861,7 +116996,7 @@ x-webhooks: type: string enum: - edited - changes: &667 + changes: &668 description: The changes to the comment. type: object properties: @@ -116873,9 +117008,9 @@ x-webhooks: type: string required: - from - comment: *639 - enterprise: *615 - installation: *616 + comment: *640 + enterprise: *616 + installation: *617 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -118015,8 +118150,8 @@ x-webhooks: - state - locked - assignee - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -118098,10 +118233,10 @@ x-webhooks: type: string enum: - assigned - assignee: *635 - enterprise: *615 - installation: *616 - issue: &642 + assignee: *636 + enterprise: *616 + installation: *617 + issue: &643 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -119005,8 +119140,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -119086,8 +119221,8 @@ x-webhooks: type: string enum: - closed - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -120131,8 +120266,8 @@ x-webhooks: required: - state - closed_at - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -120211,8 +120346,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -121109,8 +121244,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -121189,8 +121324,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -122090,7 +122225,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &640 + milestone: &641 title: Milestone description: A collection of related issues and pull requests. type: object @@ -122228,8 +122363,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -122328,8 +122463,8 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -123233,9 +123368,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *634 - organization: *617 - repository: *618 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -123315,8 +123450,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -124219,9 +124354,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *634 - organization: *617 - repository: *618 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -124301,8 +124436,8 @@ x-webhooks: type: string enum: - locked - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -125206,8 +125341,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -125286,8 +125421,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -126185,9 +126320,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *640 - organization: *617 - repository: *618 + milestone: *641 + organization: *618 + repository: *619 sender: *19 required: - action @@ -127634,8 +127769,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128538,8 +128673,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -128619,9 +128754,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *615 - installation: *616 - issue: &641 + enterprise: *616 + installation: *617 + issue: &642 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -129518,8 +129653,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -129598,8 +129733,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -130502,8 +130637,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -131951,11 +132086,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *615 - installation: *616 - issue: *641 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + issue: *642 + organization: *618 + repository: *619 sender: *19 required: - action @@ -132036,7 +132171,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &670 + assignee: &671 title: User type: object nullable: true @@ -132106,11 +132241,11 @@ x-webhooks: required: - login - id - enterprise: *615 - installation: *616 - issue: *642 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + issue: *643 + organization: *618 + repository: *619 sender: *19 required: - action @@ -132189,12 +132324,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *615 - installation: *616 - issue: *642 - label: *634 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + issue: *643 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -132274,8 +132409,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -133177,8 +133312,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -133258,11 +133393,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *615 - installation: *616 - issue: *641 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + issue: *642 + organization: *618 + repository: *619 sender: *19 required: - action @@ -133341,11 +133476,11 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - label: *634 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -133423,11 +133558,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - label: *634 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -133537,11 +133672,11 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - label: *634 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + label: *635 + organization: *618 + repository: *619 sender: *19 required: - action @@ -133623,9 +133758,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *615 - installation: *616 - marketplace_purchase: &643 + enterprise: *616 + installation: *617 + marketplace_purchase: &644 title: Marketplace Purchase type: object required: @@ -133708,8 +133843,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *617 - previous_marketplace_purchase: &644 + organization: *618 + previous_marketplace_purchase: &645 title: Marketplace Purchase type: object properties: @@ -133789,7 +133924,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *618 + repository: *619 sender: *19 required: - action @@ -133869,10 +134004,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *615 - installation: *616 - marketplace_purchase: *643 - organization: *617 + enterprise: *616 + installation: *617 + marketplace_purchase: *644 + organization: *618 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -133955,7 +134090,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *618 + repository: *619 sender: *19 required: - action @@ -134037,10 +134172,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *615 - installation: *616 - marketplace_purchase: *643 - organization: *617 + enterprise: *616 + installation: *617 + marketplace_purchase: *644 + organization: *618 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -134122,7 +134257,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *618 + repository: *619 sender: *19 required: - action @@ -134203,8 +134338,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 marketplace_purchase: title: Marketplace Purchase type: object @@ -134286,9 +134421,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *617 - previous_marketplace_purchase: *644 - repository: *618 + organization: *618 + previous_marketplace_purchase: *645 + repository: *619 sender: *19 required: - action @@ -134368,12 +134503,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *615 - installation: *616 - marketplace_purchase: *643 - organization: *617 - previous_marketplace_purchase: *644 - repository: *618 + enterprise: *616 + installation: *617 + marketplace_purchase: *644 + organization: *618 + previous_marketplace_purchase: *645 + repository: *619 sender: *19 required: - action @@ -134475,11 +134610,11 @@ x-webhooks: type: string required: - to - enterprise: *615 - installation: *616 - member: *635 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + member: *636 + organization: *618 + repository: *619 sender: *19 required: - action @@ -134579,11 +134714,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *615 - installation: *616 - member: *635 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + member: *636 + organization: *618 + repository: *619 sender: *19 required: - action @@ -134662,11 +134797,11 @@ x-webhooks: type: string enum: - removed - enterprise: *615 - installation: *616 - member: *635 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + member: *636 + organization: *618 + repository: *619 sender: *19 required: - action @@ -134744,11 +134879,11 @@ x-webhooks: type: string enum: - added - enterprise: *615 - installation: *616 - member: *635 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + member: *636 + organization: *618 + repository: *619 scope: description: The scope of the membership. Currently, can only be `team`. @@ -134824,7 +134959,7 @@ x-webhooks: required: - login - id - team: &645 + team: &646 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -135014,11 +135149,11 @@ x-webhooks: type: string enum: - removed - enterprise: *615 - installation: *616 - member: *635 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + member: *636 + organization: *618 + repository: *619 scope: description: The scope of the membership. Currently, can only be `team`. @@ -135095,7 +135230,7 @@ x-webhooks: required: - login - id - team: *645 + team: *646 required: - action - scope @@ -135177,8 +135312,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *616 - merge_group: &647 + installation: *617 + merge_group: &648 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -135197,15 +135332,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *646 + head_commit: *647 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -135291,10 +135426,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *616 - merge_group: *647 - organization: *617 - repository: *618 + installation: *617 + merge_group: *648 + organization: *618 + repository: *619 sender: *19 required: - action @@ -135367,7 +135502,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 + enterprise: *616 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -135475,16 +135610,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *616 - organization: *617 + installation: *617 + organization: *618 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *648 - required: *649 + properties: *649 + required: *650 nullable: true sender: *19 required: @@ -135565,11 +135700,11 @@ x-webhooks: type: string enum: - closed - enterprise: *615 - installation: *616 - milestone: *640 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + milestone: *641 + organization: *618 + repository: *619 sender: *19 required: - action @@ -135648,9 +135783,9 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - milestone: &650 + enterprise: *616 + installation: *617 + milestone: &651 title: Milestone description: A collection of related issues and pull requests. type: object @@ -135787,8 +135922,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -135867,11 +136002,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - milestone: *640 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + milestone: *641 + organization: *618 + repository: *619 sender: *19 required: - action @@ -135981,11 +136116,11 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - milestone: *640 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + milestone: *641 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136065,11 +136200,11 @@ x-webhooks: type: string enum: - opened - enterprise: *615 - installation: *616 - milestone: *650 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + milestone: *651 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136148,11 +136283,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *635 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + blocked_user: *636 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136231,11 +136366,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *635 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + blocked_user: *636 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136314,9 +136449,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - membership: &651 + enterprise: *616 + installation: *617 + membership: &652 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -136408,8 +136543,8 @@ x-webhooks: - role - organization_url - user - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136487,11 +136622,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *615 - installation: *616 - membership: *651 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + membership: *652 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136570,8 +136705,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -136687,10 +136822,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 - user: *635 + user: *636 required: - action - invitation @@ -136768,11 +136903,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *615 - installation: *616 - membership: *651 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + membership: *652 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136859,11 +136994,11 @@ x-webhooks: properties: from: type: string - enterprise: *615 - installation: *616 - membership: *651 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + membership: *652 + organization: *618 + repository: *619 sender: *19 required: - action @@ -136939,9 +137074,9 @@ x-webhooks: type: string enum: - published - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 package: description: Information about the package. type: object @@ -137440,7 +137575,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &652 + items: &653 title: Ruby Gems metadata type: object properties: @@ -137535,7 +137670,7 @@ x-webhooks: - owner - package_version - registry - repository: *618 + repository: *619 sender: *19 required: - action @@ -137611,9 +137746,9 @@ x-webhooks: type: string enum: - updated - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 package: description: Information about the package. type: object @@ -137966,7 +138101,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *652 + items: *653 source_url: type: string format: uri @@ -138036,7 +138171,7 @@ x-webhooks: - owner - package_version - registry - repository: *618 + repository: *619 sender: *19 required: - action @@ -138213,12 +138348,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *615 + enterprise: *616 id: type: integer - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - id @@ -138298,7 +138433,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &653 + personal_access_token_request: &654 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -138444,10 +138579,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *615 - organization: *617 + enterprise: *616 + organization: *618 sender: *19 - installation: *616 + installation: *617 required: - action - personal_access_token_request @@ -138526,11 +138661,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *653 - enterprise: *615 - organization: *617 + personal_access_token_request: *654 + enterprise: *616 + organization: *618 sender: *19 - installation: *616 + installation: *617 required: - action - personal_access_token_request @@ -138608,11 +138743,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *653 - enterprise: *615 - organization: *617 + personal_access_token_request: *654 + enterprise: *616 + organization: *618 sender: *19 - installation: *616 + installation: *617 required: - action - personal_access_token_request @@ -138689,11 +138824,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *653 - organization: *617 - enterprise: *615 + personal_access_token_request: *654 + organization: *618 + enterprise: *616 sender: *19 - installation: *616 + installation: *617 required: - action - personal_access_token_request @@ -138797,7 +138932,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *654 + last_response: *655 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -138829,8 +138964,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 zen: description: Random string of GitHub zen. @@ -139075,10 +139210,10 @@ x-webhooks: - from required: - note - enterprise: *615 - installation: *616 - organization: *617 - project_card: &655 + enterprise: *616 + installation: *617 + organization: *618 + project_card: &656 title: Project Card type: object properties: @@ -139197,7 +139332,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *618 + repository: *619 sender: *19 required: - action @@ -139278,11 +139413,11 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - project_card: *655 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project_card: *656 + repository: *619 sender: *19 required: - action @@ -139362,9 +139497,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 project_card: title: Project Card type: object @@ -139492,8 +139627,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *648 - required: *649 + properties: *649 + required: *650 nullable: true sender: *19 required: @@ -139587,11 +139722,11 @@ x-webhooks: - from required: - note - enterprise: *615 - installation: *616 - organization: *617 - project_card: *655 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project_card: *656 + repository: *619 sender: *19 required: - action @@ -139685,9 +139820,9 @@ x-webhooks: - from required: - column_id - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 project_card: allOf: - title: Project Card @@ -139877,7 +140012,7 @@ x-webhooks: type: string required: - after_id - repository: *618 + repository: *619 sender: *19 required: - action @@ -139957,10 +140092,10 @@ x-webhooks: type: string enum: - closed - enterprise: *615 - installation: *616 - organization: *617 - project: &657 + enterprise: *616 + installation: *617 + organization: *618 + project: &658 title: Project type: object properties: @@ -140084,7 +140219,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *618 + repository: *619 sender: *19 required: - action @@ -140164,10 +140299,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - project_column: &656 + enterprise: *616 + installation: *617 + organization: *618 + project_column: &657 title: Project Column type: object properties: @@ -140206,7 +140341,7 @@ x-webhooks: - name - created_at - updated_at - repository: *618 + repository: *619 sender: *19 required: - action @@ -140285,18 +140420,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - project_column: *656 + enterprise: *616 + installation: *617 + organization: *618 + project_column: *657 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *648 - required: *649 + properties: *649 + required: *650 nullable: true sender: *19 required: @@ -140386,11 +140521,11 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - organization: *617 - project_column: *656 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project_column: *657 + repository: *619 sender: *19 required: - action @@ -140470,11 +140605,11 @@ x-webhooks: type: string enum: - moved - enterprise: *615 - installation: *616 - organization: *617 - project_column: *656 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project_column: *657 + repository: *619 sender: *19 required: - action @@ -140554,11 +140689,11 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - project: *657 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project: *658 + repository: *619 sender: *19 required: - action @@ -140638,18 +140773,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - project: *657 + enterprise: *616 + installation: *617 + organization: *618 + project: *658 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *648 - required: *649 + properties: *649 + required: *650 nullable: true sender: *19 required: @@ -140751,11 +140886,11 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - organization: *617 - project: *657 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project: *658 + repository: *619 sender: *19 required: - action @@ -140834,11 +140969,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *615 - installation: *616 - organization: *617 - project: *657 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + project: *658 + repository: *619 sender: *19 required: - action @@ -140919,9 +141054,9 @@ x-webhooks: type: string enum: - closed - installation: *616 - organization: *617 - projects_v2: &658 + installation: *617 + organization: *618 + projects_v2: &659 title: Projects v2 Project description: A projects v2 project type: object @@ -141064,9 +141199,9 @@ x-webhooks: type: string enum: - created - installation: *616 - organization: *617 - projects_v2: *658 + installation: *617 + organization: *618 + projects_v2: *659 sender: *19 required: - action @@ -141147,9 +141282,9 @@ x-webhooks: type: string enum: - deleted - installation: *616 - organization: *617 - projects_v2: *658 + installation: *617 + organization: *618 + projects_v2: *659 sender: *19 required: - action @@ -141266,9 +141401,9 @@ x-webhooks: type: string to: type: string - installation: *616 - organization: *617 - projects_v2: *658 + installation: *617 + organization: *618 + projects_v2: *659 sender: *19 required: - action @@ -141351,7 +141486,7 @@ x-webhooks: type: string enum: - archived - changes: &662 + changes: &663 type: object properties: archived_at: @@ -141365,9 +141500,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *616 - organization: *617 - projects_v2_item: &659 + installation: *617 + organization: *618 + projects_v2_item: &660 title: Projects v2 Item description: An item belonging to a project type: object @@ -141501,9 +141636,9 @@ x-webhooks: nullable: true to: type: string - installation: *616 - organization: *617 - projects_v2_item: *659 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -141585,9 +141720,9 @@ x-webhooks: type: string enum: - created - installation: *616 - organization: *617 - projects_v2_item: *659 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -141668,9 +141803,9 @@ x-webhooks: type: string enum: - deleted - installation: *616 - organization: *617 - projects_v2_item: *659 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -141776,7 +141911,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &660 + - &661 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -141794,7 +141929,7 @@ x-webhooks: required: - id - name - - &661 + - &662 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -141817,8 +141952,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *660 - *661 + - *662 required: - field_value - type: object @@ -141834,9 +141969,9 @@ x-webhooks: nullable: true required: - body - installation: *616 - organization: *617 - projects_v2_item: *659 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -141931,9 +142066,9 @@ x-webhooks: to: type: string nullable: true - installation: *616 - organization: *617 - projects_v2_item: *659 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -142016,10 +142151,10 @@ x-webhooks: type: string enum: - restored - changes: *662 - installation: *616 - organization: *617 - projects_v2_item: *659 + changes: *663 + installation: *617 + organization: *618 + projects_v2_item: *660 sender: *19 required: - action @@ -142101,9 +142236,9 @@ x-webhooks: type: string enum: - reopened - installation: *616 - organization: *617 - projects_v2: *658 + installation: *617 + organization: *618 + projects_v2: *659 sender: *19 required: - action @@ -142184,9 +142319,9 @@ x-webhooks: type: string enum: - created - installation: *616 - organization: *617 - projects_v2_status_update: &663 + installation: *617 + organization: *618 + projects_v2_status_update: &664 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -142313,9 +142448,9 @@ x-webhooks: type: string enum: - deleted - installation: *616 - organization: *617 - projects_v2_status_update: *663 + installation: *617 + organization: *618 + projects_v2_status_update: *664 sender: *19 required: - action @@ -142451,9 +142586,9 @@ x-webhooks: type: string format: date nullable: true - installation: *616 - organization: *617 - projects_v2_status_update: *663 + installation: *617 + organization: *618 + projects_v2_status_update: *664 sender: *19 required: - action @@ -142524,10 +142659,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - repository @@ -142604,13 +142739,13 @@ x-webhooks: type: string enum: - assigned - assignee: *635 - enterprise: *615 - installation: *616 - number: &664 + assignee: *636 + enterprise: *616 + installation: *617 + number: &665 description: The pull request number. type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -144893,7 +145028,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -144975,11 +145110,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -147257,7 +147392,7 @@ x-webhooks: - draft reason: type: string - repository: *618 + repository: *619 sender: *19 required: - action @@ -147339,11 +147474,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -149621,7 +149756,7 @@ x-webhooks: - draft reason: type: string - repository: *618 + repository: *619 sender: *19 required: - action @@ -149703,11 +149838,11 @@ x-webhooks: type: string enum: - closed - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: &665 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: &666 allOf: - *493 - type: object @@ -149771,7 +149906,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *618 + repository: *619 sender: *19 required: - action @@ -149852,12 +149987,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: *665 - repository: *618 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: *666 + repository: *619 sender: *19 required: - action @@ -149937,11 +150072,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *615 + enterprise: *616 milestone: *476 - number: *664 - organization: *617 - pull_request: &666 + number: *665 + organization: *618 + pull_request: &667 title: Pull Request type: object properties: @@ -152204,7 +152339,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -152283,11 +152418,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -154569,7 +154704,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *618 + repository: *619 sender: *19 required: - action @@ -154693,12 +154828,12 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: *665 - repository: *618 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: *666 + repository: *619 sender: *19 required: - action @@ -154778,11 +154913,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -157049,7 +157184,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -157129,11 +157264,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *615 - installation: *616 - label: *634 - number: *664 - organization: *617 + enterprise: *616 + installation: *617 + label: *635 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -159415,7 +159550,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -159496,10 +159631,10 @@ x-webhooks: type: string enum: - locked - enterprise: *615 - installation: *616 - number: *664 - organization: *617 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -161779,7 +161914,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -161859,12 +161994,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *615 + enterprise: *616 milestone: *476 - number: *664 - organization: *617 - pull_request: *666 - repository: *618 + number: *665 + organization: *618 + pull_request: *667 + repository: *619 sender: *19 required: - action @@ -161943,12 +162078,12 @@ x-webhooks: type: string enum: - opened - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: *665 - repository: *618 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: *666 + repository: *619 sender: *19 required: - action @@ -162029,12 +162164,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: *665 - repository: *618 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: *666 + repository: *619 sender: *19 required: - action @@ -162114,12 +162249,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *615 - installation: *616 - number: *664 - organization: *617 - pull_request: *665 - repository: *618 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 + pull_request: *666 + repository: *619 sender: *19 required: - action @@ -162485,9 +162620,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: type: object properties: @@ -164657,7 +164792,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *618 + repository: *619 sender: *19 required: - action @@ -164737,7 +164872,7 @@ x-webhooks: type: string enum: - deleted - comment: &668 + comment: &669 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -165022,9 +165157,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: type: object properties: @@ -167182,7 +167317,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *618 + repository: *619 sender: *19 required: - action @@ -167262,11 +167397,11 @@ x-webhooks: type: string enum: - edited - changes: *667 - comment: *668 - enterprise: *615 - installation: *616 - organization: *617 + changes: *668 + comment: *669 + enterprise: *616 + installation: *617 + organization: *618 pull_request: type: object properties: @@ -169427,7 +169562,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *618 + repository: *619 sender: *19 required: - action @@ -169508,9 +169643,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: title: Simple Pull Request type: object @@ -171683,7 +171818,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *618 + repository: *619 review: description: The review that was affected. type: object @@ -171926,9 +172061,9 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: title: Simple Pull Request type: object @@ -173982,8 +174117,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *618 - review: &669 + repository: *619 + review: &670 description: The review that was affected. type: object properties: @@ -174212,12 +174347,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: description: The pull request number. type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -176500,7 +176635,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 requested_reviewer: title: User type: object @@ -176584,12 +176719,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: description: The pull request number. type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -178879,7 +179014,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 requested_team: title: Team description: Groups of organization members that gives permissions @@ -179071,12 +179206,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: description: The pull request number. type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -181361,7 +181496,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 requested_reviewer: title: User type: object @@ -181446,12 +181581,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *615 - installation: *616 + enterprise: *616 + installation: *617 number: description: The pull request number. type: integer - organization: *617 + organization: *618 pull_request: title: Pull Request type: object @@ -183727,7 +183862,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 requested_team: title: Team description: Groups of organization members that gives permissions @@ -183908,9 +184043,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: title: Simple Pull Request type: object @@ -186085,8 +186220,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *618 - review: *669 + repository: *619 + review: *670 sender: *19 required: - action @@ -186166,9 +186301,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: title: Simple Pull Request type: object @@ -188238,7 +188373,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *618 + repository: *619 sender: *19 thread: type: object @@ -188621,9 +188756,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 pull_request: title: Simple Pull Request type: object @@ -190679,7 +190814,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *618 + repository: *619 sender: *19 thread: type: object @@ -191065,10 +191200,10 @@ x-webhooks: type: string before: type: string - enterprise: *615 - installation: *616 - number: *664 - organization: *617 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -193339,7 +193474,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -193421,11 +193556,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *670 - enterprise: *615 - installation: *616 - number: *664 - organization: *617 + assignee: *671 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -195708,7 +195843,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -195787,11 +195922,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *615 - installation: *616 - label: *634 - number: *664 - organization: *617 + enterprise: *616 + installation: *617 + label: *635 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -198064,7 +198199,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -198145,10 +198280,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *615 - installation: *616 - number: *664 - organization: *617 + enterprise: *616 + installation: *617 + number: *665 + organization: *618 pull_request: title: Pull Request type: object @@ -200413,7 +200548,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *618 + repository: *619 sender: *19 required: - action @@ -200613,7 +200748,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *615 + enterprise: *616 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -200705,8 +200840,8 @@ x-webhooks: - url - author - committer - installation: *616 - organization: *617 + installation: *617 + organization: *618 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -201281,9 +201416,9 @@ x-webhooks: type: string enum: - published - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 registry_package: type: object properties: @@ -201729,7 +201864,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *652 + items: *653 summary: type: string tag_name: @@ -201783,7 +201918,7 @@ x-webhooks: - owner - package_version - registry - repository: *618 + repository: *619 sender: *19 required: - action @@ -201861,9 +201996,9 @@ x-webhooks: type: string enum: - updated - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 registry_package: type: object properties: @@ -202171,7 +202306,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *652 + items: *653 summary: type: string tag_name: @@ -202220,7 +202355,7 @@ x-webhooks: - owner - package_version - registry - repository: *618 + repository: *619 sender: *19 required: - action @@ -202297,10 +202432,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - release: &671 + enterprise: *616 + installation: *617 + organization: *618 + release: &672 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -202605,7 +202740,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *618 + repository: *619 sender: *19 required: - action @@ -202682,11 +202817,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - release: *671 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + release: *672 + repository: *619 sender: *19 required: - action @@ -202794,11 +202929,11 @@ x-webhooks: type: boolean required: - to - enterprise: *615 - installation: *616 - organization: *617 - release: *671 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + release: *672 + repository: *619 sender: *19 required: - action @@ -202876,9 +203011,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -203187,7 +203322,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *618 + repository: *619 sender: *19 required: - action @@ -203263,10 +203398,10 @@ x-webhooks: type: string enum: - published - enterprise: *615 - installation: *616 - organization: *617 - release: &672 + enterprise: *616 + installation: *617 + organization: *618 + release: &673 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -203572,7 +203707,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *618 + repository: *619 sender: *19 required: - action @@ -203648,11 +203783,11 @@ x-webhooks: type: string enum: - released - enterprise: *615 - installation: *616 - organization: *617 - release: *671 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + release: *672 + repository: *619 sender: *19 required: - action @@ -203728,11 +203863,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *615 - installation: *616 - organization: *617 - release: *672 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + release: *673 + repository: *619 sender: *19 required: - action @@ -203808,11 +203943,11 @@ x-webhooks: type: string enum: - published - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - repository_advisory: *546 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + repository_advisory: *547 sender: *19 required: - action @@ -203888,11 +204023,11 @@ x-webhooks: type: string enum: - reported - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - repository_advisory: *546 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + repository_advisory: *547 sender: *19 required: - action @@ -203968,10 +204103,10 @@ x-webhooks: type: string enum: - archived - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204048,10 +204183,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204129,10 +204264,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204216,10 +204351,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204331,10 +204466,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204406,10 +204541,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 status: type: string @@ -204490,10 +204625,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204570,10 +204705,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204667,10 +204802,10 @@ x-webhooks: - name required: - repository - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -204750,10 +204885,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 repository_ruleset: *226 sender: *19 required: @@ -204832,10 +204967,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 repository_ruleset: *226 sender: *19 required: @@ -204914,10 +205049,10 @@ x-webhooks: type: string enum: - edited - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 repository_ruleset: *226 changes: type: object @@ -205222,10 +205357,10 @@ x-webhooks: - from required: - owner - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -205303,10 +205438,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -205384,7 +205519,7 @@ x-webhooks: type: string enum: - create - alert: &673 + alert: &674 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -205505,10 +205640,10 @@ x-webhooks: type: string enum: - open - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -205714,10 +205849,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -205795,11 +205930,11 @@ x-webhooks: type: string enum: - reopen - alert: *673 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + alert: *674 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -205998,10 +206133,10 @@ x-webhooks: enum: - fixed - open - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206079,7 +206214,7 @@ x-webhooks: type: string enum: - created - alert: &674 + alert: &675 type: object properties: number: *48 @@ -206185,10 +206320,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206269,11 +206404,11 @@ x-webhooks: type: string enum: - created - alert: *674 - installation: *616 - location: *675 - organization: *617 - repository: *618 + alert: *675 + installation: *617 + location: *676 + organization: *618 + repository: *619 sender: *19 required: - location @@ -206511,11 +206646,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *674 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + alert: *675 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206593,11 +206728,11 @@ x-webhooks: type: string enum: - reopened - alert: *674 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + alert: *675 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206675,11 +206810,11 @@ x-webhooks: type: string enum: - resolved - alert: *674 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + alert: *675 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206757,11 +206892,11 @@ x-webhooks: type: string enum: - validated - alert: *674 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + alert: *675 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -206837,11 +206972,11 @@ x-webhooks: type: string enum: - published - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - security_advisory: &676 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + security_advisory: &677 description: The details of the security advisory, including summary, description, and severity. type: object @@ -207024,11 +207159,11 @@ x-webhooks: type: string enum: - updated - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 - security_advisory: *676 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 + security_advisory: *677 sender: *19 required: - action @@ -207101,10 +207236,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -207289,9 +207424,9 @@ x-webhooks: type: object properties: security_and_analysis: *219 - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: *265 sender: *19 required: @@ -207370,12 +207505,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: &677 + sponsorship: &678 type: object properties: created_at: @@ -207676,12 +207811,12 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: *677 + sponsorship: *678 required: - action - sponsorship @@ -207769,12 +207904,12 @@ x-webhooks: type: string required: - from - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: *677 + sponsorship: *678 required: - action - changes @@ -207851,17 +207986,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &678 + effective_date: &679 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: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: *677 + sponsorship: *678 required: - action - sponsorship @@ -207935,7 +208070,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &679 + changes: &680 type: object properties: tier: @@ -207979,13 +208114,13 @@ x-webhooks: - from required: - tier - effective_date: *678 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + effective_date: *679 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: *677 + sponsorship: *678 required: - action - changes @@ -208062,13 +208197,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *679 - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + changes: *680 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - sponsorship: *677 + sponsorship: *678 required: - action - changes @@ -208142,10 +208277,10 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -208228,10 +208363,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -208524,6 +208659,9 @@ x-webhooks: nullable: true verified: type: boolean + verified_at: + type: string + nullable: true required: - verified - reason @@ -208647,15 +208785,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *615 + enterprise: *616 id: description: The unique identifier of the status. type: integer - installation: *616 + installation: *617 name: type: string - organization: *617 - repository: *618 + organization: *618 + repository: *619 sender: *19 sha: description: The Commit SHA. @@ -208770,9 +208908,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *75 - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -208862,9 +209000,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *75 - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -208954,9 +209092,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *75 - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -209046,9 +209184,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *75 - installation: *616 - organization: *617 - repository: *618 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -209125,12 +209263,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - team: &680 + team: &681 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -209320,9 +209458,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: title: Repository description: A git repository @@ -209780,7 +209918,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *680 + team: *681 required: - action - team @@ -209856,9 +209994,9 @@ x-webhooks: type: string enum: - created - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: title: Repository description: A git repository @@ -210316,7 +210454,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *680 + team: *681 required: - action - team @@ -210393,9 +210531,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: title: Repository description: A git repository @@ -210853,7 +210991,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *680 + team: *681 required: - action - team @@ -210997,9 +211135,9 @@ x-webhooks: - from required: - permissions - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: title: Repository description: A git repository @@ -211457,7 +211595,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *680 + team: *681 required: - action - changes @@ -211535,9 +211673,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *615 - installation: *616 - organization: *617 + enterprise: *616 + installation: *617 + organization: *618 repository: title: Repository description: A git repository @@ -211995,7 +212133,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *680 + team: *681 required: - action - team @@ -212071,10 +212209,10 @@ x-webhooks: type: string enum: - started - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 required: - action @@ -212147,16 +212285,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *615 + enterprise: *616 inputs: type: object nullable: true additionalProperties: true - installation: *616 - organization: *617 + installation: *617 + organization: *618 ref: type: string - repository: *618 + repository: *619 sender: *19 workflow: type: string @@ -212238,10 +212376,10 @@ x-webhooks: type: string enum: - completed - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 workflow_job: allOf: @@ -212557,10 +212695,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 workflow_job: allOf: @@ -212899,10 +213037,10 @@ x-webhooks: type: string enum: - queued - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 workflow_job: type: object @@ -213116,10 +213254,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 workflow_job: type: object @@ -213335,12 +213473,12 @@ x-webhooks: type: string enum: - completed - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - workflow: *630 + workflow: *631 workflow_run: title: Workflow Run type: object @@ -214339,12 +214477,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - workflow: *630 + workflow: *631 workflow_run: title: Workflow Run type: object @@ -215328,12 +215466,12 @@ x-webhooks: type: string enum: - requested - enterprise: *615 - installation: *616 - organization: *617 - repository: *618 + enterprise: *616 + installation: *617 + organization: *618 + repository: *619 sender: *19 - workflow: *630 + workflow: *631 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index e39b26a86..87184c174 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -179772,7 +179772,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -192010,7 +192010,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -198444,6 +198444,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -214673,6 +214677,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -247648,6 +247656,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -253335,6 +253347,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -258475,6 +258491,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -259017,6 +259037,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -259583,6 +259607,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -261562,6 +261590,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -261619,7 +261651,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -261778,6 +261811,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -261835,7 +261872,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -262277,6 +262315,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -262319,7 +262361,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -284428,6 +284471,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -284487,7 +284534,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -284817,6 +284865,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -284877,7 +284929,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -286130,6 +286183,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -286422,6 +286479,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -341586,6 +341647,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -346359,6 +346424,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -377943,6 +378012,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -410031,6 +410104,272 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "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": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "backfill_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -445996,6 +446335,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -1116220,6 +1116563,10 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 1569b7913..40f76799a 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1012,7 +1012,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: - - &606 + - &607 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1649,7 +1649,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &616 + schema: &617 title: Scim Error description: Scim Error type: object @@ -15480,7 +15480,7 @@ paths: url: type: string format: uri - user: &655 + user: &656 title: Public User description: Public User type: object @@ -19893,7 +19893,7 @@ paths: type: array items: *52 examples: - default: &673 + default: &674 value: - login: github id: 1 @@ -21083,7 +21083,7 @@ paths: type: array items: *57 examples: - default: &667 + default: &668 value: total_count: 1 repositories: @@ -21848,7 +21848,7 @@ paths: type: array items: *159 examples: - default: &658 + default: &659 value: total_count: 1 repositories: @@ -32422,7 +32422,7 @@ paths: parameters: - *141 - *248 - - &672 + - &673 name: repo_name description: repo_name parameter in: path @@ -33728,7 +33728,7 @@ paths: - nuget - container - *141 - - &674 + - &675 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -33769,7 +33769,7 @@ paths: default: *255 '403': *29 '401': *25 - '400': &676 + '400': &677 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -38775,7 +38775,7 @@ paths: application/json: schema: type: array - items: &604 + items: &605 description: A repository security advisory. type: object properties: @@ -39066,7 +39066,7 @@ paths: - private_fork additionalProperties: false examples: - default: &605 + default: &606 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -40650,7 +40650,7 @@ paths: - updated_at - url examples: - default: &645 + default: &646 value: - author: login: octocat @@ -40898,7 +40898,7 @@ paths: application/json: schema: *307 examples: - default: &646 + default: &647 value: author: login: octocat @@ -41081,7 +41081,7 @@ paths: - updated_at - url examples: - default: &647 + default: &648 value: - author: login: octocat @@ -41307,7 +41307,7 @@ paths: application/json: schema: *310 examples: - default: &648 + default: &649 value: author: login: octocat @@ -42020,7 +42020,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &649 + response-if-user-is-a-team-maintainer: &650 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -42085,7 +42085,7 @@ paths: application/json: schema: *321 examples: - response-if-users-membership-with-team-is-now-pending: &650 + response-if-users-membership-with-team-is-now-pending: &651 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -42227,7 +42227,7 @@ paths: - updated_at - permissions examples: - default: &651 + default: &652 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -42304,7 +42304,7 @@ paths: application/json: schema: *322 examples: - default: &652 + default: &653 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -42507,7 +42507,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &653 + schema: &654 title: Team Repository description: A team's access to a repository. type: object @@ -43273,7 +43273,7 @@ paths: type: array items: *238 examples: - response-if-child-teams-exist: &654 + response-if-child-teams-exist: &655 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -47510,7 +47510,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -50384,6 +50384,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -51800,6 +51802,9 @@ paths: signature: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -54965,7 +54970,7 @@ paths: check. type: array items: *394 - deployment: &705 + deployment: &706 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -55879,7 +55884,7 @@ paths: type: string format: date-time nullable: true - head_commit: &731 + head_commit: &732 title: Simple Commit description: A commit. type: object @@ -59823,14 +59828,14 @@ paths: type: integer machines: type: array - items: &661 + items: &662 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *430 required: *431 examples: - default: &662 + default: &663 value: total_count: 2 machines: @@ -63113,7 +63118,7 @@ paths: application/json: schema: type: array - items: &609 + items: &610 title: Status description: The status of a commit. type: object @@ -64537,6 +64542,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true examples: example-for-updating-a-file: value: @@ -64580,6 +64588,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -64628,6 +64637,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *7 '422': *16 '409': @@ -64783,6 +64793,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *16 '404': *7 '409': *146 @@ -69358,6 +69369,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -69404,6 +69418,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -69498,6 +69513,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *7 '409': *146 x-github: @@ -70392,7 +70408,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &739 + last_response: &740 title: Hook Response type: object properties: @@ -71349,7 +71365,7 @@ paths: parameters: - *324 - *325 - - &685 + - &686 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -71783,7 +71799,7 @@ paths: type: array items: *505 examples: - default: &678 + default: &679 value: - id: 1 repository: @@ -75620,6 +75636,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -85536,7 +85555,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &760 + items: &761 type: object properties: type: @@ -85957,6 +85976,122 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + 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: + - *324 + - *325 + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': *96 + '200': + description: Response + content: + application/json: + schema: + type: object + properties: + incremental_scans: + type: array + items: &604 + description: Information on a single scan performed by secret + scanning on the repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or + "running" + completed_at: + type: string + format: date-time + description: The time that the scan was completed. Empty + if the scan is active + nullable: true + started_at: + type: string + format: date-time + description: The time that the scan was started + pattern_update_scans: + type: array + items: *604 + backfill_scans: + type: array + items: *604 + custom_pattern_backfill_scans: + type: array + items: + allOf: + - *604 + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern + scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, + one of "repository", "organization", or "enterprise" + examples: + default: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -86018,9 +86153,9 @@ paths: application/json: schema: type: array - items: *604 + items: *605 examples: - default: *605 + default: *606 '400': *15 '404': *7 x-github: @@ -86204,9 +86339,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: &607 + default: &608 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -86544,7 +86679,7 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: default: value: @@ -86693,15 +86828,15 @@ paths: parameters: - *324 - *325 - - *606 + - *607 responses: '200': description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *607 + default: *608 '403': *29 '404': *7 x-github: @@ -86727,7 +86862,7 @@ paths: parameters: - *324 - *325 - - *606 + - *607 requestBody: required: true content: @@ -86886,10 +87021,10 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *607 - add_credit: *607 + default: *608 + add_credit: *608 '403': *29 '404': *7 '422': @@ -86929,7 +87064,7 @@ paths: parameters: - *324 - *325 - - *606 + - *607 responses: '202': *147 '400': *15 @@ -86958,7 +87093,7 @@ paths: parameters: - *324 - *325 - - *606 + - *607 responses: '202': description: Response @@ -87102,7 +87237,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -87475,7 +87610,7 @@ paths: application/json: schema: type: array - items: *608 + items: *609 examples: default: value: @@ -87563,7 +87698,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: default: value: @@ -87657,7 +87792,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &610 + schema: &611 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -87752,7 +87887,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *611 examples: default: value: @@ -87889,7 +88024,7 @@ paths: application/json: schema: type: array - items: &611 + items: &612 title: Tag protection description: Tag protection type: object @@ -87965,7 +88100,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -88113,7 +88248,7 @@ paths: description: Response content: application/json: - schema: &612 + schema: &613 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -88125,7 +88260,7 @@ paths: required: - names examples: - default: &613 + default: &614 value: names: - octocat @@ -88180,9 +88315,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *613 + default: *614 '404': *7 '422': *8 x-github: @@ -88205,7 +88340,7 @@ paths: parameters: - *324 - *325 - - &614 + - &615 name: per description: The time frame to display results for. in: query @@ -88234,7 +88369,7 @@ paths: example: 128 clones: type: array - items: &615 + items: &616 title: Traffic type: object properties: @@ -88475,7 +88610,7 @@ paths: parameters: - *324 - *325 - - *614 + - *615 responses: '200': description: Response @@ -88494,7 +88629,7 @@ paths: example: 3782 views: type: array - items: *615 + items: *616 required: - uniques - count @@ -89166,7 +89301,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &623 + - &624 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -89175,7 +89310,7 @@ paths: schema: type: string example: members - - &628 + - &629 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -89186,7 +89321,7 @@ paths: default: 1 format: int32 example: 1 - - &629 + - &630 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -89228,7 +89363,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &617 + items: &618 allOf: - type: object required: @@ -89303,7 +89438,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: &630 + meta: &631 type: object description: The metadata associated with the creation/updates to the user. @@ -89363,31 +89498,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &618 + '400': &619 description: Bad request content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 - '401': &619 + schema: *617 + '401': &620 description: Authorization failure - '403': &620 + '403': &621 description: Permission denied - '429': &621 + '429': &622 description: Too many requests content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 - '500': &622 + schema: *617 + '500': &623 description: Internal server error content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 + schema: *617 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89411,7 +89546,7 @@ paths: required: true content: application/json: - schema: &626 + schema: &627 type: object required: - schemas @@ -89467,9 +89602,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *617 + schema: *618 examples: - group: &624 + group: &625 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -89488,13 +89623,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': *618 - '401': *619 - '403': *620 - '409': &627 + '400': *619 + '401': *620 + '403': *621 + '409': &628 description: Duplicate record detected - '429': *621 - '500': *622 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89511,7 +89646,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: - - &625 + - &626 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -89519,22 +89654,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *623 + - *624 - *40 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *617 + schema: *618 examples: - default: *624 - '400': *618 - '401': *619 - '403': *620 + default: *625 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '429': *621 - '500': *622 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89553,13 +89688,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: - - *625 + - *626 - *40 requestBody: required: true content: application/json: - schema: *626 + schema: *627 examples: group: summary: Group @@ -89585,17 +89720,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *617 + schema: *618 examples: - group: *624 - groupWithMembers: *624 - '400': *618 - '401': *619 - '403': *620 + group: *625 + groupWithMembers: *625 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '409': *627 - '429': *621 - '500': *622 + '409': *628 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89619,13 +89754,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: - - *625 + - *626 - *40 requestBody: required: true content: application/json: - schema: &637 + schema: &638 type: object required: - Operations @@ -89685,17 +89820,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *617 + schema: *618 examples: - updateGroup: *624 - addMembers: *624 - '400': *618 - '401': *619 - '403': *620 + updateGroup: *625 + addMembers: *625 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '409': *627 - '429': *621 - '500': *622 + '409': *628 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89711,17 +89846,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: - - *625 + - *626 - *40 responses: '204': description: Group was deleted, no content - '400': *618 - '401': *619 - '403': *620 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '429': *621 - '500': *622 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89755,8 +89890,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *628 - *629 + - *630 - *40 responses: '200': @@ -89789,7 +89924,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &632 + items: &633 allOf: - type: object required: @@ -89868,7 +90003,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &631 + roles: &632 type: array description: The roles assigned to the user. items: @@ -89924,7 +90059,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *630 + meta: *631 startIndex: type: integer description: A starting index for the returned page @@ -89961,11 +90096,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *618 - '401': *619 - '403': *620 - '429': *621 - '500': *622 + '400': *619 + '401': *620 + '403': *621 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89989,7 +90124,7 @@ paths: required: true content: application/json: - schema: &635 + schema: &636 type: object required: - schemas @@ -90071,9 +90206,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *631 + roles: *632 examples: - user: &636 + user: &637 summary: User value: schemas: @@ -90120,9 +90255,9 @@ paths: description: User has been created content: application/scim+json: - schema: *632 + schema: *633 examples: - user: &633 + user: &634 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -90148,13 +90283,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: *633 - '400': *618 - '401': *619 - '403': *620 - '409': *627 - '429': *621 - '500': *622 + enterpriseOwner: *634 + '400': *619 + '401': *620 + '403': *621 + '409': *628 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90171,7 +90306,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: - - &634 + - &635 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -90184,15 +90319,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *632 + schema: *633 examples: - default: *633 - '400': *618 - '401': *619 - '403': *620 + default: *634 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '429': *621 - '500': *622 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90214,30 +90349,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: - - *634 + - *635 - *40 requestBody: required: true content: application/json: - schema: *635 + schema: *636 examples: - user: *636 + user: *637 responses: '200': description: User was updated content: application/scim+json: - schema: *632 + schema: *633 examples: - user: *633 - '400': *618 - '401': *619 - '403': *620 + user: *634 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '409': *627 - '429': *621 - '500': *622 + '409': *628 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90272,13 +90407,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: - - *634 + - *635 - *40 requestBody: required: true content: application/json: - schema: *637 + schema: *638 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -90318,18 +90453,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *632 - examples: - userMultiValuedProperties: *633 - userSingleValuedProperties: *633 - disableUser: *633 - '400': *618 - '401': *619 - '403': *620 + schema: *633 + examples: + userMultiValuedProperties: *634 + userSingleValuedProperties: *634 + disableUser: *634 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '409': *627 - '429': *621 - '500': *622 + '409': *628 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90349,17 +90484,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: - - *634 + - *635 - *40 responses: '204': description: User was deleted, no content - '400': *618 - '401': *619 - '403': *620 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '429': *621 - '500': *622 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90446,7 +90581,7 @@ paths: example: 1 Resources: type: array - items: &638 + items: &639 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -90677,22 +90812,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &639 + '404': &640 description: Resource not found content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 - '403': &640 + schema: *617 + '403': &641 description: Forbidden content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 - '400': *618 - '429': *621 + schema: *617 + '400': *619 + '429': *622 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -90718,9 +90853,9 @@ paths: description: Response content: application/scim+json: - schema: *638 + schema: *639 examples: - default: &641 + default: &642 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -90743,17 +90878,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *639 - '403': *640 - '500': *622 + '404': *640 + '403': *641 + '500': *623 '409': description: Conflict content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 - '400': *618 + schema: *617 + '400': *619 requestBody: required: true content: @@ -90846,17 +90981,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *141 - - *634 + - *635 responses: '200': description: Response content: application/scim+json: - schema: *638 + schema: *639 examples: - default: *641 - '404': *639 - '403': *640 + default: *642 + '404': *640 + '403': *641 '304': *37 x-github: githubCloudOnly: true @@ -90880,18 +91015,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *141 - - *634 + - *635 responses: '200': description: Response content: application/scim+json: - schema: *638 + schema: *639 examples: - default: *641 + default: *642 '304': *37 - '404': *639 - '403': *640 + '404': *640 + '403': *641 requestBody: required: true content: @@ -91000,19 +91135,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *141 - - *634 + - *635 responses: '200': description: Response content: application/scim+json: - schema: *638 + schema: *639 examples: - default: *641 + default: *642 '304': *37 - '404': *639 - '403': *640 - '400': *618 + '404': *640 + '403': *641 + '400': *619 '429': description: Response content: @@ -91103,12 +91238,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *141 - - *634 + - *635 responses: '204': description: Response - '404': *639 - '403': *640 + '404': *640 + '403': *641 '304': *37 x-github: githubCloudOnly: true @@ -91241,7 +91376,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &642 + text_matches: &643 title: Search Result Text Matches type: array items: @@ -91404,7 +91539,7 @@ paths: enum: - author-date - committer-date - - &643 + - &644 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 @@ -91532,7 +91667,7 @@ paths: type: number node_id: type: string - text_matches: *642 + text_matches: *643 required: - sha - node_id @@ -91725,7 +91860,7 @@ paths: - interactions - created - updated - - *643 + - *644 - *18 - *20 responses: @@ -91845,7 +91980,7 @@ paths: type: string format: date-time nullable: true - text_matches: *642 + text_matches: *643 pull_request: type: object properties: @@ -92069,7 +92204,7 @@ paths: enum: - created - updated - - *643 + - *644 - *18 - *20 responses: @@ -92113,7 +92248,7 @@ paths: nullable: true score: type: number - text_matches: *642 + text_matches: *643 required: - id - node_id @@ -92199,7 +92334,7 @@ paths: - forks - help-wanted-issues - updated - - *643 + - *644 - *18 - *20 responses: @@ -92438,7 +92573,7 @@ paths: - admin - pull - push - text_matches: *642 + text_matches: *643 temp_clone_token: type: string allow_merge_commit: @@ -92739,7 +92874,7 @@ paths: type: string format: uri nullable: true - text_matches: *642 + text_matches: *643 related: type: array nullable: true @@ -92932,7 +93067,7 @@ paths: - followers - repositories - joined - - *643 + - *644 - *18 - *20 responses: @@ -93036,7 +93171,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *642 + text_matches: *643 blog: type: string nullable: true @@ -93115,7 +93250,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &644 + - &645 name: team_id description: The unique identifier of the team. in: path @@ -93156,7 +93291,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *644 + - *645 requestBody: required: true content: @@ -93256,7 +93391,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *644 + - *645 responses: '204': description: Response @@ -93287,7 +93422,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *644 + - *645 - *78 - *18 - *20 @@ -93300,7 +93435,7 @@ paths: type: array items: *307 examples: - default: *645 + default: *646 headers: Link: *39 x-github: @@ -93329,7 +93464,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *644 + - *645 requestBody: required: true content: @@ -93392,7 +93527,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *644 + - *645 - *309 responses: '200': @@ -93426,7 +93561,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *644 + - *645 - *309 requestBody: required: false @@ -93452,7 +93587,7 @@ paths: application/json: schema: *307 examples: - default: *646 + default: *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93477,7 +93612,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *644 + - *645 - *309 responses: '204': @@ -93507,7 +93642,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *644 + - *645 - *309 - *78 - *18 @@ -93521,7 +93656,7 @@ paths: type: array items: *310 examples: - default: *647 + default: *648 headers: Link: *39 x-github: @@ -93550,7 +93685,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *644 + - *645 - *309 requestBody: required: true @@ -93602,7 +93737,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *644 + - *645 - *309 - *312 responses: @@ -93637,7 +93772,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *644 + - *645 - *309 - *312 requestBody: @@ -93663,7 +93798,7 @@ paths: application/json: schema: *310 examples: - default: *648 + default: *649 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93688,7 +93823,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *644 + - *645 - *309 - *312 responses: @@ -93719,7 +93854,7 @@ 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: - - *644 + - *645 - *309 - *312 - name: content @@ -93778,7 +93913,7 @@ 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: - - *644 + - *645 - *309 - *312 requestBody: @@ -93840,7 +93975,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *644 + - *645 - *309 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -93898,7 +94033,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *644 + - *645 - *309 requestBody: required: true @@ -93957,7 +94092,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *644 + - *645 - *18 - *20 responses: @@ -93995,7 +94130,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *644 + - *645 - name: role description: Filters members returned by their role in the team. in: query @@ -94046,7 +94181,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *644 + - *645 - *181 responses: '204': @@ -94083,7 +94218,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *644 + - *645 - *181 responses: '204': @@ -94123,7 +94258,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *644 + - *645 - *181 responses: '204': @@ -94160,7 +94295,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *181 responses: '200': @@ -94169,7 +94304,7 @@ paths: application/json: schema: *321 examples: - response-if-user-is-a-team-maintainer: *649 + response-if-user-is-a-team-maintainer: *650 '404': *7 x-github: githubCloudOnly: false @@ -94202,7 +94337,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: - - *644 + - *645 - *181 requestBody: required: false @@ -94230,7 +94365,7 @@ paths: application/json: schema: *321 examples: - response-if-users-membership-with-team-is-now-pending: *650 + response-if-users-membership-with-team-is-now-pending: *651 '403': description: Forbidden if team synchronization is set up '422': @@ -94264,7 +94399,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: - - *644 + - *645 - *181 responses: '204': @@ -94294,7 +94429,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *644 + - *645 - *18 - *20 responses: @@ -94306,7 +94441,7 @@ paths: type: array items: *322 examples: - default: *651 + default: *652 headers: Link: *39 '404': *7 @@ -94333,7 +94468,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *644 + - *645 - *323 responses: '200': @@ -94342,7 +94477,7 @@ paths: application/json: schema: *322 examples: - default: *652 + default: *653 '404': description: Not Found if project is not managed by this team x-github: @@ -94367,7 +94502,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *644 + - *645 - *323 requestBody: required: false @@ -94436,7 +94571,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *644 + - *645 - *323 responses: '204': @@ -94464,7 +94599,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *644 + - *645 - *18 - *20 responses: @@ -94506,7 +94641,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *644 + - *645 - *324 - *325 responses: @@ -94514,7 +94649,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *653 + schema: *654 examples: alternative-response-with-extra-repository-information: value: @@ -94665,7 +94800,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *644 + - *645 - *324 - *325 requestBody: @@ -94717,7 +94852,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *644 + - *645 - *324 - *325 responses: @@ -94748,7 +94883,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *644 + - *645 responses: '200': description: Response @@ -94783,7 +94918,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: - - *644 + - *645 requestBody: required: true content: @@ -94871,7 +95006,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *644 + - *645 - *18 - *20 responses: @@ -94883,7 +95018,7 @@ paths: type: array items: *238 examples: - response-if-child-teams-exist: *654 + response-if-child-teams-exist: *655 headers: Link: *39 '404': *7 @@ -94916,7 +95051,7 @@ paths: application/json: schema: oneOf: - - &656 + - &657 title: Private User description: Private User type: object @@ -95119,7 +95254,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *655 + - *656 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -95272,7 +95407,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: default: value: @@ -95670,7 +95805,7 @@ paths: type: integer secrets: type: array - items: &657 + items: &658 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -95786,7 +95921,7 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: default: value: @@ -95932,7 +96067,7 @@ paths: type: array items: *159 examples: - default: *658 + default: *659 '401': *25 '403': *29 '404': *7 @@ -96199,7 +96334,7 @@ paths: description: Response content: application/json: - schema: &659 + schema: &660 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -96240,7 +96375,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &660 + default: &661 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -96285,9 +96420,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: *660 + default: *661 '404': *7 x-github: githubCloudOnly: false @@ -96324,9 +96459,9 @@ paths: type: integer machines: type: array - items: *661 + items: *662 examples: - default: *662 + default: *663 '304': *37 '500': *84 '401': *25 @@ -97265,7 +97400,7 @@ paths: type: array items: *254 examples: - default: &675 + default: &676 value: - id: 197 name: hello_docker @@ -97366,7 +97501,7 @@ paths: application/json: schema: type: array - items: &663 + items: &664 title: Email description: Email type: object @@ -97431,9 +97566,9 @@ paths: application/json: schema: type: array - items: *663 + items: *664 examples: - default: &677 + default: &678 value: - email: octocat@github.com verified: true @@ -97508,7 +97643,7 @@ paths: application/json: schema: type: array - items: *663 + items: *664 examples: default: value: @@ -97764,7 +97899,7 @@ paths: application/json: schema: type: array - items: &664 + items: &665 title: GPG Key description: A unique encryption key type: object @@ -97895,7 +98030,7 @@ paths: - subkeys - revoked examples: - default: &688 + default: &689 value: - id: 3 name: Octocat's GPG Key @@ -97980,9 +98115,9 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: &665 + default: &666 value: id: 3 name: Octocat's GPG Key @@ -98039,7 +98174,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: - - &666 + - &667 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -98051,9 +98186,9 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: *665 + default: *666 '404': *7 '304': *37 '403': *29 @@ -98076,7 +98211,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: - - *666 + - *667 responses: '204': description: Response @@ -98267,7 +98402,7 @@ paths: type: array items: *57 examples: - default: *667 + default: *668 headers: Link: *39 '404': *7 @@ -98531,7 +98666,7 @@ paths: application/json: schema: type: array - items: &668 + items: &669 title: Key description: Key type: object @@ -98628,9 +98763,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: &669 + default: &670 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98669,9 +98804,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: *669 + default: *670 '404': *7 '304': *37 '403': *29 @@ -98727,7 +98862,7 @@ paths: application/json: schema: type: array - items: &670 + items: &671 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -98795,7 +98930,7 @@ paths: - account - plan examples: - default: &671 + default: &672 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -98857,9 +98992,9 @@ paths: application/json: schema: type: array - items: *670 + items: *671 examples: - default: *671 + default: *672 headers: Link: *39 '304': *37 @@ -99854,7 +99989,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *248 - - *672 + - *673 responses: '204': description: Response @@ -99927,7 +100062,7 @@ paths: type: array items: *52 examples: - default: *673 + default: *674 headers: Link: *39 '304': *37 @@ -99969,7 +100104,7 @@ paths: - docker - nuget - container - - *674 + - *675 - *20 - *18 responses: @@ -99981,8 +100116,8 @@ paths: type: array items: *254 examples: - default: *675 - '400': *676 + default: *676 + '400': *677 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100011,7 +100146,7 @@ paths: application/json: schema: *254 examples: - default: &689 + default: &690 value: id: 40201 name: octo-name @@ -100461,9 +100596,9 @@ paths: application/json: schema: type: array - items: *663 + items: *664 examples: - default: *677 + default: *678 headers: Link: *39 '304': *37 @@ -100576,7 +100711,7 @@ paths: type: array items: *57 examples: - default: &684 + default: &685 summary: Default response value: - id: 1296269 @@ -100920,7 +101055,7 @@ paths: type: array items: *505 examples: - default: *678 + default: *679 headers: Link: *39 '304': *37 @@ -100999,7 +101134,7 @@ paths: application/json: schema: type: array - items: &679 + items: &680 title: Social account description: Social media account type: object @@ -101014,7 +101149,7 @@ paths: - provider - url examples: - default: &680 + default: &681 value: - provider: twitter url: https://twitter.com/github @@ -101076,9 +101211,9 @@ paths: application/json: schema: type: array - items: *679 + items: *680 examples: - default: *680 + default: *681 '422': *16 '304': *37 '404': *7 @@ -101165,7 +101300,7 @@ paths: application/json: schema: type: array - items: &681 + items: &682 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -101185,7 +101320,7 @@ paths: - title - created_at examples: - default: &690 + default: &691 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -101251,9 +101386,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: - default: &682 + default: &683 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -101284,7 +101419,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: - - &683 + - &684 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -101296,9 +101431,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: - default: *682 + default: *683 '404': *7 '304': *37 '403': *29 @@ -101321,7 +101456,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: - - *683 + - *684 responses: '204': description: Response @@ -101350,7 +101485,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: - - &691 + - &692 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 @@ -101375,11 +101510,11 @@ paths: type: array items: *57 examples: - default-response: *684 + default-response: *685 application/vnd.github.v3.star+json: schema: type: array - items: &692 + items: &693 title: Starred Repository description: Starred Repository type: object @@ -101746,10 +101881,10 @@ paths: application/json: schema: oneOf: + - *657 - *656 - - *655 examples: - default-response: &686 + default-response: &687 summary: Default response value: login: octocat @@ -101784,7 +101919,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &687 + response-with-git-hub-plan-information: &688 summary: Response with GitHub plan information value: login: octocat @@ -101844,7 +101979,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *685 + - *686 - *18 responses: '200': @@ -101891,11 +102026,11 @@ paths: application/json: schema: oneOf: + - *657 - *656 - - *655 examples: - default-response: *686 - response-with-git-hub-plan-information: *687 + default-response: *687 + response-with-git-hub-plan-information: *688 '404': *7 x-github: githubCloudOnly: false @@ -102057,7 +102192,7 @@ paths: type: array items: *254 examples: - default: *675 + default: *676 '403': *29 '401': *25 x-github: @@ -102461,9 +102596,9 @@ paths: application/json: schema: type: array - items: *664 + items: *665 examples: - default: *688 + default: *689 headers: Link: *39 x-github: @@ -102645,7 +102780,7 @@ paths: type: array items: *52 examples: - default: *673 + default: *674 headers: Link: *39 x-github: @@ -102684,7 +102819,7 @@ paths: - docker - nuget - container - - *674 + - *675 - *181 - *20 - *18 @@ -102697,10 +102832,10 @@ paths: type: array items: *254 examples: - default: *675 + default: *676 '403': *29 '401': *25 - '400': *676 + '400': *677 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102730,7 +102865,7 @@ paths: application/json: schema: *254 examples: - default: *689 + default: *690 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103413,9 +103548,9 @@ paths: application/json: schema: type: array - items: *679 + items: *680 examples: - default: *680 + default: *681 headers: Link: *39 x-github: @@ -103445,9 +103580,9 @@ paths: application/json: schema: type: array - items: *681 + items: *682 examples: - default: *690 + default: *691 headers: Link: *39 x-github: @@ -103472,7 +103607,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *181 - - *691 + - *692 - *78 - *18 - *20 @@ -103484,11 +103619,11 @@ paths: schema: anyOf: - type: array - items: *692 + items: *693 - type: array items: *57 examples: - default-response: *684 + default-response: *685 headers: Link: *39 x-github: @@ -103647,7 +103782,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &693 + enterprise: &694 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -103705,7 +103840,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &694 + installation: &695 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -103724,7 +103859,7 @@ x-webhooks: required: - id - node_id - organization: &695 + organization: &696 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -103784,13 +103919,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &696 + repository: &697 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &733 + properties: &734 id: description: Unique identifier of the repository example: 42 @@ -104473,7 +104608,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &734 + required: &735 - archive_url - assignees_url - blobs_url @@ -104624,10 +104759,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -104703,11 +104838,11 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - rule: &697 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + rule: &698 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) @@ -104930,11 +105065,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - rule: *697 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + rule: *698 sender: *19 required: - action @@ -105117,11 +105252,11 @@ x-webhooks: - everyone required: - from - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - rule: *697 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + rule: *698 sender: *19 required: - action @@ -105194,7 +105329,7 @@ x-webhooks: required: true content: application/json: - schema: &700 + schema: &701 title: Exemption request cancellation event type: object properties: @@ -105202,11 +105337,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - exemption_request: &698 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + exemption_request: &699 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -105356,7 +105491,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &699 + items: &700 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -105461,7 +105596,7 @@ x-webhooks: required: true content: application/json: - schema: &701 + schema: &702 title: Exemption request completed event type: object properties: @@ -105469,11 +105604,11 @@ x-webhooks: type: string enum: - completed - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - exemption_request: *698 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + exemption_request: *699 sender: *19 required: - action @@ -105545,7 +105680,7 @@ x-webhooks: required: true content: application/json: - schema: &702 + schema: &703 title: Exemption request created event type: object properties: @@ -105553,11 +105688,11 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - exemption_request: *698 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + exemption_request: *699 sender: *19 required: - action @@ -105629,7 +105764,7 @@ x-webhooks: required: true content: application/json: - schema: &703 + schema: &704 title: Exemption response dismissed event type: object properties: @@ -105637,12 +105772,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - exemption_request: *698 - exemption_response: *699 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + exemption_request: *699 + exemption_response: *700 sender: *19 required: - action @@ -105716,7 +105851,7 @@ x-webhooks: required: true content: application/json: - schema: &704 + schema: &705 title: Exemption response submitted event type: object properties: @@ -105724,12 +105859,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - exemption_request: *698 - exemption_response: *699 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + exemption_request: *699 + exemption_response: *700 sender: *19 required: - action @@ -105802,7 +105937,7 @@ x-webhooks: required: true content: application/json: - schema: *700 + schema: *701 responses: '200': description: Return a 200 status to indicate that the data was received @@ -105869,7 +106004,7 @@ x-webhooks: required: true content: application/json: - schema: *701 + schema: *702 responses: '200': description: Return a 200 status to indicate that the data was received @@ -105936,7 +106071,7 @@ x-webhooks: required: true content: application/json: - schema: *702 + schema: *703 responses: '200': description: Return a 200 status to indicate that the data was received @@ -106003,7 +106138,7 @@ x-webhooks: required: true content: application/json: - schema: *703 + schema: *704 responses: '200': description: Return a 200 status to indicate that the data was received @@ -106071,7 +106206,7 @@ x-webhooks: required: true content: application/json: - schema: *704 + schema: *705 responses: '200': description: Return a 200 status to indicate that the data was received @@ -106149,7 +106284,7 @@ x-webhooks: type: string enum: - completed - check_run: &706 + check_run: &707 title: CheckRun description: A check performed on the code of a given code change type: object @@ -106250,7 +106385,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *705 + deployment: *706 details_url: example: https://example.com type: string @@ -106335,9 +106470,9 @@ x-webhooks: - output - app - pull_requests - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - check_run @@ -106730,10 +106865,10 @@ x-webhooks: type: string enum: - created - check_run: *706 - installation: *694 - organization: *695 - repository: *696 + check_run: *707 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - check_run @@ -107129,10 +107264,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *706 - installation: *694 - organization: *695 - repository: *696 + check_run: *707 + installation: *695 + organization: *696 + repository: *697 requested_action: description: The action requested by the user. type: object @@ -107537,10 +107672,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *706 - installation: *694 - organization: *695 - repository: *696 + check_run: *707 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - check_run @@ -108517,10 +108652,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -109190,10 +109325,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -109857,10 +109992,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -110160,20 +110295,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &707 + commit_oid: &708 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: *693 - installation: *694 - organization: *695 - ref: &708 + enterprise: *694 + installation: *695 + organization: *696 + ref: &709 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: *696 + repository: *697 sender: *19 required: - action @@ -110491,12 +110626,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *707 - enterprise: *693 - installation: *694 - organization: *695 - ref: *708 - repository: *696 + commit_oid: *708 + enterprise: *694 + installation: *695 + organization: *696 + ref: *709 + repository: *697 sender: *19 required: - action @@ -110753,12 +110888,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *707 - enterprise: *693 - installation: *694 - organization: *695 - ref: *708 - repository: *696 + commit_oid: *708 + enterprise: *694 + installation: *695 + organization: *696 + ref: *709 + repository: *697 sender: *19 required: - action @@ -111079,12 +111214,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *707 - enterprise: *693 - installation: *694 - organization: *695 - ref: *708 - repository: *696 + commit_oid: *708 + enterprise: *694 + installation: *695 + organization: *696 + ref: *709 + repository: *697 sender: *19 required: - action @@ -111341,16 +111476,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *696 + repository: *697 sender: *19 required: - action @@ -111576,12 +111711,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *707 - enterprise: *693 - installation: *694 - organization: *695 - ref: *708 - repository: *696 + commit_oid: *708 + enterprise: *694 + installation: *695 + organization: *696 + ref: *709 + repository: *697 sender: *19 required: - action @@ -111838,10 +111973,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -111921,18 +112056,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *695 - pusher_type: &709 + organization: *696 + pusher_type: &710 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &710 + ref: &711 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -111942,7 +112077,7 @@ x-webhooks: enum: - tag - branch - repository: *696 + repository: *697 sender: *19 required: - ref @@ -112025,9 +112160,9 @@ x-webhooks: enum: - created definition: *268 - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 sender: *19 required: - action @@ -112112,9 +112247,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 sender: *19 required: - action @@ -112192,9 +112327,9 @@ x-webhooks: enum: - updated definition: *268 - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 sender: *19 required: - action @@ -112271,10 +112406,10 @@ x-webhooks: type: string enum: - updated - enterprise: *693 - installation: *694 - repository: *696 - organization: *695 + enterprise: *694 + installation: *695 + repository: *697 + organization: *696 sender: *19 new_property_values: type: array @@ -112359,18 +112494,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *693 - installation: *694 - organization: *695 - pusher_type: *709 - ref: *710 + enterprise: *694 + installation: *695 + organization: *696 + pusher_type: *710 + ref: *711 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *696 + repository: *697 sender: *19 required: - ref @@ -112455,10 +112590,10 @@ x-webhooks: enum: - auto_dismissed alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112543,10 +112678,10 @@ x-webhooks: enum: - auto_reopened alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112631,10 +112766,10 @@ x-webhooks: enum: - created alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112717,10 +112852,10 @@ x-webhooks: enum: - dismissed alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112803,10 +112938,10 @@ x-webhooks: enum: - fixed alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112890,10 +113025,10 @@ x-webhooks: enum: - reintroduced alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112976,10 +113111,10 @@ x-webhooks: enum: - reopened alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -113056,9 +113191,9 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - key: &711 + enterprise: *694 + installation: *695 + key: &712 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -113094,8 +113229,8 @@ x-webhooks: - verified - created_at - read_only - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -113172,11 +113307,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - key: *711 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + key: *712 + organization: *696 + repository: *697 sender: *19 required: - action @@ -113737,12 +113872,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - workflow: &715 + workflow: &716 title: Workflow type: object nullable: true @@ -114472,9 +114607,9 @@ x-webhooks: pull_requests: type: array items: *551 - repository: *696 - organization: *695 - installation: *694 + repository: *697 + organization: *696 + installation: *695 sender: *19 responses: '200': @@ -114545,7 +114680,7 @@ x-webhooks: type: string enum: - approved - approver: &712 + approver: &713 type: object properties: avatar_url: @@ -114588,11 +114723,11 @@ x-webhooks: type: string comment: type: string - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - reviewers: &713 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + reviewers: &714 type: array items: type: object @@ -114671,7 +114806,7 @@ x-webhooks: sender: *19 since: type: string - workflow_job_run: &714 + workflow_job_run: &715 type: object properties: conclusion: @@ -115402,18 +115537,18 @@ x-webhooks: type: string enum: - rejected - approver: *712 + approver: *713 comment: type: string - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - reviewers: *713 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + reviewers: *714 sender: *19 since: type: string - workflow_job_run: *714 + workflow_job_run: *715 workflow_job_runs: type: array items: @@ -116117,13 +116252,13 @@ x-webhooks: type: string enum: - requested - enterprise: *693 + enterprise: *694 environment: type: string - installation: *694 - organization: *695 - repository: *696 - requestor: &720 + installation: *695 + organization: *696 + repository: *697 + requestor: &721 title: User type: object nullable: true @@ -118022,12 +118157,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - workflow: *715 + workflow: *716 workflow_run: title: Deployment Workflow Run type: object @@ -118707,7 +118842,7 @@ x-webhooks: type: string enum: - answered - answer: &718 + answer: &719 type: object properties: author_association: @@ -118864,7 +118999,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &716 + discussion: &717 title: Discussion description: A Discussion in a repository. type: object @@ -119172,10 +119307,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119302,11 +119437,11 @@ x-webhooks: - from required: - category - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119389,11 +119524,11 @@ x-webhooks: type: string enum: - closed - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119475,7 +119610,7 @@ x-webhooks: type: string enum: - created - comment: &717 + comment: &718 type: object properties: author_association: @@ -119632,11 +119767,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119719,12 +119854,12 @@ x-webhooks: type: string enum: - deleted - comment: *717 - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + comment: *718 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119819,12 +119954,12 @@ x-webhooks: - from required: - body - comment: *717 - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + comment: *718 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119908,11 +120043,11 @@ x-webhooks: type: string enum: - created - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119994,11 +120129,11 @@ x-webhooks: type: string enum: - deleted - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120098,11 +120233,11 @@ x-webhooks: type: string required: - from - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120184,10 +120319,10 @@ x-webhooks: type: string enum: - labeled - discussion: *716 - enterprise: *693 - installation: *694 - label: &719 + discussion: *717 + enterprise: *694 + installation: *695 + label: &720 title: Label type: object properties: @@ -120219,8 +120354,8 @@ x-webhooks: - color - default - description - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120303,11 +120438,11 @@ x-webhooks: type: string enum: - locked - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120389,11 +120524,11 @@ x-webhooks: type: string enum: - pinned - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120475,11 +120610,11 @@ x-webhooks: type: string enum: - reopened - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120564,16 +120699,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *716 - new_repository: *696 + new_discussion: *717 + new_repository: *697 required: - new_discussion - new_repository - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120656,10 +120791,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *716 - old_answer: *718 - organization: *695 - repository: *696 + discussion: *717 + old_answer: *719 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120741,12 +120876,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *716 - enterprise: *693 - installation: *694 - label: *719 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120829,11 +120964,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120915,11 +121050,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120992,7 +121127,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *693 + enterprise: *694 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -121652,9 +121787,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - forkee @@ -121800,9 +121935,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pages: description: The pages that were updated. type: array @@ -121839,7 +121974,7 @@ x-webhooks: - action - sha - html_url - repository: *696 + repository: *697 sender: *19 required: - pages @@ -121915,10 +122050,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories: &721 + organization: *696 + repositories: &722 description: An array of repository objects that the installation can access. type: array @@ -121944,8 +122079,8 @@ x-webhooks: - name - full_name - private - repository: *696 - requester: *720 + repository: *697 + requester: *721 sender: *19 required: - action @@ -122020,11 +122155,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories: *721 - repository: *696 + organization: *696 + repositories: *722 + repository: *697 requester: nullable: true sender: *19 @@ -122100,11 +122235,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories: *721 - repository: *696 + organization: *696 + repositories: *722 + repository: *697 requester: nullable: true sender: *19 @@ -122180,10 +122315,10 @@ x-webhooks: type: string enum: - added - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories_added: &722 + organization: *696 + repositories_added: &723 description: An array of repository objects, which were added to the installation. type: array @@ -122229,15 +122364,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *696 - repository_selection: &723 + repository: *697 + repository_selection: &724 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *720 + requester: *721 sender: *19 required: - action @@ -122316,10 +122451,10 @@ x-webhooks: type: string enum: - removed - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories_added: *722 + organization: *696 + repositories_added: *723 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -122346,9 +122481,9 @@ x-webhooks: - name - full_name - private - repository: *696 - repository_selection: *723 - requester: *720 + repository: *697 + repository_selection: *724 + requester: *721 sender: *19 required: - action @@ -122427,11 +122562,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories: *721 - repository: *696 + organization: *696 + repositories: *722 + repository: *697 requester: nullable: true sender: *19 @@ -122610,10 +122745,10 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 target_type: type: string @@ -122692,11 +122827,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories: *721 - repository: *696 + organization: *696 + repositories: *722 + repository: *697 requester: nullable: true sender: *19 @@ -122948,8 +123083,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -124090,8 +124225,8 @@ x-webhooks: - state - locked - assignee - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -124171,7 +124306,7 @@ x-webhooks: type: string enum: - deleted - comment: &724 + comment: &725 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -124336,8 +124471,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -125476,8 +125611,8 @@ x-webhooks: - state - locked - assignee - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -125557,7 +125692,7 @@ x-webhooks: type: string enum: - edited - changes: &752 + changes: &753 description: The changes to the comment. type: object properties: @@ -125569,9 +125704,9 @@ x-webhooks: type: string required: - from - comment: *724 - enterprise: *693 - installation: *694 + comment: *725 + enterprise: *694 + installation: *695 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -126711,8 +126846,8 @@ x-webhooks: - state - locked - assignee - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -126794,10 +126929,10 @@ x-webhooks: type: string enum: - assigned - assignee: *720 - enterprise: *693 - installation: *694 - issue: &727 + assignee: *721 + enterprise: *694 + installation: *695 + issue: &728 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -127701,8 +127836,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -127782,8 +127917,8 @@ x-webhooks: type: string enum: - closed - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -128827,8 +128962,8 @@ x-webhooks: required: - state - closed_at - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -128907,8 +129042,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -129805,8 +129940,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -129885,8 +130020,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -130786,7 +130921,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &725 + milestone: &726 title: Milestone description: A collection of related issues and pull requests. type: object @@ -130924,8 +131059,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -131024,8 +131159,8 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -131929,9 +132064,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *719 - organization: *695 - repository: *696 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -132011,8 +132146,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -132915,9 +133050,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *719 - organization: *695 - repository: *696 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -132997,8 +133132,8 @@ x-webhooks: type: string enum: - locked - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -133902,8 +134037,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -133982,8 +134117,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -134881,9 +135016,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *725 - organization: *695 - repository: *696 + milestone: *726 + organization: *696 + repository: *697 sender: *19 required: - action @@ -136330,8 +136465,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -137234,8 +137369,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -137315,9 +137450,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *693 - installation: *694 - issue: &726 + enterprise: *694 + installation: *695 + issue: &727 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -138214,8 +138349,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -138294,8 +138429,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -139198,8 +139333,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -140647,11 +140782,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *693 - installation: *694 - issue: *726 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + issue: *727 + organization: *696 + repository: *697 sender: *19 required: - action @@ -140732,7 +140867,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &755 + assignee: &756 title: User type: object nullable: true @@ -140802,11 +140937,11 @@ x-webhooks: required: - login - id - enterprise: *693 - installation: *694 - issue: *727 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + issue: *728 + organization: *696 + repository: *697 sender: *19 required: - action @@ -140885,12 +141020,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *693 - installation: *694 - issue: *727 - label: *719 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + issue: *728 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -140970,8 +141105,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141873,8 +142008,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -141954,11 +142089,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *693 - installation: *694 - issue: *726 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + issue: *727 + organization: *696 + repository: *697 sender: *19 required: - action @@ -142037,11 +142172,11 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - label: *719 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -142119,11 +142254,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - label: *719 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -142233,11 +142368,11 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - label: *719 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -142319,9 +142454,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *693 - installation: *694 - marketplace_purchase: &728 + enterprise: *694 + installation: *695 + marketplace_purchase: &729 title: Marketplace Purchase type: object required: @@ -142404,8 +142539,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *695 - previous_marketplace_purchase: &729 + organization: *696 + previous_marketplace_purchase: &730 title: Marketplace Purchase type: object properties: @@ -142485,7 +142620,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *696 + repository: *697 sender: *19 required: - action @@ -142565,10 +142700,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *693 - installation: *694 - marketplace_purchase: *728 - organization: *695 + enterprise: *694 + installation: *695 + marketplace_purchase: *729 + organization: *696 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -142651,7 +142786,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *696 + repository: *697 sender: *19 required: - action @@ -142733,10 +142868,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *693 - installation: *694 - marketplace_purchase: *728 - organization: *695 + enterprise: *694 + installation: *695 + marketplace_purchase: *729 + organization: *696 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -142818,7 +142953,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *696 + repository: *697 sender: *19 required: - action @@ -142899,8 +143034,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 marketplace_purchase: title: Marketplace Purchase type: object @@ -142982,9 +143117,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *695 - previous_marketplace_purchase: *729 - repository: *696 + organization: *696 + previous_marketplace_purchase: *730 + repository: *697 sender: *19 required: - action @@ -143064,12 +143199,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *693 - installation: *694 - marketplace_purchase: *728 - organization: *695 - previous_marketplace_purchase: *729 - repository: *696 + enterprise: *694 + installation: *695 + marketplace_purchase: *729 + organization: *696 + previous_marketplace_purchase: *730 + repository: *697 sender: *19 required: - action @@ -143171,11 +143306,11 @@ x-webhooks: type: string required: - to - enterprise: *693 - installation: *694 - member: *720 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + member: *721 + organization: *696 + repository: *697 sender: *19 required: - action @@ -143275,11 +143410,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *693 - installation: *694 - member: *720 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + member: *721 + organization: *696 + repository: *697 sender: *19 required: - action @@ -143358,11 +143493,11 @@ x-webhooks: type: string enum: - removed - enterprise: *693 - installation: *694 - member: *720 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + member: *721 + organization: *696 + repository: *697 sender: *19 required: - action @@ -143440,11 +143575,11 @@ x-webhooks: type: string enum: - added - enterprise: *693 - installation: *694 - member: *720 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + member: *721 + organization: *696 + repository: *697 scope: description: The scope of the membership. Currently, can only be `team`. @@ -143520,7 +143655,7 @@ x-webhooks: required: - login - id - team: &730 + team: &731 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -143710,11 +143845,11 @@ x-webhooks: type: string enum: - removed - enterprise: *693 - installation: *694 - member: *720 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + member: *721 + organization: *696 + repository: *697 scope: description: The scope of the membership. Currently, can only be `team`. @@ -143791,7 +143926,7 @@ x-webhooks: required: - login - id - team: *730 + team: *731 required: - action - scope @@ -143873,8 +144008,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *694 - merge_group: &732 + installation: *695 + merge_group: &733 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -143893,15 +144028,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *731 + head_commit: *732 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -143987,10 +144122,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *694 - merge_group: *732 - organization: *695 - repository: *696 + installation: *695 + merge_group: *733 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144063,7 +144198,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 + enterprise: *694 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -144171,16 +144306,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *694 - organization: *695 + installation: *695 + organization: *696 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *733 - required: *734 + properties: *734 + required: *735 nullable: true sender: *19 required: @@ -144261,11 +144396,11 @@ x-webhooks: type: string enum: - closed - enterprise: *693 - installation: *694 - milestone: *725 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + milestone: *726 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144344,9 +144479,9 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - milestone: &735 + enterprise: *694 + installation: *695 + milestone: &736 title: Milestone description: A collection of related issues and pull requests. type: object @@ -144483,8 +144618,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144563,11 +144698,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - milestone: *725 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + milestone: *726 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144677,11 +144812,11 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - milestone: *725 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + milestone: *726 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144761,11 +144896,11 @@ x-webhooks: type: string enum: - opened - enterprise: *693 - installation: *694 - milestone: *735 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + milestone: *736 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144844,11 +144979,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *720 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + blocked_user: *721 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144927,11 +145062,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *720 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + blocked_user: *721 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -145010,9 +145145,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - membership: &736 + enterprise: *694 + installation: *695 + membership: &737 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -145104,8 +145239,8 @@ x-webhooks: - role - organization_url - user - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -145183,11 +145318,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *693 - installation: *694 - membership: *736 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + membership: *737 + organization: *696 + repository: *697 sender: *19 required: - action @@ -145266,8 +145401,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -145383,10 +145518,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 - user: *720 + user: *721 required: - action - invitation @@ -145464,11 +145599,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *693 - installation: *694 - membership: *736 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + membership: *737 + organization: *696 + repository: *697 sender: *19 required: - action @@ -145555,11 +145690,11 @@ x-webhooks: properties: from: type: string - enterprise: *693 - installation: *694 - membership: *736 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + membership: *737 + organization: *696 + repository: *697 sender: *19 required: - action @@ -145635,9 +145770,9 @@ x-webhooks: type: string enum: - published - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 package: description: Information about the package. type: object @@ -146136,7 +146271,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &737 + items: &738 title: Ruby Gems metadata type: object properties: @@ -146231,7 +146366,7 @@ x-webhooks: - owner - package_version - registry - repository: *696 + repository: *697 sender: *19 required: - action @@ -146307,9 +146442,9 @@ x-webhooks: type: string enum: - updated - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 package: description: Information about the package. type: object @@ -146662,7 +146797,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *737 + items: *738 source_url: type: string format: uri @@ -146732,7 +146867,7 @@ x-webhooks: - owner - package_version - registry - repository: *696 + repository: *697 sender: *19 required: - action @@ -146909,12 +147044,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *693 + enterprise: *694 id: type: integer - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - id @@ -146994,7 +147129,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &738 + personal_access_token_request: &739 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -147140,10 +147275,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *693 - organization: *695 + enterprise: *694 + organization: *696 sender: *19 - installation: *694 + installation: *695 required: - action - personal_access_token_request @@ -147222,11 +147357,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *738 - enterprise: *693 - organization: *695 + personal_access_token_request: *739 + enterprise: *694 + organization: *696 sender: *19 - installation: *694 + installation: *695 required: - action - personal_access_token_request @@ -147304,11 +147439,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *738 - enterprise: *693 - organization: *695 + personal_access_token_request: *739 + enterprise: *694 + organization: *696 sender: *19 - installation: *694 + installation: *695 required: - action - personal_access_token_request @@ -147385,11 +147520,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *738 - organization: *695 - enterprise: *693 + personal_access_token_request: *739 + organization: *696 + enterprise: *694 sender: *19 - installation: *694 + installation: *695 required: - action - personal_access_token_request @@ -147493,7 +147628,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *739 + last_response: *740 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -147525,8 +147660,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 zen: description: Random string of GitHub zen. @@ -147771,10 +147906,10 @@ x-webhooks: - from required: - note - enterprise: *693 - installation: *694 - organization: *695 - project_card: &740 + enterprise: *694 + installation: *695 + organization: *696 + project_card: &741 title: Project Card type: object properties: @@ -147893,7 +148028,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *696 + repository: *697 sender: *19 required: - action @@ -147974,11 +148109,11 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - project_card: *740 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project_card: *741 + repository: *697 sender: *19 required: - action @@ -148058,9 +148193,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 project_card: title: Project Card type: object @@ -148188,8 +148323,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *733 - required: *734 + properties: *734 + required: *735 nullable: true sender: *19 required: @@ -148283,11 +148418,11 @@ x-webhooks: - from required: - note - enterprise: *693 - installation: *694 - organization: *695 - project_card: *740 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project_card: *741 + repository: *697 sender: *19 required: - action @@ -148381,9 +148516,9 @@ x-webhooks: - from required: - column_id - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 project_card: allOf: - title: Project Card @@ -148573,7 +148708,7 @@ x-webhooks: type: string required: - after_id - repository: *696 + repository: *697 sender: *19 required: - action @@ -148653,10 +148788,10 @@ x-webhooks: type: string enum: - closed - enterprise: *693 - installation: *694 - organization: *695 - project: &742 + enterprise: *694 + installation: *695 + organization: *696 + project: &743 title: Project type: object properties: @@ -148780,7 +148915,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *696 + repository: *697 sender: *19 required: - action @@ -148860,10 +148995,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - project_column: &741 + enterprise: *694 + installation: *695 + organization: *696 + project_column: &742 title: Project Column type: object properties: @@ -148902,7 +149037,7 @@ x-webhooks: - name - created_at - updated_at - repository: *696 + repository: *697 sender: *19 required: - action @@ -148981,18 +149116,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - project_column: *741 + enterprise: *694 + installation: *695 + organization: *696 + project_column: *742 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *733 - required: *734 + properties: *734 + required: *735 nullable: true sender: *19 required: @@ -149082,11 +149217,11 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - organization: *695 - project_column: *741 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project_column: *742 + repository: *697 sender: *19 required: - action @@ -149166,11 +149301,11 @@ x-webhooks: type: string enum: - moved - enterprise: *693 - installation: *694 - organization: *695 - project_column: *741 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project_column: *742 + repository: *697 sender: *19 required: - action @@ -149250,11 +149385,11 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - project: *742 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project: *743 + repository: *697 sender: *19 required: - action @@ -149334,18 +149469,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - project: *742 + enterprise: *694 + installation: *695 + organization: *696 + project: *743 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *733 - required: *734 + properties: *734 + required: *735 nullable: true sender: *19 required: @@ -149447,11 +149582,11 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - organization: *695 - project: *742 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project: *743 + repository: *697 sender: *19 required: - action @@ -149530,11 +149665,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *693 - installation: *694 - organization: *695 - project: *742 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project: *743 + repository: *697 sender: *19 required: - action @@ -149615,9 +149750,9 @@ x-webhooks: type: string enum: - closed - installation: *694 - organization: *695 - projects_v2: &743 + installation: *695 + organization: *696 + projects_v2: &744 title: Projects v2 Project description: A projects v2 project type: object @@ -149760,9 +149895,9 @@ x-webhooks: type: string enum: - created - installation: *694 - organization: *695 - projects_v2: *743 + installation: *695 + organization: *696 + projects_v2: *744 sender: *19 required: - action @@ -149843,9 +149978,9 @@ x-webhooks: type: string enum: - deleted - installation: *694 - organization: *695 - projects_v2: *743 + installation: *695 + organization: *696 + projects_v2: *744 sender: *19 required: - action @@ -149962,9 +150097,9 @@ x-webhooks: type: string to: type: string - installation: *694 - organization: *695 - projects_v2: *743 + installation: *695 + organization: *696 + projects_v2: *744 sender: *19 required: - action @@ -150047,7 +150182,7 @@ x-webhooks: type: string enum: - archived - changes: &747 + changes: &748 type: object properties: archived_at: @@ -150061,9 +150196,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *694 - organization: *695 - projects_v2_item: &744 + installation: *695 + organization: *696 + projects_v2_item: &745 title: Projects v2 Item description: An item belonging to a project type: object @@ -150197,9 +150332,9 @@ x-webhooks: nullable: true to: type: string - installation: *694 - organization: *695 - projects_v2_item: *744 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150281,9 +150416,9 @@ x-webhooks: type: string enum: - created - installation: *694 - organization: *695 - projects_v2_item: *744 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150364,9 +150499,9 @@ x-webhooks: type: string enum: - deleted - installation: *694 - organization: *695 - projects_v2_item: *744 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150472,7 +150607,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &745 + - &746 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -150490,7 +150625,7 @@ x-webhooks: required: - id - name - - &746 + - &747 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -150513,8 +150648,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *745 - *746 + - *747 required: - field_value - type: object @@ -150530,9 +150665,9 @@ x-webhooks: nullable: true required: - body - installation: *694 - organization: *695 - projects_v2_item: *744 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150627,9 +150762,9 @@ x-webhooks: to: type: string nullable: true - installation: *694 - organization: *695 - projects_v2_item: *744 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150712,10 +150847,10 @@ x-webhooks: type: string enum: - restored - changes: *747 - installation: *694 - organization: *695 - projects_v2_item: *744 + changes: *748 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150797,9 +150932,9 @@ x-webhooks: type: string enum: - reopened - installation: *694 - organization: *695 - projects_v2: *743 + installation: *695 + organization: *696 + projects_v2: *744 sender: *19 required: - action @@ -150880,9 +151015,9 @@ x-webhooks: type: string enum: - created - installation: *694 - organization: *695 - projects_v2_status_update: &748 + installation: *695 + organization: *696 + projects_v2_status_update: &749 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -151009,9 +151144,9 @@ x-webhooks: type: string enum: - deleted - installation: *694 - organization: *695 - projects_v2_status_update: *748 + installation: *695 + organization: *696 + projects_v2_status_update: *749 sender: *19 required: - action @@ -151147,9 +151282,9 @@ x-webhooks: type: string format: date nullable: true - installation: *694 - organization: *695 - projects_v2_status_update: *748 + installation: *695 + organization: *696 + projects_v2_status_update: *749 sender: *19 required: - action @@ -151220,10 +151355,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - repository @@ -151300,13 +151435,13 @@ x-webhooks: type: string enum: - assigned - assignee: *720 - enterprise: *693 - installation: *694 - number: &749 + assignee: *721 + enterprise: *694 + installation: *695 + number: &750 description: The pull request number. type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -153589,7 +153724,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -153671,11 +153806,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -155953,7 +156088,7 @@ x-webhooks: - draft reason: type: string - repository: *696 + repository: *697 sender: *19 required: - action @@ -156035,11 +156170,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -158317,7 +158452,7 @@ x-webhooks: - draft reason: type: string - repository: *696 + repository: *697 sender: *19 required: - action @@ -158399,11 +158534,11 @@ x-webhooks: type: string enum: - closed - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: &750 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: &751 allOf: - *551 - type: object @@ -158467,7 +158602,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *696 + repository: *697 sender: *19 required: - action @@ -158548,12 +158683,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: *750 - repository: *696 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: *751 + repository: *697 sender: *19 required: - action @@ -158633,11 +158768,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *693 + enterprise: *694 milestone: *534 - number: *749 - organization: *695 - pull_request: &751 + number: *750 + organization: *696 + pull_request: &752 title: Pull Request type: object properties: @@ -160900,7 +161035,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -160979,11 +161114,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -163265,7 +163400,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *696 + repository: *697 sender: *19 required: - action @@ -163389,12 +163524,12 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: *750 - repository: *696 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: *751 + repository: *697 sender: *19 required: - action @@ -163474,11 +163609,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -165745,7 +165880,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -165825,11 +165960,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *693 - installation: *694 - label: *719 - number: *749 - organization: *695 + enterprise: *694 + installation: *695 + label: *720 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -168111,7 +168246,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -168192,10 +168327,10 @@ x-webhooks: type: string enum: - locked - enterprise: *693 - installation: *694 - number: *749 - organization: *695 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -170475,7 +170610,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -170555,12 +170690,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *693 + enterprise: *694 milestone: *534 - number: *749 - organization: *695 - pull_request: *751 - repository: *696 + number: *750 + organization: *696 + pull_request: *752 + repository: *697 sender: *19 required: - action @@ -170639,12 +170774,12 @@ x-webhooks: type: string enum: - opened - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: *750 - repository: *696 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: *751 + repository: *697 sender: *19 required: - action @@ -170725,12 +170860,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: *750 - repository: *696 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: *751 + repository: *697 sender: *19 required: - action @@ -170810,12 +170945,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: *750 - repository: *696 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: *751 + repository: *697 sender: *19 required: - action @@ -171181,9 +171316,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: type: object properties: @@ -173353,7 +173488,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *696 + repository: *697 sender: *19 required: - action @@ -173433,7 +173568,7 @@ x-webhooks: type: string enum: - deleted - comment: &753 + comment: &754 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. @@ -173718,9 +173853,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: type: object properties: @@ -175878,7 +176013,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *696 + repository: *697 sender: *19 required: - action @@ -175958,11 +176093,11 @@ x-webhooks: type: string enum: - edited - changes: *752 - comment: *753 - enterprise: *693 - installation: *694 - organization: *695 + changes: *753 + comment: *754 + enterprise: *694 + installation: *695 + organization: *696 pull_request: type: object properties: @@ -178123,7 +178258,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *696 + repository: *697 sender: *19 required: - action @@ -178204,9 +178339,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: title: Simple Pull Request type: object @@ -180379,7 +180514,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *696 + repository: *697 review: description: The review that was affected. type: object @@ -180622,9 +180757,9 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: title: Simple Pull Request type: object @@ -182678,8 +182813,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *696 - review: &754 + repository: *697 + review: &755 description: The review that was affected. type: object properties: @@ -182908,12 +183043,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: description: The pull request number. type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -185196,7 +185331,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 requested_reviewer: title: User type: object @@ -185280,12 +185415,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: description: The pull request number. type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -187575,7 +187710,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 requested_team: title: Team description: Groups of organization members that gives permissions @@ -187767,12 +187902,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: description: The pull request number. type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -190057,7 +190192,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 requested_reviewer: title: User type: object @@ -190142,12 +190277,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: description: The pull request number. type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -192423,7 +192558,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 requested_team: title: Team description: Groups of organization members that gives permissions @@ -192604,9 +192739,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: title: Simple Pull Request type: object @@ -194781,8 +194916,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *696 - review: *754 + repository: *697 + review: *755 sender: *19 required: - action @@ -194862,9 +194997,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: title: Simple Pull Request type: object @@ -196934,7 +197069,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *696 + repository: *697 sender: *19 thread: type: object @@ -197317,9 +197452,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: title: Simple Pull Request type: object @@ -199375,7 +199510,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *696 + repository: *697 sender: *19 thread: type: object @@ -199761,10 +199896,10 @@ x-webhooks: type: string before: type: string - enterprise: *693 - installation: *694 - number: *749 - organization: *695 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -202035,7 +202170,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -202117,11 +202252,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *755 - enterprise: *693 - installation: *694 - number: *749 - organization: *695 + assignee: *756 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -204404,7 +204539,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -204483,11 +204618,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *693 - installation: *694 - label: *719 - number: *749 - organization: *695 + enterprise: *694 + installation: *695 + label: *720 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -206760,7 +206895,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -206841,10 +206976,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *693 - installation: *694 - number: *749 - organization: *695 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -209109,7 +209244,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -209309,7 +209444,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *693 + enterprise: *694 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -209401,8 +209536,8 @@ x-webhooks: - url - author - committer - installation: *694 - organization: *695 + installation: *695 + organization: *696 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -209977,9 +210112,9 @@ x-webhooks: type: string enum: - published - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 registry_package: type: object properties: @@ -210425,7 +210560,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *737 + items: *738 summary: type: string tag_name: @@ -210479,7 +210614,7 @@ x-webhooks: - owner - package_version - registry - repository: *696 + repository: *697 sender: *19 required: - action @@ -210557,9 +210692,9 @@ x-webhooks: type: string enum: - updated - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 registry_package: type: object properties: @@ -210867,7 +211002,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *737 + items: *738 summary: type: string tag_name: @@ -210916,7 +211051,7 @@ x-webhooks: - owner - package_version - registry - repository: *696 + repository: *697 sender: *19 required: - action @@ -210993,10 +211128,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - release: &756 + enterprise: *694 + installation: *695 + organization: *696 + release: &757 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -211301,7 +211436,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *696 + repository: *697 sender: *19 required: - action @@ -211378,11 +211513,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - release: *756 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + release: *757 + repository: *697 sender: *19 required: - action @@ -211490,11 +211625,11 @@ x-webhooks: type: boolean required: - to - enterprise: *693 - installation: *694 - organization: *695 - release: *756 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + release: *757 + repository: *697 sender: *19 required: - action @@ -211572,9 +211707,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -211883,7 +212018,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *696 + repository: *697 sender: *19 required: - action @@ -211959,10 +212094,10 @@ x-webhooks: type: string enum: - published - enterprise: *693 - installation: *694 - organization: *695 - release: &757 + enterprise: *694 + installation: *695 + organization: *696 + release: &758 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -212268,7 +212403,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *696 + repository: *697 sender: *19 required: - action @@ -212344,11 +212479,11 @@ x-webhooks: type: string enum: - released - enterprise: *693 - installation: *694 - organization: *695 - release: *756 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + release: *757 + repository: *697 sender: *19 required: - action @@ -212424,11 +212559,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *693 - installation: *694 - organization: *695 - release: *757 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + release: *758 + repository: *697 sender: *19 required: - action @@ -212504,11 +212639,11 @@ x-webhooks: type: string enum: - published - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - repository_advisory: *604 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + repository_advisory: *605 sender: *19 required: - action @@ -212584,11 +212719,11 @@ x-webhooks: type: string enum: - reported - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - repository_advisory: *604 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + repository_advisory: *605 sender: *19 required: - action @@ -212664,10 +212799,10 @@ x-webhooks: type: string enum: - archived - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -212744,10 +212879,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -212825,10 +212960,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -212912,10 +213047,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213027,10 +213162,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213102,10 +213237,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 status: type: string @@ -213186,10 +213321,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213266,10 +213401,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213363,10 +213498,10 @@ x-webhooks: - name required: - repository - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213446,10 +213581,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 repository_ruleset: *284 sender: *19 required: @@ -213528,10 +213663,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 repository_ruleset: *284 sender: *19 required: @@ -213610,10 +213745,10 @@ x-webhooks: type: string enum: - edited - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 repository_ruleset: *284 changes: type: object @@ -213918,10 +214053,10 @@ x-webhooks: - from required: - owner - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213999,10 +214134,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214080,7 +214215,7 @@ x-webhooks: type: string enum: - create - alert: &758 + alert: &759 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -214201,10 +214336,10 @@ x-webhooks: type: string enum: - open - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214410,10 +214545,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214491,11 +214626,11 @@ x-webhooks: type: string enum: - reopen - alert: *758 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + alert: *759 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214694,10 +214829,10 @@ x-webhooks: enum: - fixed - open - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214775,7 +214910,7 @@ x-webhooks: type: string enum: - created - alert: &759 + alert: &760 type: object properties: number: *85 @@ -214881,10 +215016,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214965,11 +215100,11 @@ x-webhooks: type: string enum: - created - alert: *759 - installation: *694 - location: *760 - organization: *695 - repository: *696 + alert: *760 + installation: *695 + location: *761 + organization: *696 + repository: *697 sender: *19 required: - location @@ -215207,11 +215342,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *759 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + alert: *760 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -215289,11 +215424,11 @@ x-webhooks: type: string enum: - reopened - alert: *759 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + alert: *760 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -215371,11 +215506,11 @@ x-webhooks: type: string enum: - resolved - alert: *759 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + alert: *760 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -215453,11 +215588,11 @@ x-webhooks: type: string enum: - validated - alert: *759 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + alert: *760 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -215533,11 +215668,11 @@ x-webhooks: type: string enum: - published - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - security_advisory: &761 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + security_advisory: &762 description: The details of the security advisory, including summary, description, and severity. type: object @@ -215720,11 +215855,11 @@ x-webhooks: type: string enum: - updated - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - security_advisory: *761 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + security_advisory: *762 sender: *19 required: - action @@ -215797,10 +215932,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -215985,9 +216120,9 @@ x-webhooks: type: object properties: security_and_analysis: *275 - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: *337 sender: *19 required: @@ -216066,12 +216201,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: &762 + sponsorship: &763 type: object properties: created_at: @@ -216372,12 +216507,12 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: *762 + sponsorship: *763 required: - action - sponsorship @@ -216465,12 +216600,12 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: *762 + sponsorship: *763 required: - action - changes @@ -216547,17 +216682,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &763 + effective_date: &764 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: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: *762 + sponsorship: *763 required: - action - sponsorship @@ -216631,7 +216766,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &764 + changes: &765 type: object properties: tier: @@ -216675,13 +216810,13 @@ x-webhooks: - from required: - tier - effective_date: *763 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + effective_date: *764 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: *762 + sponsorship: *763 required: - action - changes @@ -216758,13 +216893,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *764 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + changes: *765 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: *762 + sponsorship: *763 required: - action - changes @@ -216838,10 +216973,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -216924,10 +217059,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -217220,6 +217355,9 @@ x-webhooks: nullable: true verified: type: boolean + verified_at: + type: string + nullable: true required: - verified - reason @@ -217343,15 +217481,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *693 + enterprise: *694 id: description: The unique identifier of the status. type: integer - installation: *694 + installation: *695 name: type: string - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 sha: description: The Commit SHA. @@ -217466,9 +217604,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *118 - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -217558,9 +217696,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *118 - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -217650,9 +217788,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *118 - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -217742,9 +217880,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *118 - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -217821,12 +217959,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - team: &765 + team: &766 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -218016,9 +218154,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: title: Repository description: A git repository @@ -218476,7 +218614,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *765 + team: *766 required: - action - team @@ -218552,9 +218690,9 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: title: Repository description: A git repository @@ -219012,7 +219150,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *765 + team: *766 required: - action - team @@ -219089,9 +219227,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: title: Repository description: A git repository @@ -219549,7 +219687,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *765 + team: *766 required: - action - team @@ -219693,9 +219831,9 @@ x-webhooks: - from required: - permissions - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: title: Repository description: A git repository @@ -220153,7 +220291,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *765 + team: *766 required: - action - changes @@ -220231,9 +220369,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: title: Repository description: A git repository @@ -220691,7 +220829,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *765 + team: *766 required: - action - team @@ -220767,10 +220905,10 @@ x-webhooks: type: string enum: - started - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -220843,16 +220981,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *693 + enterprise: *694 inputs: type: object nullable: true additionalProperties: true - installation: *694 - organization: *695 + installation: *695 + organization: *696 ref: type: string - repository: *696 + repository: *697 sender: *19 workflow: type: string @@ -220934,10 +221072,10 @@ x-webhooks: type: string enum: - completed - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 workflow_job: allOf: @@ -221253,10 +221391,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 workflow_job: allOf: @@ -221595,10 +221733,10 @@ x-webhooks: type: string enum: - queued - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 workflow_job: type: object @@ -221812,10 +221950,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 workflow_job: type: object @@ -222031,12 +222169,12 @@ x-webhooks: type: string enum: - completed - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - workflow: *715 + workflow: *716 workflow_run: title: Workflow Run type: object @@ -223035,12 +223173,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - workflow: *715 + workflow: *716 workflow_run: title: Workflow Run type: object @@ -224024,12 +224162,12 @@ x-webhooks: type: string enum: - requested - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - workflow: *715 + workflow: *716 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.deref.json b/descriptions/ghec/dereferenced/ghec.deref.json index e39b26a86..87184c174 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.json +++ b/descriptions/ghec/dereferenced/ghec.deref.json @@ -179772,7 +179772,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -192010,7 +192010,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -198444,6 +198444,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -214673,6 +214677,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -247648,6 +247656,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -253335,6 +253347,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -258475,6 +258491,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -259017,6 +259037,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -259583,6 +259607,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -261562,6 +261590,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -261619,7 +261651,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -261778,6 +261811,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -261835,7 +261872,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -262277,6 +262315,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -262319,7 +262361,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -284428,6 +284471,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -284487,7 +284534,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -284817,6 +284865,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -284877,7 +284929,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -286130,6 +286183,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -286422,6 +286479,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -341586,6 +341647,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -346359,6 +346424,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -377943,6 +378012,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -410031,6 +410104,272 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "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": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "description": "Service unavailable", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "code": { + "type": "string" + }, + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + } + } + } + } + } + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "backfill_scans": { + "type": "array", + "items": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, + "examples": { + "default": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -445996,6 +446335,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -1116220,6 +1116563,10 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ diff --git a/descriptions/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index 1569b7913..40f76799a 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.deref.yaml @@ -1012,7 +1012,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: - - &606 + - &607 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1649,7 +1649,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &616 + schema: &617 title: Scim Error description: Scim Error type: object @@ -15480,7 +15480,7 @@ paths: url: type: string format: uri - user: &655 + user: &656 title: Public User description: Public User type: object @@ -19893,7 +19893,7 @@ paths: type: array items: *52 examples: - default: &673 + default: &674 value: - login: github id: 1 @@ -21083,7 +21083,7 @@ paths: type: array items: *57 examples: - default: &667 + default: &668 value: total_count: 1 repositories: @@ -21848,7 +21848,7 @@ paths: type: array items: *159 examples: - default: &658 + default: &659 value: total_count: 1 repositories: @@ -32422,7 +32422,7 @@ paths: parameters: - *141 - *248 - - &672 + - &673 name: repo_name description: repo_name parameter in: path @@ -33728,7 +33728,7 @@ paths: - nuget - container - *141 - - &674 + - &675 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -33769,7 +33769,7 @@ paths: default: *255 '403': *29 '401': *25 - '400': &676 + '400': &677 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -38775,7 +38775,7 @@ paths: application/json: schema: type: array - items: &604 + items: &605 description: A repository security advisory. type: object properties: @@ -39066,7 +39066,7 @@ paths: - private_fork additionalProperties: false examples: - default: &605 + default: &606 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -40650,7 +40650,7 @@ paths: - updated_at - url examples: - default: &645 + default: &646 value: - author: login: octocat @@ -40898,7 +40898,7 @@ paths: application/json: schema: *307 examples: - default: &646 + default: &647 value: author: login: octocat @@ -41081,7 +41081,7 @@ paths: - updated_at - url examples: - default: &647 + default: &648 value: - author: login: octocat @@ -41307,7 +41307,7 @@ paths: application/json: schema: *310 examples: - default: &648 + default: &649 value: author: login: octocat @@ -42020,7 +42020,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &649 + response-if-user-is-a-team-maintainer: &650 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -42085,7 +42085,7 @@ paths: application/json: schema: *321 examples: - response-if-users-membership-with-team-is-now-pending: &650 + response-if-users-membership-with-team-is-now-pending: &651 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -42227,7 +42227,7 @@ paths: - updated_at - permissions examples: - default: &651 + default: &652 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -42304,7 +42304,7 @@ paths: application/json: schema: *322 examples: - default: &652 + default: &653 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -42507,7 +42507,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &653 + schema: &654 title: Team Repository description: A team's access to a repository. type: object @@ -43273,7 +43273,7 @@ paths: type: array items: *238 examples: - response-if-child-teams-exist: &654 + response-if-child-teams-exist: &655 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -47510,7 +47510,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -50384,6 +50384,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -51800,6 +51802,9 @@ paths: signature: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -54965,7 +54970,7 @@ paths: check. type: array items: *394 - deployment: &705 + deployment: &706 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -55879,7 +55884,7 @@ paths: type: string format: date-time nullable: true - head_commit: &731 + head_commit: &732 title: Simple Commit description: A commit. type: object @@ -59823,14 +59828,14 @@ paths: type: integer machines: type: array - items: &661 + items: &662 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *430 required: *431 examples: - default: &662 + default: &663 value: total_count: 2 machines: @@ -63113,7 +63118,7 @@ paths: application/json: schema: type: array - items: &609 + items: &610 title: Status description: The status of a commit. type: object @@ -64537,6 +64542,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true examples: example-for-updating-a-file: value: @@ -64580,6 +64588,7 @@ paths: reason: unsigned signature: payload: + verified_at: '201': description: Response content: @@ -64628,6 +64637,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *7 '422': *16 '409': @@ -64783,6 +64793,7 @@ paths: reason: unsigned signature: payload: + verified_at: '422': *16 '404': *7 '409': *146 @@ -69358,6 +69369,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -69404,6 +69418,7 @@ paths: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -69498,6 +69513,7 @@ paths: reason: unsigned signature: payload: + verified_at: '404': *7 '409': *146 x-github: @@ -70392,7 +70408,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &739 + last_response: &740 title: Hook Response type: object properties: @@ -71349,7 +71365,7 @@ paths: parameters: - *324 - *325 - - &685 + - &686 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -71783,7 +71799,7 @@ paths: type: array items: *505 examples: - default: &678 + default: &679 value: - id: 1 repository: @@ -75620,6 +75636,9 @@ paths: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -85536,7 +85555,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &760 + items: &761 type: object properties: type: @@ -85957,6 +85976,122 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + 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: + - *324 + - *325 + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': *96 + '200': + description: Response + content: + application/json: + schema: + type: object + properties: + incremental_scans: + type: array + items: &604 + description: Information on a single scan performed by secret + scanning on the repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or + "running" + completed_at: + type: string + format: date-time + description: The time that the scan was completed. Empty + if the scan is active + nullable: true + started_at: + type: string + format: date-time + description: The time that the scan was started + pattern_update_scans: + type: array + items: *604 + backfill_scans: + type: array + items: *604 + custom_pattern_backfill_scans: + type: array + items: + allOf: + - *604 + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern + scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, + one of "repository", "organization", or "enterprise" + examples: + default: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -86018,9 +86153,9 @@ paths: application/json: schema: type: array - items: *604 + items: *605 examples: - default: *605 + default: *606 '400': *15 '404': *7 x-github: @@ -86204,9 +86339,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: &607 + default: &608 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -86544,7 +86679,7 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: default: value: @@ -86693,15 +86828,15 @@ paths: parameters: - *324 - *325 - - *606 + - *607 responses: '200': description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *607 + default: *608 '403': *29 '404': *7 x-github: @@ -86727,7 +86862,7 @@ paths: parameters: - *324 - *325 - - *606 + - *607 requestBody: required: true content: @@ -86886,10 +87021,10 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *607 - add_credit: *607 + default: *608 + add_credit: *608 '403': *29 '404': *7 '422': @@ -86929,7 +87064,7 @@ paths: parameters: - *324 - *325 - - *606 + - *607 responses: '202': *147 '400': *15 @@ -86958,7 +87093,7 @@ paths: parameters: - *324 - *325 - - *606 + - *607 responses: '202': description: Response @@ -87102,7 +87237,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -87475,7 +87610,7 @@ paths: application/json: schema: type: array - items: *608 + items: *609 examples: default: value: @@ -87563,7 +87698,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: default: value: @@ -87657,7 +87792,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &610 + schema: &611 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -87752,7 +87887,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *611 examples: default: value: @@ -87889,7 +88024,7 @@ paths: application/json: schema: type: array - items: &611 + items: &612 title: Tag protection description: Tag protection type: object @@ -87965,7 +88100,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -88113,7 +88248,7 @@ paths: description: Response content: application/json: - schema: &612 + schema: &613 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -88125,7 +88260,7 @@ paths: required: - names examples: - default: &613 + default: &614 value: names: - octocat @@ -88180,9 +88315,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *613 + default: *614 '404': *7 '422': *8 x-github: @@ -88205,7 +88340,7 @@ paths: parameters: - *324 - *325 - - &614 + - &615 name: per description: The time frame to display results for. in: query @@ -88234,7 +88369,7 @@ paths: example: 128 clones: type: array - items: &615 + items: &616 title: Traffic type: object properties: @@ -88475,7 +88610,7 @@ paths: parameters: - *324 - *325 - - *614 + - *615 responses: '200': description: Response @@ -88494,7 +88629,7 @@ paths: example: 3782 views: type: array - items: *615 + items: *616 required: - uniques - count @@ -89166,7 +89301,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &623 + - &624 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -89175,7 +89310,7 @@ paths: schema: type: string example: members - - &628 + - &629 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -89186,7 +89321,7 @@ paths: default: 1 format: int32 example: 1 - - &629 + - &630 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -89228,7 +89363,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &617 + items: &618 allOf: - type: object required: @@ -89303,7 +89438,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: &630 + meta: &631 type: object description: The metadata associated with the creation/updates to the user. @@ -89363,31 +89498,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &618 + '400': &619 description: Bad request content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 - '401': &619 + schema: *617 + '401': &620 description: Authorization failure - '403': &620 + '403': &621 description: Permission denied - '429': &621 + '429': &622 description: Too many requests content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 - '500': &622 + schema: *617 + '500': &623 description: Internal server error content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 + schema: *617 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89411,7 +89546,7 @@ paths: required: true content: application/json: - schema: &626 + schema: &627 type: object required: - schemas @@ -89467,9 +89602,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *617 + schema: *618 examples: - group: &624 + group: &625 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -89488,13 +89623,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': *618 - '401': *619 - '403': *620 - '409': &627 + '400': *619 + '401': *620 + '403': *621 + '409': &628 description: Duplicate record detected - '429': *621 - '500': *622 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89511,7 +89646,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: - - &625 + - &626 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -89519,22 +89654,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *623 + - *624 - *40 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *617 + schema: *618 examples: - default: *624 - '400': *618 - '401': *619 - '403': *620 + default: *625 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '429': *621 - '500': *622 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89553,13 +89688,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: - - *625 + - *626 - *40 requestBody: required: true content: application/json: - schema: *626 + schema: *627 examples: group: summary: Group @@ -89585,17 +89720,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *617 + schema: *618 examples: - group: *624 - groupWithMembers: *624 - '400': *618 - '401': *619 - '403': *620 + group: *625 + groupWithMembers: *625 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '409': *627 - '429': *621 - '500': *622 + '409': *628 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89619,13 +89754,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: - - *625 + - *626 - *40 requestBody: required: true content: application/json: - schema: &637 + schema: &638 type: object required: - Operations @@ -89685,17 +89820,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *617 + schema: *618 examples: - updateGroup: *624 - addMembers: *624 - '400': *618 - '401': *619 - '403': *620 + updateGroup: *625 + addMembers: *625 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '409': *627 - '429': *621 - '500': *622 + '409': *628 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89711,17 +89846,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: - - *625 + - *626 - *40 responses: '204': description: Group was deleted, no content - '400': *618 - '401': *619 - '403': *620 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '429': *621 - '500': *622 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89755,8 +89890,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *628 - *629 + - *630 - *40 responses: '200': @@ -89789,7 +89924,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &632 + items: &633 allOf: - type: object required: @@ -89868,7 +90003,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &631 + roles: &632 type: array description: The roles assigned to the user. items: @@ -89924,7 +90059,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *630 + meta: *631 startIndex: type: integer description: A starting index for the returned page @@ -89961,11 +90096,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *618 - '401': *619 - '403': *620 - '429': *621 - '500': *622 + '400': *619 + '401': *620 + '403': *621 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -89989,7 +90124,7 @@ paths: required: true content: application/json: - schema: &635 + schema: &636 type: object required: - schemas @@ -90071,9 +90206,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *631 + roles: *632 examples: - user: &636 + user: &637 summary: User value: schemas: @@ -90120,9 +90255,9 @@ paths: description: User has been created content: application/scim+json: - schema: *632 + schema: *633 examples: - user: &633 + user: &634 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -90148,13 +90283,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: *633 - '400': *618 - '401': *619 - '403': *620 - '409': *627 - '429': *621 - '500': *622 + enterpriseOwner: *634 + '400': *619 + '401': *620 + '403': *621 + '409': *628 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90171,7 +90306,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: - - &634 + - &635 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -90184,15 +90319,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *632 + schema: *633 examples: - default: *633 - '400': *618 - '401': *619 - '403': *620 + default: *634 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '429': *621 - '500': *622 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90214,30 +90349,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: - - *634 + - *635 - *40 requestBody: required: true content: application/json: - schema: *635 + schema: *636 examples: - user: *636 + user: *637 responses: '200': description: User was updated content: application/scim+json: - schema: *632 + schema: *633 examples: - user: *633 - '400': *618 - '401': *619 - '403': *620 + user: *634 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '409': *627 - '429': *621 - '500': *622 + '409': *628 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90272,13 +90407,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: - - *634 + - *635 - *40 requestBody: required: true content: application/json: - schema: *637 + schema: *638 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -90318,18 +90453,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *632 - examples: - userMultiValuedProperties: *633 - userSingleValuedProperties: *633 - disableUser: *633 - '400': *618 - '401': *619 - '403': *620 + schema: *633 + examples: + userMultiValuedProperties: *634 + userSingleValuedProperties: *634 + disableUser: *634 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '409': *627 - '429': *621 - '500': *622 + '409': *628 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90349,17 +90484,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: - - *634 + - *635 - *40 responses: '204': description: User was deleted, no content - '400': *618 - '401': *619 - '403': *620 + '400': *619 + '401': *620 + '403': *621 '404': *7 - '429': *621 - '500': *622 + '429': *622 + '500': *623 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -90446,7 +90581,7 @@ paths: example: 1 Resources: type: array - items: &638 + items: &639 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -90677,22 +90812,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &639 + '404': &640 description: Resource not found content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 - '403': &640 + schema: *617 + '403': &641 description: Forbidden content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 - '400': *618 - '429': *621 + schema: *617 + '400': *619 + '429': *622 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -90718,9 +90853,9 @@ paths: description: Response content: application/scim+json: - schema: *638 + schema: *639 examples: - default: &641 + default: &642 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -90743,17 +90878,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *639 - '403': *640 - '500': *622 + '404': *640 + '403': *641 + '500': *623 '409': description: Conflict content: application/json: - schema: *616 + schema: *617 application/scim+json: - schema: *616 - '400': *618 + schema: *617 + '400': *619 requestBody: required: true content: @@ -90846,17 +90981,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *141 - - *634 + - *635 responses: '200': description: Response content: application/scim+json: - schema: *638 + schema: *639 examples: - default: *641 - '404': *639 - '403': *640 + default: *642 + '404': *640 + '403': *641 '304': *37 x-github: githubCloudOnly: true @@ -90880,18 +91015,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *141 - - *634 + - *635 responses: '200': description: Response content: application/scim+json: - schema: *638 + schema: *639 examples: - default: *641 + default: *642 '304': *37 - '404': *639 - '403': *640 + '404': *640 + '403': *641 requestBody: required: true content: @@ -91000,19 +91135,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *141 - - *634 + - *635 responses: '200': description: Response content: application/scim+json: - schema: *638 + schema: *639 examples: - default: *641 + default: *642 '304': *37 - '404': *639 - '403': *640 - '400': *618 + '404': *640 + '403': *641 + '400': *619 '429': description: Response content: @@ -91103,12 +91238,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *141 - - *634 + - *635 responses: '204': description: Response - '404': *639 - '403': *640 + '404': *640 + '403': *641 '304': *37 x-github: githubCloudOnly: true @@ -91241,7 +91376,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &642 + text_matches: &643 title: Search Result Text Matches type: array items: @@ -91404,7 +91539,7 @@ paths: enum: - author-date - committer-date - - &643 + - &644 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 @@ -91532,7 +91667,7 @@ paths: type: number node_id: type: string - text_matches: *642 + text_matches: *643 required: - sha - node_id @@ -91725,7 +91860,7 @@ paths: - interactions - created - updated - - *643 + - *644 - *18 - *20 responses: @@ -91845,7 +91980,7 @@ paths: type: string format: date-time nullable: true - text_matches: *642 + text_matches: *643 pull_request: type: object properties: @@ -92069,7 +92204,7 @@ paths: enum: - created - updated - - *643 + - *644 - *18 - *20 responses: @@ -92113,7 +92248,7 @@ paths: nullable: true score: type: number - text_matches: *642 + text_matches: *643 required: - id - node_id @@ -92199,7 +92334,7 @@ paths: - forks - help-wanted-issues - updated - - *643 + - *644 - *18 - *20 responses: @@ -92438,7 +92573,7 @@ paths: - admin - pull - push - text_matches: *642 + text_matches: *643 temp_clone_token: type: string allow_merge_commit: @@ -92739,7 +92874,7 @@ paths: type: string format: uri nullable: true - text_matches: *642 + text_matches: *643 related: type: array nullable: true @@ -92932,7 +93067,7 @@ paths: - followers - repositories - joined - - *643 + - *644 - *18 - *20 responses: @@ -93036,7 +93171,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *642 + text_matches: *643 blog: type: string nullable: true @@ -93115,7 +93250,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &644 + - &645 name: team_id description: The unique identifier of the team. in: path @@ -93156,7 +93291,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *644 + - *645 requestBody: required: true content: @@ -93256,7 +93391,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *644 + - *645 responses: '204': description: Response @@ -93287,7 +93422,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *644 + - *645 - *78 - *18 - *20 @@ -93300,7 +93435,7 @@ paths: type: array items: *307 examples: - default: *645 + default: *646 headers: Link: *39 x-github: @@ -93329,7 +93464,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *644 + - *645 requestBody: required: true content: @@ -93392,7 +93527,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *644 + - *645 - *309 responses: '200': @@ -93426,7 +93561,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *644 + - *645 - *309 requestBody: required: false @@ -93452,7 +93587,7 @@ paths: application/json: schema: *307 examples: - default: *646 + default: *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93477,7 +93612,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *644 + - *645 - *309 responses: '204': @@ -93507,7 +93642,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *644 + - *645 - *309 - *78 - *18 @@ -93521,7 +93656,7 @@ paths: type: array items: *310 examples: - default: *647 + default: *648 headers: Link: *39 x-github: @@ -93550,7 +93685,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *644 + - *645 - *309 requestBody: required: true @@ -93602,7 +93737,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *644 + - *645 - *309 - *312 responses: @@ -93637,7 +93772,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *644 + - *645 - *309 - *312 requestBody: @@ -93663,7 +93798,7 @@ paths: application/json: schema: *310 examples: - default: *648 + default: *649 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93688,7 +93823,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *644 + - *645 - *309 - *312 responses: @@ -93719,7 +93854,7 @@ 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: - - *644 + - *645 - *309 - *312 - name: content @@ -93778,7 +93913,7 @@ 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: - - *644 + - *645 - *309 - *312 requestBody: @@ -93840,7 +93975,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *644 + - *645 - *309 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -93898,7 +94033,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *644 + - *645 - *309 requestBody: required: true @@ -93957,7 +94092,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *644 + - *645 - *18 - *20 responses: @@ -93995,7 +94130,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *644 + - *645 - name: role description: Filters members returned by their role in the team. in: query @@ -94046,7 +94181,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *644 + - *645 - *181 responses: '204': @@ -94083,7 +94218,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *644 + - *645 - *181 responses: '204': @@ -94123,7 +94258,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *644 + - *645 - *181 responses: '204': @@ -94160,7 +94295,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *181 responses: '200': @@ -94169,7 +94304,7 @@ paths: application/json: schema: *321 examples: - response-if-user-is-a-team-maintainer: *649 + response-if-user-is-a-team-maintainer: *650 '404': *7 x-github: githubCloudOnly: false @@ -94202,7 +94337,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: - - *644 + - *645 - *181 requestBody: required: false @@ -94230,7 +94365,7 @@ paths: application/json: schema: *321 examples: - response-if-users-membership-with-team-is-now-pending: *650 + response-if-users-membership-with-team-is-now-pending: *651 '403': description: Forbidden if team synchronization is set up '422': @@ -94264,7 +94399,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: - - *644 + - *645 - *181 responses: '204': @@ -94294,7 +94429,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *644 + - *645 - *18 - *20 responses: @@ -94306,7 +94441,7 @@ paths: type: array items: *322 examples: - default: *651 + default: *652 headers: Link: *39 '404': *7 @@ -94333,7 +94468,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *644 + - *645 - *323 responses: '200': @@ -94342,7 +94477,7 @@ paths: application/json: schema: *322 examples: - default: *652 + default: *653 '404': description: Not Found if project is not managed by this team x-github: @@ -94367,7 +94502,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *644 + - *645 - *323 requestBody: required: false @@ -94436,7 +94571,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *644 + - *645 - *323 responses: '204': @@ -94464,7 +94599,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *644 + - *645 - *18 - *20 responses: @@ -94506,7 +94641,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *644 + - *645 - *324 - *325 responses: @@ -94514,7 +94649,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *653 + schema: *654 examples: alternative-response-with-extra-repository-information: value: @@ -94665,7 +94800,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *644 + - *645 - *324 - *325 requestBody: @@ -94717,7 +94852,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *644 + - *645 - *324 - *325 responses: @@ -94748,7 +94883,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *644 + - *645 responses: '200': description: Response @@ -94783,7 +94918,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: - - *644 + - *645 requestBody: required: true content: @@ -94871,7 +95006,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *644 + - *645 - *18 - *20 responses: @@ -94883,7 +95018,7 @@ paths: type: array items: *238 examples: - response-if-child-teams-exist: *654 + response-if-child-teams-exist: *655 headers: Link: *39 '404': *7 @@ -94916,7 +95051,7 @@ paths: application/json: schema: oneOf: - - &656 + - &657 title: Private User description: Private User type: object @@ -95119,7 +95254,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *655 + - *656 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -95272,7 +95407,7 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: default: value: @@ -95670,7 +95805,7 @@ paths: type: integer secrets: type: array - items: &657 + items: &658 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -95786,7 +95921,7 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: default: value: @@ -95932,7 +96067,7 @@ paths: type: array items: *159 examples: - default: *658 + default: *659 '401': *25 '403': *29 '404': *7 @@ -96199,7 +96334,7 @@ paths: description: Response content: application/json: - schema: &659 + schema: &660 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -96240,7 +96375,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &660 + default: &661 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -96285,9 +96420,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: *660 + default: *661 '404': *7 x-github: githubCloudOnly: false @@ -96324,9 +96459,9 @@ paths: type: integer machines: type: array - items: *661 + items: *662 examples: - default: *662 + default: *663 '304': *37 '500': *84 '401': *25 @@ -97265,7 +97400,7 @@ paths: type: array items: *254 examples: - default: &675 + default: &676 value: - id: 197 name: hello_docker @@ -97366,7 +97501,7 @@ paths: application/json: schema: type: array - items: &663 + items: &664 title: Email description: Email type: object @@ -97431,9 +97566,9 @@ paths: application/json: schema: type: array - items: *663 + items: *664 examples: - default: &677 + default: &678 value: - email: octocat@github.com verified: true @@ -97508,7 +97643,7 @@ paths: application/json: schema: type: array - items: *663 + items: *664 examples: default: value: @@ -97764,7 +97899,7 @@ paths: application/json: schema: type: array - items: &664 + items: &665 title: GPG Key description: A unique encryption key type: object @@ -97895,7 +98030,7 @@ paths: - subkeys - revoked examples: - default: &688 + default: &689 value: - id: 3 name: Octocat's GPG Key @@ -97980,9 +98115,9 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: &665 + default: &666 value: id: 3 name: Octocat's GPG Key @@ -98039,7 +98174,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: - - &666 + - &667 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -98051,9 +98186,9 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: - default: *665 + default: *666 '404': *7 '304': *37 '403': *29 @@ -98076,7 +98211,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: - - *666 + - *667 responses: '204': description: Response @@ -98267,7 +98402,7 @@ paths: type: array items: *57 examples: - default: *667 + default: *668 headers: Link: *39 '404': *7 @@ -98531,7 +98666,7 @@ paths: application/json: schema: type: array - items: &668 + items: &669 title: Key description: Key type: object @@ -98628,9 +98763,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: &669 + default: &670 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98669,9 +98804,9 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: - default: *669 + default: *670 '404': *7 '304': *37 '403': *29 @@ -98727,7 +98862,7 @@ paths: application/json: schema: type: array - items: &670 + items: &671 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -98795,7 +98930,7 @@ paths: - account - plan examples: - default: &671 + default: &672 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -98857,9 +98992,9 @@ paths: application/json: schema: type: array - items: *670 + items: *671 examples: - default: *671 + default: *672 headers: Link: *39 '304': *37 @@ -99854,7 +99989,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *248 - - *672 + - *673 responses: '204': description: Response @@ -99927,7 +100062,7 @@ paths: type: array items: *52 examples: - default: *673 + default: *674 headers: Link: *39 '304': *37 @@ -99969,7 +100104,7 @@ paths: - docker - nuget - container - - *674 + - *675 - *20 - *18 responses: @@ -99981,8 +100116,8 @@ paths: type: array items: *254 examples: - default: *675 - '400': *676 + default: *676 + '400': *677 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100011,7 +100146,7 @@ paths: application/json: schema: *254 examples: - default: &689 + default: &690 value: id: 40201 name: octo-name @@ -100461,9 +100596,9 @@ paths: application/json: schema: type: array - items: *663 + items: *664 examples: - default: *677 + default: *678 headers: Link: *39 '304': *37 @@ -100576,7 +100711,7 @@ paths: type: array items: *57 examples: - default: &684 + default: &685 summary: Default response value: - id: 1296269 @@ -100920,7 +101055,7 @@ paths: type: array items: *505 examples: - default: *678 + default: *679 headers: Link: *39 '304': *37 @@ -100999,7 +101134,7 @@ paths: application/json: schema: type: array - items: &679 + items: &680 title: Social account description: Social media account type: object @@ -101014,7 +101149,7 @@ paths: - provider - url examples: - default: &680 + default: &681 value: - provider: twitter url: https://twitter.com/github @@ -101076,9 +101211,9 @@ paths: application/json: schema: type: array - items: *679 + items: *680 examples: - default: *680 + default: *681 '422': *16 '304': *37 '404': *7 @@ -101165,7 +101300,7 @@ paths: application/json: schema: type: array - items: &681 + items: &682 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -101185,7 +101320,7 @@ paths: - title - created_at examples: - default: &690 + default: &691 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -101251,9 +101386,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: - default: &682 + default: &683 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -101284,7 +101419,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: - - &683 + - &684 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -101296,9 +101431,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: - default: *682 + default: *683 '404': *7 '304': *37 '403': *29 @@ -101321,7 +101456,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: - - *683 + - *684 responses: '204': description: Response @@ -101350,7 +101485,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: - - &691 + - &692 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 @@ -101375,11 +101510,11 @@ paths: type: array items: *57 examples: - default-response: *684 + default-response: *685 application/vnd.github.v3.star+json: schema: type: array - items: &692 + items: &693 title: Starred Repository description: Starred Repository type: object @@ -101746,10 +101881,10 @@ paths: application/json: schema: oneOf: + - *657 - *656 - - *655 examples: - default-response: &686 + default-response: &687 summary: Default response value: login: octocat @@ -101784,7 +101919,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &687 + response-with-git-hub-plan-information: &688 summary: Response with GitHub plan information value: login: octocat @@ -101844,7 +101979,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *685 + - *686 - *18 responses: '200': @@ -101891,11 +102026,11 @@ paths: application/json: schema: oneOf: + - *657 - *656 - - *655 examples: - default-response: *686 - response-with-git-hub-plan-information: *687 + default-response: *687 + response-with-git-hub-plan-information: *688 '404': *7 x-github: githubCloudOnly: false @@ -102057,7 +102192,7 @@ paths: type: array items: *254 examples: - default: *675 + default: *676 '403': *29 '401': *25 x-github: @@ -102461,9 +102596,9 @@ paths: application/json: schema: type: array - items: *664 + items: *665 examples: - default: *688 + default: *689 headers: Link: *39 x-github: @@ -102645,7 +102780,7 @@ paths: type: array items: *52 examples: - default: *673 + default: *674 headers: Link: *39 x-github: @@ -102684,7 +102819,7 @@ paths: - docker - nuget - container - - *674 + - *675 - *181 - *20 - *18 @@ -102697,10 +102832,10 @@ paths: type: array items: *254 examples: - default: *675 + default: *676 '403': *29 '401': *25 - '400': *676 + '400': *677 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102730,7 +102865,7 @@ paths: application/json: schema: *254 examples: - default: *689 + default: *690 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103413,9 +103548,9 @@ paths: application/json: schema: type: array - items: *679 + items: *680 examples: - default: *680 + default: *681 headers: Link: *39 x-github: @@ -103445,9 +103580,9 @@ paths: application/json: schema: type: array - items: *681 + items: *682 examples: - default: *690 + default: *691 headers: Link: *39 x-github: @@ -103472,7 +103607,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *181 - - *691 + - *692 - *78 - *18 - *20 @@ -103484,11 +103619,11 @@ paths: schema: anyOf: - type: array - items: *692 + items: *693 - type: array items: *57 examples: - default-response: *684 + default-response: *685 headers: Link: *39 x-github: @@ -103647,7 +103782,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &693 + enterprise: &694 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -103705,7 +103840,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &694 + installation: &695 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -103724,7 +103859,7 @@ x-webhooks: required: - id - node_id - organization: &695 + organization: &696 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -103784,13 +103919,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &696 + repository: &697 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &733 + properties: &734 id: description: Unique identifier of the repository example: 42 @@ -104473,7 +104608,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &734 + required: &735 - archive_url - assignees_url - blobs_url @@ -104624,10 +104759,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -104703,11 +104838,11 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - rule: &697 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + rule: &698 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) @@ -104930,11 +105065,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - rule: *697 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + rule: *698 sender: *19 required: - action @@ -105117,11 +105252,11 @@ x-webhooks: - everyone required: - from - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - rule: *697 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + rule: *698 sender: *19 required: - action @@ -105194,7 +105329,7 @@ x-webhooks: required: true content: application/json: - schema: &700 + schema: &701 title: Exemption request cancellation event type: object properties: @@ -105202,11 +105337,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - exemption_request: &698 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + exemption_request: &699 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -105356,7 +105491,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &699 + items: &700 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -105461,7 +105596,7 @@ x-webhooks: required: true content: application/json: - schema: &701 + schema: &702 title: Exemption request completed event type: object properties: @@ -105469,11 +105604,11 @@ x-webhooks: type: string enum: - completed - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - exemption_request: *698 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + exemption_request: *699 sender: *19 required: - action @@ -105545,7 +105680,7 @@ x-webhooks: required: true content: application/json: - schema: &702 + schema: &703 title: Exemption request created event type: object properties: @@ -105553,11 +105688,11 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - exemption_request: *698 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + exemption_request: *699 sender: *19 required: - action @@ -105629,7 +105764,7 @@ x-webhooks: required: true content: application/json: - schema: &703 + schema: &704 title: Exemption response dismissed event type: object properties: @@ -105637,12 +105772,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - exemption_request: *698 - exemption_response: *699 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + exemption_request: *699 + exemption_response: *700 sender: *19 required: - action @@ -105716,7 +105851,7 @@ x-webhooks: required: true content: application/json: - schema: &704 + schema: &705 title: Exemption response submitted event type: object properties: @@ -105724,12 +105859,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - exemption_request: *698 - exemption_response: *699 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + exemption_request: *699 + exemption_response: *700 sender: *19 required: - action @@ -105802,7 +105937,7 @@ x-webhooks: required: true content: application/json: - schema: *700 + schema: *701 responses: '200': description: Return a 200 status to indicate that the data was received @@ -105869,7 +106004,7 @@ x-webhooks: required: true content: application/json: - schema: *701 + schema: *702 responses: '200': description: Return a 200 status to indicate that the data was received @@ -105936,7 +106071,7 @@ x-webhooks: required: true content: application/json: - schema: *702 + schema: *703 responses: '200': description: Return a 200 status to indicate that the data was received @@ -106003,7 +106138,7 @@ x-webhooks: required: true content: application/json: - schema: *703 + schema: *704 responses: '200': description: Return a 200 status to indicate that the data was received @@ -106071,7 +106206,7 @@ x-webhooks: required: true content: application/json: - schema: *704 + schema: *705 responses: '200': description: Return a 200 status to indicate that the data was received @@ -106149,7 +106284,7 @@ x-webhooks: type: string enum: - completed - check_run: &706 + check_run: &707 title: CheckRun description: A check performed on the code of a given code change type: object @@ -106250,7 +106385,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *705 + deployment: *706 details_url: example: https://example.com type: string @@ -106335,9 +106470,9 @@ x-webhooks: - output - app - pull_requests - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - check_run @@ -106730,10 +106865,10 @@ x-webhooks: type: string enum: - created - check_run: *706 - installation: *694 - organization: *695 - repository: *696 + check_run: *707 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - check_run @@ -107129,10 +107264,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *706 - installation: *694 - organization: *695 - repository: *696 + check_run: *707 + installation: *695 + organization: *696 + repository: *697 requested_action: description: The action requested by the user. type: object @@ -107537,10 +107672,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *706 - installation: *694 - organization: *695 - repository: *696 + check_run: *707 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - check_run @@ -108517,10 +108652,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -109190,10 +109325,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -109857,10 +109992,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -110160,20 +110295,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &707 + commit_oid: &708 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: *693 - installation: *694 - organization: *695 - ref: &708 + enterprise: *694 + installation: *695 + organization: *696 + ref: &709 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: *696 + repository: *697 sender: *19 required: - action @@ -110491,12 +110626,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *707 - enterprise: *693 - installation: *694 - organization: *695 - ref: *708 - repository: *696 + commit_oid: *708 + enterprise: *694 + installation: *695 + organization: *696 + ref: *709 + repository: *697 sender: *19 required: - action @@ -110753,12 +110888,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *707 - enterprise: *693 - installation: *694 - organization: *695 - ref: *708 - repository: *696 + commit_oid: *708 + enterprise: *694 + installation: *695 + organization: *696 + ref: *709 + repository: *697 sender: *19 required: - action @@ -111079,12 +111214,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *707 - enterprise: *693 - installation: *694 - organization: *695 - ref: *708 - repository: *696 + commit_oid: *708 + enterprise: *694 + installation: *695 + organization: *696 + ref: *709 + repository: *697 sender: *19 required: - action @@ -111341,16 +111476,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *696 + repository: *697 sender: *19 required: - action @@ -111576,12 +111711,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *707 - enterprise: *693 - installation: *694 - organization: *695 - ref: *708 - repository: *696 + commit_oid: *708 + enterprise: *694 + installation: *695 + organization: *696 + ref: *709 + repository: *697 sender: *19 required: - action @@ -111838,10 +111973,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -111921,18 +112056,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *695 - pusher_type: &709 + organization: *696 + pusher_type: &710 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &710 + ref: &711 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -111942,7 +112077,7 @@ x-webhooks: enum: - tag - branch - repository: *696 + repository: *697 sender: *19 required: - ref @@ -112025,9 +112160,9 @@ x-webhooks: enum: - created definition: *268 - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 sender: *19 required: - action @@ -112112,9 +112247,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 sender: *19 required: - action @@ -112192,9 +112327,9 @@ x-webhooks: enum: - updated definition: *268 - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 sender: *19 required: - action @@ -112271,10 +112406,10 @@ x-webhooks: type: string enum: - updated - enterprise: *693 - installation: *694 - repository: *696 - organization: *695 + enterprise: *694 + installation: *695 + repository: *697 + organization: *696 sender: *19 new_property_values: type: array @@ -112359,18 +112494,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *693 - installation: *694 - organization: *695 - pusher_type: *709 - ref: *710 + enterprise: *694 + installation: *695 + organization: *696 + pusher_type: *710 + ref: *711 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *696 + repository: *697 sender: *19 required: - ref @@ -112455,10 +112590,10 @@ x-webhooks: enum: - auto_dismissed alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112543,10 +112678,10 @@ x-webhooks: enum: - auto_reopened alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112631,10 +112766,10 @@ x-webhooks: enum: - created alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112717,10 +112852,10 @@ x-webhooks: enum: - dismissed alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112803,10 +112938,10 @@ x-webhooks: enum: - fixed alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112890,10 +113025,10 @@ x-webhooks: enum: - reintroduced alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -112976,10 +113111,10 @@ x-webhooks: enum: - reopened alert: *461 - installation: *694 - organization: *695 - enterprise: *693 - repository: *696 + installation: *695 + organization: *696 + enterprise: *694 + repository: *697 sender: *19 required: - action @@ -113056,9 +113191,9 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - key: &711 + enterprise: *694 + installation: *695 + key: &712 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -113094,8 +113229,8 @@ x-webhooks: - verified - created_at - read_only - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -113172,11 +113307,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - key: *711 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + key: *712 + organization: *696 + repository: *697 sender: *19 required: - action @@ -113737,12 +113872,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - workflow: &715 + workflow: &716 title: Workflow type: object nullable: true @@ -114472,9 +114607,9 @@ x-webhooks: pull_requests: type: array items: *551 - repository: *696 - organization: *695 - installation: *694 + repository: *697 + organization: *696 + installation: *695 sender: *19 responses: '200': @@ -114545,7 +114680,7 @@ x-webhooks: type: string enum: - approved - approver: &712 + approver: &713 type: object properties: avatar_url: @@ -114588,11 +114723,11 @@ x-webhooks: type: string comment: type: string - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - reviewers: &713 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + reviewers: &714 type: array items: type: object @@ -114671,7 +114806,7 @@ x-webhooks: sender: *19 since: type: string - workflow_job_run: &714 + workflow_job_run: &715 type: object properties: conclusion: @@ -115402,18 +115537,18 @@ x-webhooks: type: string enum: - rejected - approver: *712 + approver: *713 comment: type: string - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - reviewers: *713 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + reviewers: *714 sender: *19 since: type: string - workflow_job_run: *714 + workflow_job_run: *715 workflow_job_runs: type: array items: @@ -116117,13 +116252,13 @@ x-webhooks: type: string enum: - requested - enterprise: *693 + enterprise: *694 environment: type: string - installation: *694 - organization: *695 - repository: *696 - requestor: &720 + installation: *695 + organization: *696 + repository: *697 + requestor: &721 title: User type: object nullable: true @@ -118022,12 +118157,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - workflow: *715 + workflow: *716 workflow_run: title: Deployment Workflow Run type: object @@ -118707,7 +118842,7 @@ x-webhooks: type: string enum: - answered - answer: &718 + answer: &719 type: object properties: author_association: @@ -118864,7 +118999,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &716 + discussion: &717 title: Discussion description: A Discussion in a repository. type: object @@ -119172,10 +119307,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119302,11 +119437,11 @@ x-webhooks: - from required: - category - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119389,11 +119524,11 @@ x-webhooks: type: string enum: - closed - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119475,7 +119610,7 @@ x-webhooks: type: string enum: - created - comment: &717 + comment: &718 type: object properties: author_association: @@ -119632,11 +119767,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119719,12 +119854,12 @@ x-webhooks: type: string enum: - deleted - comment: *717 - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + comment: *718 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119819,12 +119954,12 @@ x-webhooks: - from required: - body - comment: *717 - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + comment: *718 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119908,11 +120043,11 @@ x-webhooks: type: string enum: - created - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -119994,11 +120129,11 @@ x-webhooks: type: string enum: - deleted - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120098,11 +120233,11 @@ x-webhooks: type: string required: - from - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120184,10 +120319,10 @@ x-webhooks: type: string enum: - labeled - discussion: *716 - enterprise: *693 - installation: *694 - label: &719 + discussion: *717 + enterprise: *694 + installation: *695 + label: &720 title: Label type: object properties: @@ -120219,8 +120354,8 @@ x-webhooks: - color - default - description - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120303,11 +120438,11 @@ x-webhooks: type: string enum: - locked - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120389,11 +120524,11 @@ x-webhooks: type: string enum: - pinned - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120475,11 +120610,11 @@ x-webhooks: type: string enum: - reopened - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120564,16 +120699,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *716 - new_repository: *696 + new_discussion: *717 + new_repository: *697 required: - new_discussion - new_repository - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120656,10 +120791,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *716 - old_answer: *718 - organization: *695 - repository: *696 + discussion: *717 + old_answer: *719 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120741,12 +120876,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *716 - enterprise: *693 - installation: *694 - label: *719 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120829,11 +120964,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120915,11 +121050,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *716 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + discussion: *717 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -120992,7 +121127,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *693 + enterprise: *694 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -121652,9 +121787,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - forkee @@ -121800,9 +121935,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pages: description: The pages that were updated. type: array @@ -121839,7 +121974,7 @@ x-webhooks: - action - sha - html_url - repository: *696 + repository: *697 sender: *19 required: - pages @@ -121915,10 +122050,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories: &721 + organization: *696 + repositories: &722 description: An array of repository objects that the installation can access. type: array @@ -121944,8 +122079,8 @@ x-webhooks: - name - full_name - private - repository: *696 - requester: *720 + repository: *697 + requester: *721 sender: *19 required: - action @@ -122020,11 +122155,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories: *721 - repository: *696 + organization: *696 + repositories: *722 + repository: *697 requester: nullable: true sender: *19 @@ -122100,11 +122235,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories: *721 - repository: *696 + organization: *696 + repositories: *722 + repository: *697 requester: nullable: true sender: *19 @@ -122180,10 +122315,10 @@ x-webhooks: type: string enum: - added - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories_added: &722 + organization: *696 + repositories_added: &723 description: An array of repository objects, which were added to the installation. type: array @@ -122229,15 +122364,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *696 - repository_selection: &723 + repository: *697 + repository_selection: &724 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *720 + requester: *721 sender: *19 required: - action @@ -122316,10 +122451,10 @@ x-webhooks: type: string enum: - removed - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories_added: *722 + organization: *696 + repositories_added: *723 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -122346,9 +122481,9 @@ x-webhooks: - name - full_name - private - repository: *696 - repository_selection: *723 - requester: *720 + repository: *697 + repository_selection: *724 + requester: *721 sender: *19 required: - action @@ -122427,11 +122562,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories: *721 - repository: *696 + organization: *696 + repositories: *722 + repository: *697 requester: nullable: true sender: *19 @@ -122610,10 +122745,10 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 target_type: type: string @@ -122692,11 +122827,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *693 + enterprise: *694 installation: *22 - organization: *695 - repositories: *721 - repository: *696 + organization: *696 + repositories: *722 + repository: *697 requester: nullable: true sender: *19 @@ -122948,8 +123083,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -124090,8 +124225,8 @@ x-webhooks: - state - locked - assignee - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -124171,7 +124306,7 @@ x-webhooks: type: string enum: - deleted - comment: &724 + comment: &725 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -124336,8 +124471,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -125476,8 +125611,8 @@ x-webhooks: - state - locked - assignee - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -125557,7 +125692,7 @@ x-webhooks: type: string enum: - edited - changes: &752 + changes: &753 description: The changes to the comment. type: object properties: @@ -125569,9 +125704,9 @@ x-webhooks: type: string required: - from - comment: *724 - enterprise: *693 - installation: *694 + comment: *725 + enterprise: *694 + installation: *695 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -126711,8 +126846,8 @@ x-webhooks: - state - locked - assignee - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -126794,10 +126929,10 @@ x-webhooks: type: string enum: - assigned - assignee: *720 - enterprise: *693 - installation: *694 - issue: &727 + assignee: *721 + enterprise: *694 + installation: *695 + issue: &728 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -127701,8 +127836,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -127782,8 +127917,8 @@ x-webhooks: type: string enum: - closed - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -128827,8 +128962,8 @@ x-webhooks: required: - state - closed_at - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -128907,8 +129042,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -129805,8 +129940,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -129885,8 +130020,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -130786,7 +130921,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &725 + milestone: &726 title: Milestone description: A collection of related issues and pull requests. type: object @@ -130924,8 +131059,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -131024,8 +131159,8 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -131929,9 +132064,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *719 - organization: *695 - repository: *696 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -132011,8 +132146,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -132915,9 +133050,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *719 - organization: *695 - repository: *696 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -132997,8 +133132,8 @@ x-webhooks: type: string enum: - locked - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -133902,8 +134037,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -133982,8 +134117,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -134881,9 +135016,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *725 - organization: *695 - repository: *696 + milestone: *726 + organization: *696 + repository: *697 sender: *19 required: - action @@ -136330,8 +136465,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -137234,8 +137369,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -137315,9 +137450,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *693 - installation: *694 - issue: &726 + enterprise: *694 + installation: *695 + issue: &727 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -138214,8 +138349,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -138294,8 +138429,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -139198,8 +139333,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -140647,11 +140782,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *693 - installation: *694 - issue: *726 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + issue: *727 + organization: *696 + repository: *697 sender: *19 required: - action @@ -140732,7 +140867,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &755 + assignee: &756 title: User type: object nullable: true @@ -140802,11 +140937,11 @@ x-webhooks: required: - login - id - enterprise: *693 - installation: *694 - issue: *727 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + issue: *728 + organization: *696 + repository: *697 sender: *19 required: - action @@ -140885,12 +141020,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *693 - installation: *694 - issue: *727 - label: *719 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + issue: *728 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -140970,8 +141105,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141873,8 +142008,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -141954,11 +142089,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *693 - installation: *694 - issue: *726 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + issue: *727 + organization: *696 + repository: *697 sender: *19 required: - action @@ -142037,11 +142172,11 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - label: *719 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -142119,11 +142254,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - label: *719 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -142233,11 +142368,11 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - label: *719 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + label: *720 + organization: *696 + repository: *697 sender: *19 required: - action @@ -142319,9 +142454,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *693 - installation: *694 - marketplace_purchase: &728 + enterprise: *694 + installation: *695 + marketplace_purchase: &729 title: Marketplace Purchase type: object required: @@ -142404,8 +142539,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *695 - previous_marketplace_purchase: &729 + organization: *696 + previous_marketplace_purchase: &730 title: Marketplace Purchase type: object properties: @@ -142485,7 +142620,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *696 + repository: *697 sender: *19 required: - action @@ -142565,10 +142700,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *693 - installation: *694 - marketplace_purchase: *728 - organization: *695 + enterprise: *694 + installation: *695 + marketplace_purchase: *729 + organization: *696 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -142651,7 +142786,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *696 + repository: *697 sender: *19 required: - action @@ -142733,10 +142868,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *693 - installation: *694 - marketplace_purchase: *728 - organization: *695 + enterprise: *694 + installation: *695 + marketplace_purchase: *729 + organization: *696 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -142818,7 +142953,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *696 + repository: *697 sender: *19 required: - action @@ -142899,8 +143034,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 marketplace_purchase: title: Marketplace Purchase type: object @@ -142982,9 +143117,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *695 - previous_marketplace_purchase: *729 - repository: *696 + organization: *696 + previous_marketplace_purchase: *730 + repository: *697 sender: *19 required: - action @@ -143064,12 +143199,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *693 - installation: *694 - marketplace_purchase: *728 - organization: *695 - previous_marketplace_purchase: *729 - repository: *696 + enterprise: *694 + installation: *695 + marketplace_purchase: *729 + organization: *696 + previous_marketplace_purchase: *730 + repository: *697 sender: *19 required: - action @@ -143171,11 +143306,11 @@ x-webhooks: type: string required: - to - enterprise: *693 - installation: *694 - member: *720 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + member: *721 + organization: *696 + repository: *697 sender: *19 required: - action @@ -143275,11 +143410,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *693 - installation: *694 - member: *720 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + member: *721 + organization: *696 + repository: *697 sender: *19 required: - action @@ -143358,11 +143493,11 @@ x-webhooks: type: string enum: - removed - enterprise: *693 - installation: *694 - member: *720 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + member: *721 + organization: *696 + repository: *697 sender: *19 required: - action @@ -143440,11 +143575,11 @@ x-webhooks: type: string enum: - added - enterprise: *693 - installation: *694 - member: *720 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + member: *721 + organization: *696 + repository: *697 scope: description: The scope of the membership. Currently, can only be `team`. @@ -143520,7 +143655,7 @@ x-webhooks: required: - login - id - team: &730 + team: &731 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -143710,11 +143845,11 @@ x-webhooks: type: string enum: - removed - enterprise: *693 - installation: *694 - member: *720 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + member: *721 + organization: *696 + repository: *697 scope: description: The scope of the membership. Currently, can only be `team`. @@ -143791,7 +143926,7 @@ x-webhooks: required: - login - id - team: *730 + team: *731 required: - action - scope @@ -143873,8 +144008,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *694 - merge_group: &732 + installation: *695 + merge_group: &733 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -143893,15 +144028,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *731 + head_commit: *732 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -143987,10 +144122,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *694 - merge_group: *732 - organization: *695 - repository: *696 + installation: *695 + merge_group: *733 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144063,7 +144198,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 + enterprise: *694 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -144171,16 +144306,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *694 - organization: *695 + installation: *695 + organization: *696 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *733 - required: *734 + properties: *734 + required: *735 nullable: true sender: *19 required: @@ -144261,11 +144396,11 @@ x-webhooks: type: string enum: - closed - enterprise: *693 - installation: *694 - milestone: *725 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + milestone: *726 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144344,9 +144479,9 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - milestone: &735 + enterprise: *694 + installation: *695 + milestone: &736 title: Milestone description: A collection of related issues and pull requests. type: object @@ -144483,8 +144618,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144563,11 +144698,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - milestone: *725 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + milestone: *726 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144677,11 +144812,11 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - milestone: *725 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + milestone: *726 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144761,11 +144896,11 @@ x-webhooks: type: string enum: - opened - enterprise: *693 - installation: *694 - milestone: *735 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + milestone: *736 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144844,11 +144979,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *720 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + blocked_user: *721 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -144927,11 +145062,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *720 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + blocked_user: *721 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -145010,9 +145145,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - membership: &736 + enterprise: *694 + installation: *695 + membership: &737 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -145104,8 +145239,8 @@ x-webhooks: - role - organization_url - user - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 required: - action @@ -145183,11 +145318,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *693 - installation: *694 - membership: *736 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + membership: *737 + organization: *696 + repository: *697 sender: *19 required: - action @@ -145266,8 +145401,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -145383,10 +145518,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 - user: *720 + user: *721 required: - action - invitation @@ -145464,11 +145599,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *693 - installation: *694 - membership: *736 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + membership: *737 + organization: *696 + repository: *697 sender: *19 required: - action @@ -145555,11 +145690,11 @@ x-webhooks: properties: from: type: string - enterprise: *693 - installation: *694 - membership: *736 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + membership: *737 + organization: *696 + repository: *697 sender: *19 required: - action @@ -145635,9 +145770,9 @@ x-webhooks: type: string enum: - published - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 package: description: Information about the package. type: object @@ -146136,7 +146271,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &737 + items: &738 title: Ruby Gems metadata type: object properties: @@ -146231,7 +146366,7 @@ x-webhooks: - owner - package_version - registry - repository: *696 + repository: *697 sender: *19 required: - action @@ -146307,9 +146442,9 @@ x-webhooks: type: string enum: - updated - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 package: description: Information about the package. type: object @@ -146662,7 +146797,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *737 + items: *738 source_url: type: string format: uri @@ -146732,7 +146867,7 @@ x-webhooks: - owner - package_version - registry - repository: *696 + repository: *697 sender: *19 required: - action @@ -146909,12 +147044,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *693 + enterprise: *694 id: type: integer - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - id @@ -146994,7 +147129,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &738 + personal_access_token_request: &739 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -147140,10 +147275,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *693 - organization: *695 + enterprise: *694 + organization: *696 sender: *19 - installation: *694 + installation: *695 required: - action - personal_access_token_request @@ -147222,11 +147357,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *738 - enterprise: *693 - organization: *695 + personal_access_token_request: *739 + enterprise: *694 + organization: *696 sender: *19 - installation: *694 + installation: *695 required: - action - personal_access_token_request @@ -147304,11 +147439,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *738 - enterprise: *693 - organization: *695 + personal_access_token_request: *739 + enterprise: *694 + organization: *696 sender: *19 - installation: *694 + installation: *695 required: - action - personal_access_token_request @@ -147385,11 +147520,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *738 - organization: *695 - enterprise: *693 + personal_access_token_request: *739 + organization: *696 + enterprise: *694 sender: *19 - installation: *694 + installation: *695 required: - action - personal_access_token_request @@ -147493,7 +147628,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *739 + last_response: *740 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -147525,8 +147660,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 zen: description: Random string of GitHub zen. @@ -147771,10 +147906,10 @@ x-webhooks: - from required: - note - enterprise: *693 - installation: *694 - organization: *695 - project_card: &740 + enterprise: *694 + installation: *695 + organization: *696 + project_card: &741 title: Project Card type: object properties: @@ -147893,7 +148028,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *696 + repository: *697 sender: *19 required: - action @@ -147974,11 +148109,11 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - project_card: *740 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project_card: *741 + repository: *697 sender: *19 required: - action @@ -148058,9 +148193,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 project_card: title: Project Card type: object @@ -148188,8 +148323,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *733 - required: *734 + properties: *734 + required: *735 nullable: true sender: *19 required: @@ -148283,11 +148418,11 @@ x-webhooks: - from required: - note - enterprise: *693 - installation: *694 - organization: *695 - project_card: *740 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project_card: *741 + repository: *697 sender: *19 required: - action @@ -148381,9 +148516,9 @@ x-webhooks: - from required: - column_id - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 project_card: allOf: - title: Project Card @@ -148573,7 +148708,7 @@ x-webhooks: type: string required: - after_id - repository: *696 + repository: *697 sender: *19 required: - action @@ -148653,10 +148788,10 @@ x-webhooks: type: string enum: - closed - enterprise: *693 - installation: *694 - organization: *695 - project: &742 + enterprise: *694 + installation: *695 + organization: *696 + project: &743 title: Project type: object properties: @@ -148780,7 +148915,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *696 + repository: *697 sender: *19 required: - action @@ -148860,10 +148995,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - project_column: &741 + enterprise: *694 + installation: *695 + organization: *696 + project_column: &742 title: Project Column type: object properties: @@ -148902,7 +149037,7 @@ x-webhooks: - name - created_at - updated_at - repository: *696 + repository: *697 sender: *19 required: - action @@ -148981,18 +149116,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - project_column: *741 + enterprise: *694 + installation: *695 + organization: *696 + project_column: *742 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *733 - required: *734 + properties: *734 + required: *735 nullable: true sender: *19 required: @@ -149082,11 +149217,11 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - organization: *695 - project_column: *741 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project_column: *742 + repository: *697 sender: *19 required: - action @@ -149166,11 +149301,11 @@ x-webhooks: type: string enum: - moved - enterprise: *693 - installation: *694 - organization: *695 - project_column: *741 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project_column: *742 + repository: *697 sender: *19 required: - action @@ -149250,11 +149385,11 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - project: *742 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project: *743 + repository: *697 sender: *19 required: - action @@ -149334,18 +149469,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - project: *742 + enterprise: *694 + installation: *695 + organization: *696 + project: *743 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *733 - required: *734 + properties: *734 + required: *735 nullable: true sender: *19 required: @@ -149447,11 +149582,11 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - organization: *695 - project: *742 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project: *743 + repository: *697 sender: *19 required: - action @@ -149530,11 +149665,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *693 - installation: *694 - organization: *695 - project: *742 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + project: *743 + repository: *697 sender: *19 required: - action @@ -149615,9 +149750,9 @@ x-webhooks: type: string enum: - closed - installation: *694 - organization: *695 - projects_v2: &743 + installation: *695 + organization: *696 + projects_v2: &744 title: Projects v2 Project description: A projects v2 project type: object @@ -149760,9 +149895,9 @@ x-webhooks: type: string enum: - created - installation: *694 - organization: *695 - projects_v2: *743 + installation: *695 + organization: *696 + projects_v2: *744 sender: *19 required: - action @@ -149843,9 +149978,9 @@ x-webhooks: type: string enum: - deleted - installation: *694 - organization: *695 - projects_v2: *743 + installation: *695 + organization: *696 + projects_v2: *744 sender: *19 required: - action @@ -149962,9 +150097,9 @@ x-webhooks: type: string to: type: string - installation: *694 - organization: *695 - projects_v2: *743 + installation: *695 + organization: *696 + projects_v2: *744 sender: *19 required: - action @@ -150047,7 +150182,7 @@ x-webhooks: type: string enum: - archived - changes: &747 + changes: &748 type: object properties: archived_at: @@ -150061,9 +150196,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *694 - organization: *695 - projects_v2_item: &744 + installation: *695 + organization: *696 + projects_v2_item: &745 title: Projects v2 Item description: An item belonging to a project type: object @@ -150197,9 +150332,9 @@ x-webhooks: nullable: true to: type: string - installation: *694 - organization: *695 - projects_v2_item: *744 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150281,9 +150416,9 @@ x-webhooks: type: string enum: - created - installation: *694 - organization: *695 - projects_v2_item: *744 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150364,9 +150499,9 @@ x-webhooks: type: string enum: - deleted - installation: *694 - organization: *695 - projects_v2_item: *744 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150472,7 +150607,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &745 + - &746 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -150490,7 +150625,7 @@ x-webhooks: required: - id - name - - &746 + - &747 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -150513,8 +150648,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *745 - *746 + - *747 required: - field_value - type: object @@ -150530,9 +150665,9 @@ x-webhooks: nullable: true required: - body - installation: *694 - organization: *695 - projects_v2_item: *744 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150627,9 +150762,9 @@ x-webhooks: to: type: string nullable: true - installation: *694 - organization: *695 - projects_v2_item: *744 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150712,10 +150847,10 @@ x-webhooks: type: string enum: - restored - changes: *747 - installation: *694 - organization: *695 - projects_v2_item: *744 + changes: *748 + installation: *695 + organization: *696 + projects_v2_item: *745 sender: *19 required: - action @@ -150797,9 +150932,9 @@ x-webhooks: type: string enum: - reopened - installation: *694 - organization: *695 - projects_v2: *743 + installation: *695 + organization: *696 + projects_v2: *744 sender: *19 required: - action @@ -150880,9 +151015,9 @@ x-webhooks: type: string enum: - created - installation: *694 - organization: *695 - projects_v2_status_update: &748 + installation: *695 + organization: *696 + projects_v2_status_update: &749 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -151009,9 +151144,9 @@ x-webhooks: type: string enum: - deleted - installation: *694 - organization: *695 - projects_v2_status_update: *748 + installation: *695 + organization: *696 + projects_v2_status_update: *749 sender: *19 required: - action @@ -151147,9 +151282,9 @@ x-webhooks: type: string format: date nullable: true - installation: *694 - organization: *695 - projects_v2_status_update: *748 + installation: *695 + organization: *696 + projects_v2_status_update: *749 sender: *19 required: - action @@ -151220,10 +151355,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - repository @@ -151300,13 +151435,13 @@ x-webhooks: type: string enum: - assigned - assignee: *720 - enterprise: *693 - installation: *694 - number: &749 + assignee: *721 + enterprise: *694 + installation: *695 + number: &750 description: The pull request number. type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -153589,7 +153724,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -153671,11 +153806,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -155953,7 +156088,7 @@ x-webhooks: - draft reason: type: string - repository: *696 + repository: *697 sender: *19 required: - action @@ -156035,11 +156170,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -158317,7 +158452,7 @@ x-webhooks: - draft reason: type: string - repository: *696 + repository: *697 sender: *19 required: - action @@ -158399,11 +158534,11 @@ x-webhooks: type: string enum: - closed - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: &750 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: &751 allOf: - *551 - type: object @@ -158467,7 +158602,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *696 + repository: *697 sender: *19 required: - action @@ -158548,12 +158683,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: *750 - repository: *696 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: *751 + repository: *697 sender: *19 required: - action @@ -158633,11 +158768,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *693 + enterprise: *694 milestone: *534 - number: *749 - organization: *695 - pull_request: &751 + number: *750 + organization: *696 + pull_request: &752 title: Pull Request type: object properties: @@ -160900,7 +161035,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -160979,11 +161114,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -163265,7 +163400,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *696 + repository: *697 sender: *19 required: - action @@ -163389,12 +163524,12 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: *750 - repository: *696 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: *751 + repository: *697 sender: *19 required: - action @@ -163474,11 +163609,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -165745,7 +165880,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -165825,11 +165960,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *693 - installation: *694 - label: *719 - number: *749 - organization: *695 + enterprise: *694 + installation: *695 + label: *720 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -168111,7 +168246,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -168192,10 +168327,10 @@ x-webhooks: type: string enum: - locked - enterprise: *693 - installation: *694 - number: *749 - organization: *695 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -170475,7 +170610,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -170555,12 +170690,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *693 + enterprise: *694 milestone: *534 - number: *749 - organization: *695 - pull_request: *751 - repository: *696 + number: *750 + organization: *696 + pull_request: *752 + repository: *697 sender: *19 required: - action @@ -170639,12 +170774,12 @@ x-webhooks: type: string enum: - opened - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: *750 - repository: *696 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: *751 + repository: *697 sender: *19 required: - action @@ -170725,12 +170860,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: *750 - repository: *696 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: *751 + repository: *697 sender: *19 required: - action @@ -170810,12 +170945,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *693 - installation: *694 - number: *749 - organization: *695 - pull_request: *750 - repository: *696 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 + pull_request: *751 + repository: *697 sender: *19 required: - action @@ -171181,9 +171316,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: type: object properties: @@ -173353,7 +173488,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *696 + repository: *697 sender: *19 required: - action @@ -173433,7 +173568,7 @@ x-webhooks: type: string enum: - deleted - comment: &753 + comment: &754 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. @@ -173718,9 +173853,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: type: object properties: @@ -175878,7 +176013,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *696 + repository: *697 sender: *19 required: - action @@ -175958,11 +176093,11 @@ x-webhooks: type: string enum: - edited - changes: *752 - comment: *753 - enterprise: *693 - installation: *694 - organization: *695 + changes: *753 + comment: *754 + enterprise: *694 + installation: *695 + organization: *696 pull_request: type: object properties: @@ -178123,7 +178258,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *696 + repository: *697 sender: *19 required: - action @@ -178204,9 +178339,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: title: Simple Pull Request type: object @@ -180379,7 +180514,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *696 + repository: *697 review: description: The review that was affected. type: object @@ -180622,9 +180757,9 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: title: Simple Pull Request type: object @@ -182678,8 +182813,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *696 - review: &754 + repository: *697 + review: &755 description: The review that was affected. type: object properties: @@ -182908,12 +183043,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: description: The pull request number. type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -185196,7 +185331,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 requested_reviewer: title: User type: object @@ -185280,12 +185415,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: description: The pull request number. type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -187575,7 +187710,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 requested_team: title: Team description: Groups of organization members that gives permissions @@ -187767,12 +187902,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: description: The pull request number. type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -190057,7 +190192,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 requested_reviewer: title: User type: object @@ -190142,12 +190277,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *693 - installation: *694 + enterprise: *694 + installation: *695 number: description: The pull request number. type: integer - organization: *695 + organization: *696 pull_request: title: Pull Request type: object @@ -192423,7 +192558,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 requested_team: title: Team description: Groups of organization members that gives permissions @@ -192604,9 +192739,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: title: Simple Pull Request type: object @@ -194781,8 +194916,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *696 - review: *754 + repository: *697 + review: *755 sender: *19 required: - action @@ -194862,9 +194997,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: title: Simple Pull Request type: object @@ -196934,7 +197069,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *696 + repository: *697 sender: *19 thread: type: object @@ -197317,9 +197452,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 pull_request: title: Simple Pull Request type: object @@ -199375,7 +199510,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *696 + repository: *697 sender: *19 thread: type: object @@ -199761,10 +199896,10 @@ x-webhooks: type: string before: type: string - enterprise: *693 - installation: *694 - number: *749 - organization: *695 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -202035,7 +202170,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -202117,11 +202252,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *755 - enterprise: *693 - installation: *694 - number: *749 - organization: *695 + assignee: *756 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -204404,7 +204539,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -204483,11 +204618,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *693 - installation: *694 - label: *719 - number: *749 - organization: *695 + enterprise: *694 + installation: *695 + label: *720 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -206760,7 +206895,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -206841,10 +206976,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *693 - installation: *694 - number: *749 - organization: *695 + enterprise: *694 + installation: *695 + number: *750 + organization: *696 pull_request: title: Pull Request type: object @@ -209109,7 +209244,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *696 + repository: *697 sender: *19 required: - action @@ -209309,7 +209444,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *693 + enterprise: *694 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -209401,8 +209536,8 @@ x-webhooks: - url - author - committer - installation: *694 - organization: *695 + installation: *695 + organization: *696 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -209977,9 +210112,9 @@ x-webhooks: type: string enum: - published - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 registry_package: type: object properties: @@ -210425,7 +210560,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *737 + items: *738 summary: type: string tag_name: @@ -210479,7 +210614,7 @@ x-webhooks: - owner - package_version - registry - repository: *696 + repository: *697 sender: *19 required: - action @@ -210557,9 +210692,9 @@ x-webhooks: type: string enum: - updated - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 registry_package: type: object properties: @@ -210867,7 +211002,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *737 + items: *738 summary: type: string tag_name: @@ -210916,7 +211051,7 @@ x-webhooks: - owner - package_version - registry - repository: *696 + repository: *697 sender: *19 required: - action @@ -210993,10 +211128,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - release: &756 + enterprise: *694 + installation: *695 + organization: *696 + release: &757 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -211301,7 +211436,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *696 + repository: *697 sender: *19 required: - action @@ -211378,11 +211513,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - release: *756 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + release: *757 + repository: *697 sender: *19 required: - action @@ -211490,11 +211625,11 @@ x-webhooks: type: boolean required: - to - enterprise: *693 - installation: *694 - organization: *695 - release: *756 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + release: *757 + repository: *697 sender: *19 required: - action @@ -211572,9 +211707,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -211883,7 +212018,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *696 + repository: *697 sender: *19 required: - action @@ -211959,10 +212094,10 @@ x-webhooks: type: string enum: - published - enterprise: *693 - installation: *694 - organization: *695 - release: &757 + enterprise: *694 + installation: *695 + organization: *696 + release: &758 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -212268,7 +212403,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *696 + repository: *697 sender: *19 required: - action @@ -212344,11 +212479,11 @@ x-webhooks: type: string enum: - released - enterprise: *693 - installation: *694 - organization: *695 - release: *756 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + release: *757 + repository: *697 sender: *19 required: - action @@ -212424,11 +212559,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *693 - installation: *694 - organization: *695 - release: *757 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + release: *758 + repository: *697 sender: *19 required: - action @@ -212504,11 +212639,11 @@ x-webhooks: type: string enum: - published - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - repository_advisory: *604 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + repository_advisory: *605 sender: *19 required: - action @@ -212584,11 +212719,11 @@ x-webhooks: type: string enum: - reported - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - repository_advisory: *604 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + repository_advisory: *605 sender: *19 required: - action @@ -212664,10 +212799,10 @@ x-webhooks: type: string enum: - archived - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -212744,10 +212879,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -212825,10 +212960,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -212912,10 +213047,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213027,10 +213162,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213102,10 +213237,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 status: type: string @@ -213186,10 +213321,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213266,10 +213401,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213363,10 +213498,10 @@ x-webhooks: - name required: - repository - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213446,10 +213581,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 repository_ruleset: *284 sender: *19 required: @@ -213528,10 +213663,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 repository_ruleset: *284 sender: *19 required: @@ -213610,10 +213745,10 @@ x-webhooks: type: string enum: - edited - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 repository_ruleset: *284 changes: type: object @@ -213918,10 +214053,10 @@ x-webhooks: - from required: - owner - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -213999,10 +214134,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214080,7 +214215,7 @@ x-webhooks: type: string enum: - create - alert: &758 + alert: &759 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -214201,10 +214336,10 @@ x-webhooks: type: string enum: - open - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214410,10 +214545,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214491,11 +214626,11 @@ x-webhooks: type: string enum: - reopen - alert: *758 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + alert: *759 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214694,10 +214829,10 @@ x-webhooks: enum: - fixed - open - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214775,7 +214910,7 @@ x-webhooks: type: string enum: - created - alert: &759 + alert: &760 type: object properties: number: *85 @@ -214881,10 +215016,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -214965,11 +215100,11 @@ x-webhooks: type: string enum: - created - alert: *759 - installation: *694 - location: *760 - organization: *695 - repository: *696 + alert: *760 + installation: *695 + location: *761 + organization: *696 + repository: *697 sender: *19 required: - location @@ -215207,11 +215342,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *759 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + alert: *760 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -215289,11 +215424,11 @@ x-webhooks: type: string enum: - reopened - alert: *759 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + alert: *760 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -215371,11 +215506,11 @@ x-webhooks: type: string enum: - resolved - alert: *759 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + alert: *760 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -215453,11 +215588,11 @@ x-webhooks: type: string enum: - validated - alert: *759 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + alert: *760 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -215533,11 +215668,11 @@ x-webhooks: type: string enum: - published - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - security_advisory: &761 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + security_advisory: &762 description: The details of the security advisory, including summary, description, and severity. type: object @@ -215720,11 +215855,11 @@ x-webhooks: type: string enum: - updated - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 - security_advisory: *761 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 + security_advisory: *762 sender: *19 required: - action @@ -215797,10 +215932,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -215985,9 +216120,9 @@ x-webhooks: type: object properties: security_and_analysis: *275 - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: *337 sender: *19 required: @@ -216066,12 +216201,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: &762 + sponsorship: &763 type: object properties: created_at: @@ -216372,12 +216507,12 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: *762 + sponsorship: *763 required: - action - sponsorship @@ -216465,12 +216600,12 @@ x-webhooks: type: string required: - from - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: *762 + sponsorship: *763 required: - action - changes @@ -216547,17 +216682,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &763 + effective_date: &764 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: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: *762 + sponsorship: *763 required: - action - sponsorship @@ -216631,7 +216766,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &764 + changes: &765 type: object properties: tier: @@ -216675,13 +216810,13 @@ x-webhooks: - from required: - tier - effective_date: *763 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + effective_date: *764 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: *762 + sponsorship: *763 required: - action - changes @@ -216758,13 +216893,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *764 - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + changes: *765 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - sponsorship: *762 + sponsorship: *763 required: - action - changes @@ -216838,10 +216973,10 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -216924,10 +217059,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -217220,6 +217355,9 @@ x-webhooks: nullable: true verified: type: boolean + verified_at: + type: string + nullable: true required: - verified - reason @@ -217343,15 +217481,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *693 + enterprise: *694 id: description: The unique identifier of the status. type: integer - installation: *694 + installation: *695 name: type: string - organization: *695 - repository: *696 + organization: *696 + repository: *697 sender: *19 sha: description: The Commit SHA. @@ -217466,9 +217604,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *118 - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -217558,9 +217696,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *118 - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -217650,9 +217788,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *118 - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -217742,9 +217880,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *118 - installation: *694 - organization: *695 - repository: *696 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -217821,12 +217959,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - team: &765 + team: &766 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -218016,9 +218154,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: title: Repository description: A git repository @@ -218476,7 +218614,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *765 + team: *766 required: - action - team @@ -218552,9 +218690,9 @@ x-webhooks: type: string enum: - created - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: title: Repository description: A git repository @@ -219012,7 +219150,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *765 + team: *766 required: - action - team @@ -219089,9 +219227,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: title: Repository description: A git repository @@ -219549,7 +219687,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *765 + team: *766 required: - action - team @@ -219693,9 +219831,9 @@ x-webhooks: - from required: - permissions - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: title: Repository description: A git repository @@ -220153,7 +220291,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *765 + team: *766 required: - action - changes @@ -220231,9 +220369,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *693 - installation: *694 - organization: *695 + enterprise: *694 + installation: *695 + organization: *696 repository: title: Repository description: A git repository @@ -220691,7 +220829,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *765 + team: *766 required: - action - team @@ -220767,10 +220905,10 @@ x-webhooks: type: string enum: - started - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 required: - action @@ -220843,16 +220981,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *693 + enterprise: *694 inputs: type: object nullable: true additionalProperties: true - installation: *694 - organization: *695 + installation: *695 + organization: *696 ref: type: string - repository: *696 + repository: *697 sender: *19 workflow: type: string @@ -220934,10 +221072,10 @@ x-webhooks: type: string enum: - completed - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 workflow_job: allOf: @@ -221253,10 +221391,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 workflow_job: allOf: @@ -221595,10 +221733,10 @@ x-webhooks: type: string enum: - queued - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 workflow_job: type: object @@ -221812,10 +221950,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 workflow_job: type: object @@ -222031,12 +222169,12 @@ x-webhooks: type: string enum: - completed - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - workflow: *715 + workflow: *716 workflow_run: title: Workflow Run type: object @@ -223035,12 +223173,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - workflow: *715 + workflow: *716 workflow_run: title: Workflow Run type: object @@ -224024,12 +224162,12 @@ x-webhooks: type: string enum: - requested - enterprise: *693 - installation: *694 - organization: *695 - repository: *696 + enterprise: *694 + installation: *695 + organization: *696 + repository: *697 sender: *19 - workflow: *715 + workflow: *716 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/ghec.2022-11-28.json b/descriptions/ghec/ghec.2022-11-28.json index 0d80dc993..85457d80e 100644 --- a/descriptions/ghec/ghec.2022-11-28.json +++ b/descriptions/ghec/ghec.2022-11-28.json @@ -31334,7 +31334,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -33389,7 +33389,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -59056,6 +59056,57 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "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": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/secret-scanning-scan-history" + }, + "examples": { + "default": { + "$ref": "#/components/examples/secret-scanning-scan-history" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -119107,6 +119158,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -123138,6 +123193,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -124512,6 +124571,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -126845,6 +126908,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -129862,6 +129929,77 @@ } } }, + "secret-scanning-scan": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + "secret-scanning-scan-history": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "backfill_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "$ref": "#/components/schemas/secret-scanning-scan" + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, "repository-advisory-create": { "type": "object", "properties": { @@ -264333,6 +264471,10 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -291644,7 +291786,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -291698,7 +291841,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -291737,7 +291881,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -293115,7 +293260,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -293152,7 +293298,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } }, @@ -298041,6 +298188,63 @@ "token_type": "mailchimp_api_key" } }, + "secret-scanning-scan-history": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + }, "repository-advisory": { "value": { "ghsa_id": "GHSA-abcd-1234-efgh", diff --git a/descriptions/ghec/ghec.2022-11-28.yaml b/descriptions/ghec/ghec.2022-11-28.yaml index 0121212eb..88683197f 100644 --- a/descriptions/ghec/ghec.2022-11-28.yaml +++ b/descriptions/ghec/ghec.2022-11-28.yaml @@ -22791,7 +22791,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -24219,6 +24219,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -42879,6 +42881,42 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + 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: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': + "$ref": "#/components/responses/service_unavailable" + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/secret-scanning-scan-history" + examples: + default: + "$ref": "#/components/examples/secret-scanning-scan-history" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -87501,6 +87539,9 @@ components: signature: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -90625,6 +90666,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true secret-scanning-push-protection-bypass-placeholder-id: description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -91717,6 +91761,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -93442,6 +93489,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -95665,6 +95715,56 @@ components: token_type: type: string description: The token type this bypass is for. + secret-scanning-scan: + description: Information on a single scan performed by secret scanning on the + repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or "running" + completed_at: + type: string + format: date-time + description: The time that the scan was completed. Empty if the scan is + active + nullable: true + started_at: + type: string + format: date-time + description: The time that the scan was started + secret-scanning-scan-history: + type: object + properties: + incremental_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + pattern_update_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + backfill_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + custom_pattern_backfill_scans: + type: array + items: + allOf: + - "$ref": "#/components/schemas/secret-scanning-scan" + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, one of + "repository", "organization", or "enterprise" repository-advisory-create: type: object properties: @@ -197031,6 +197131,9 @@ components: nullable: true verified: type: boolean + verified_at: + type: string + nullable: true required: - verified - reason @@ -219872,6 +219975,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -219914,6 +220018,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -219943,6 +220048,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -220982,6 +221088,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -221010,6 +221117,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -225304,6 +225412,43 @@ components: reason: will_fix_later expire_at: '2020-11-06T18:18:30Z' token_type: mailchimp_api_key + secret-scanning-scan-history: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization repository-advisory: value: ghsa_id: GHSA-abcd-1234-efgh diff --git a/descriptions/ghec/ghec.json b/descriptions/ghec/ghec.json index 0d80dc993..85457d80e 100644 --- a/descriptions/ghec/ghec.json +++ b/descriptions/ghec/ghec.json @@ -31334,7 +31334,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -33389,7 +33389,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-cloud@latest//rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -59056,6 +59056,57 @@ } } }, + "/repos/{owner}/{repo}/secret-scanning/scan-history": { + "get": { + "summary": "Get secret scanning scan history for a repository", + "description": "Lists the latest incremental and backfill scans by type for a repository.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead.", + "tags": [ + "secret-scanning" + ], + "operationId": "secret-scanning/get-scan-history", + "externalDocs": { + "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": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "404": { + "description": "Repository does not have GitHub Advanced Security or secret scanning enabled" + }, + "503": { + "$ref": "#/components/responses/service_unavailable" + }, + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/secret-scanning-scan-history" + }, + "examples": { + "default": { + "$ref": "#/components/examples/secret-scanning-scan-history" + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "secret-scanning", + "subcategory": "secret-scanning" + } + } + }, "/repos/{owner}/{repo}/security-advisories": { "get": { "summary": "List repository security advisories", @@ -119107,6 +119158,10 @@ "signature": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -123138,6 +123193,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } } } @@ -124512,6 +124571,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -126845,6 +126908,10 @@ "payload": { "type": "string", "nullable": true + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -129862,6 +129929,77 @@ } } }, + "secret-scanning-scan": { + "description": "Information on a single scan performed by secret scanning on the repository", + "type": "object", + "properties": { + "type": { + "type": "string", + "description": "The type of scan" + }, + "status": { + "type": "string", + "description": "The state of the scan. Either \"completed\" or \"running\"" + }, + "completed_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was completed. Empty if the scan is active", + "nullable": true + }, + "started_at": { + "type": "string", + "format": "date-time", + "description": "The time that the scan was started" + } + } + }, + "secret-scanning-scan-history": { + "type": "object", + "properties": { + "incremental_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "pattern_update_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "backfill_scans": { + "type": "array", + "items": { + "$ref": "#/components/schemas/secret-scanning-scan" + } + }, + "custom_pattern_backfill_scans": { + "type": "array", + "items": { + "allOf": [ + { + "$ref": "#/components/schemas/secret-scanning-scan" + }, + { + "type": "object", + "properties": { + "pattern_name": { + "type": "string", + "description": "Name of the custom pattern for custom pattern scans" + }, + "pattern_scope": { + "type": "string", + "description": "Level at which the custom pattern is defined, one of \"repository\", \"organization\", or \"enterprise\"" + } + } + } + ] + } + } + } + }, "repository-advisory-create": { "type": "object", "properties": { @@ -264333,6 +264471,10 @@ }, "verified": { "type": "boolean" + }, + "verified_at": { + "type": "string", + "nullable": true } }, "required": [ @@ -291644,7 +291786,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -291698,7 +291841,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -291737,7 +291881,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } } @@ -293115,7 +293260,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -293152,7 +293298,8 @@ "verified": false, "reason": "unsigned", "signature": null, - "payload": null + "payload": null, + "verified_at": null } } }, @@ -298041,6 +298188,63 @@ "token_type": "mailchimp_api_key" } }, + "secret-scanning-scan-history": { + "value": { + "incremental_scans": [ + { + "type": "git", + "status": "completed", + "completed_at": "2024-10-07T02:47:00Z" + } + ], + "backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:50:00Z" + }, + { + "type": "issue", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:49:00Z" + }, + { + "type": "discussion", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:48:00Z" + } + ], + "pattern_update_scans": [ + { + "type": "discussion", + "status": "in_progress", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:51:00Z" + } + ], + "custom_pattern_backfill_scans": [ + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "enterprise" + }, + { + "type": "git", + "status": "completed", + "started_at": "2024-10-07T02:47:00Z", + "completed_at": "2024-10-07T02:55:00Z", + "pattern_slug": "my-custom-pattern", + "pattern_scope": "organization" + } + ] + } + }, "repository-advisory": { "value": { "ghsa_id": "GHSA-abcd-1234-efgh", diff --git a/descriptions/ghec/ghec.yaml b/descriptions/ghec/ghec.yaml index 0121212eb..88683197f 100644 --- a/descriptions/ghec/ghec.yaml +++ b/descriptions/ghec/ghec.yaml @@ -22791,7 +22791,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -24219,6 +24219,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -42879,6 +42881,42 @@ paths: githubCloudOnly: false category: secret-scanning subcategory: secret-scanning + "/repos/{owner}/{repo}/secret-scanning/scan-history": + get: + summary: Get secret scanning scan history for a repository + description: |- + Lists the latest incremental and backfill scans by type for a repository. + + OAuth app tokens and personal access tokens (classic) need the `repo` or `security_events` scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the `public_repo` scope instead. + tags: + - secret-scanning + operationId: secret-scanning/get-scan-history + externalDocs: + 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: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '404': + description: Repository does not have GitHub Advanced Security or secret + scanning enabled + '503': + "$ref": "#/components/responses/service_unavailable" + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/secret-scanning-scan-history" + examples: + default: + "$ref": "#/components/examples/secret-scanning-scan-history" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: secret-scanning + subcategory: secret-scanning "/repos/{owner}/{repo}/security-advisories": get: summary: List repository security advisories @@ -87501,6 +87539,9 @@ components: signature: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -90625,6 +90666,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true secret-scanning-push-protection-bypass-placeholder-id: description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -91717,6 +91761,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -93442,6 +93489,9 @@ components: payload: type: string nullable: true + verified_at: + type: string + nullable: true required: - verified - reason @@ -95665,6 +95715,56 @@ components: token_type: type: string description: The token type this bypass is for. + secret-scanning-scan: + description: Information on a single scan performed by secret scanning on the + repository + type: object + properties: + type: + type: string + description: The type of scan + status: + type: string + description: The state of the scan. Either "completed" or "running" + completed_at: + type: string + format: date-time + description: The time that the scan was completed. Empty if the scan is + active + nullable: true + started_at: + type: string + format: date-time + description: The time that the scan was started + secret-scanning-scan-history: + type: object + properties: + incremental_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + pattern_update_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + backfill_scans: + type: array + items: + "$ref": "#/components/schemas/secret-scanning-scan" + custom_pattern_backfill_scans: + type: array + items: + allOf: + - "$ref": "#/components/schemas/secret-scanning-scan" + - type: object + properties: + pattern_name: + type: string + description: Name of the custom pattern for custom pattern scans + pattern_scope: + type: string + description: Level at which the custom pattern is defined, one of + "repository", "organization", or "enterprise" repository-advisory-create: type: object properties: @@ -197031,6 +197131,9 @@ components: nullable: true verified: type: boolean + verified_at: + type: string + nullable: true required: - verified - reason @@ -219872,6 +219975,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit-example-for-creating-a-file: value: content: @@ -219914,6 +220018,7 @@ components: reason: unsigned signature: payload: + verified_at: file-commit: value: content: @@ -219943,6 +220048,7 @@ components: reason: unsigned signature: payload: + verified_at: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -220982,6 +221088,7 @@ components: reason: unsigned signature: payload: + verified_at: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -221010,6 +221117,7 @@ components: reason: unsigned signature: payload: + verified_at: git-ref-items: value: - ref: refs/heads/feature-a @@ -225304,6 +225412,43 @@ components: reason: will_fix_later expire_at: '2020-11-06T18:18:30Z' token_type: mailchimp_api_key + secret-scanning-scan-history: + value: + incremental_scans: + - type: git + status: completed + completed_at: '2024-10-07T02:47:00Z' + backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:50:00Z' + - type: issue + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:49:00Z' + - type: discussion + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:48:00Z' + pattern_update_scans: + - type: discussion + status: in_progress + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:51:00Z' + custom_pattern_backfill_scans: + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: enterprise + - type: git + status: completed + started_at: '2024-10-07T02:47:00Z' + completed_at: '2024-10-07T02:55:00Z' + pattern_slug: my-custom-pattern + pattern_scope: organization repository-advisory: value: ghsa_id: GHSA-abcd-1234-efgh diff --git a/descriptions/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json b/descriptions/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json index 172fe00e1..96ce563fa 100644 --- a/descriptions/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json +++ b/descriptions/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.json @@ -146510,7 +146510,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -158078,7 +158078,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -213486,9 +213486,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -213702,9 +213700,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -214156,7 +214152,6 @@ "examples": { "default": { "value": { - "content": null, "commit": { "sha": "7638417db6d59f3c431d3e1f261cc637155684cd", "node_id": "MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==", @@ -214186,9 +214181,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -236138,9 +236131,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -236528,9 +236519,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } diff --git a/descriptions/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml b/descriptions/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml index f557807f0..d92640348 100644 --- a/descriptions/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml +++ b/descriptions/ghes-3.10/dereferenced/ghes-3.10.2022-11-28.deref.yaml @@ -37367,7 +37367,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -40037,6 +40037,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -51491,8 +51493,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '201': description: Response content: @@ -51539,8 +51539,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '404': *36 '422': *31 '409': @@ -51669,7 +51667,6 @@ paths: examples: default: value: - content: commit: sha: 7638417db6d59f3c431d3e1f261cc637155684cd node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA== @@ -51694,8 +51691,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '422': *31 '404': *36 '409': *296 @@ -56262,8 +56257,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -56356,8 +56349,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '404': *36 '409': *296 x-github: diff --git a/descriptions/ghes-3.10/dereferenced/ghes-3.10.deref.json b/descriptions/ghes-3.10/dereferenced/ghes-3.10.deref.json index 172fe00e1..96ce563fa 100644 --- a/descriptions/ghes-3.10/dereferenced/ghes-3.10.deref.json +++ b/descriptions/ghes-3.10/dereferenced/ghes-3.10.deref.json @@ -146510,7 +146510,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -158078,7 +158078,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -213486,9 +213486,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -213702,9 +213700,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -214156,7 +214152,6 @@ "examples": { "default": { "value": { - "content": null, "commit": { "sha": "7638417db6d59f3c431d3e1f261cc637155684cd", "node_id": "MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==", @@ -214186,9 +214181,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -236138,9 +236131,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -236528,9 +236519,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } diff --git a/descriptions/ghes-3.10/dereferenced/ghes-3.10.deref.yaml b/descriptions/ghes-3.10/dereferenced/ghes-3.10.deref.yaml index f557807f0..d92640348 100644 --- a/descriptions/ghes-3.10/dereferenced/ghes-3.10.deref.yaml +++ b/descriptions/ghes-3.10/dereferenced/ghes-3.10.deref.yaml @@ -37367,7 +37367,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -40037,6 +40037,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -51491,8 +51493,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '201': description: Response content: @@ -51539,8 +51539,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '404': *36 '422': *31 '409': @@ -51669,7 +51667,6 @@ paths: examples: default: value: - content: commit: sha: 7638417db6d59f3c431d3e1f261cc637155684cd node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA== @@ -51694,8 +51691,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '422': *31 '404': *36 '409': *296 @@ -56262,8 +56257,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -56356,8 +56349,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '404': *36 '409': *296 x-github: diff --git a/descriptions/ghes-3.10/ghes-3.10.2022-11-28.json b/descriptions/ghes-3.10/ghes-3.10.2022-11-28.json index e0bd86447..332dd35be 100644 --- a/descriptions/ghes-3.10/ghes-3.10.2022-11-28.json +++ b/descriptions/ghes-3.10/ghes-3.10.2022-11-28.json @@ -25935,7 +25935,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -27837,7 +27837,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -259731,9 +259731,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -259785,16 +259783,13 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } }, "file-commit": { "value": { - "content": null, "commit": { "sha": "7638417db6d59f3c431d3e1f261cc637155684cd", "node_id": "MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==", @@ -259824,9 +259819,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -261168,9 +261161,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -261205,9 +261196,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } }, diff --git a/descriptions/ghes-3.10/ghes-3.10.2022-11-28.yaml b/descriptions/ghes-3.10/ghes-3.10.2022-11-28.yaml index b47405e24..ea68fae0f 100644 --- a/descriptions/ghes-3.10/ghes-3.10.2022-11-28.yaml +++ b/descriptions/ghes-3.10/ghes-3.10.2022-11-28.yaml @@ -18652,7 +18652,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -19975,6 +19975,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -195166,8 +195168,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: file-commit-example-for-creating-a-file: value: content: @@ -195208,11 +195208,8 @@ components: verification: verified: false reason: unsigned - signature: - payload: file-commit: value: - content: commit: sha: 7638417db6d59f3c431d3e1f261cc637155684cd node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA== @@ -195237,8 +195234,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -196252,8 +196247,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -196280,8 +196273,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: git-ref-items: value: - ref: refs/heads/feature-a diff --git a/descriptions/ghes-3.10/ghes-3.10.json b/descriptions/ghes-3.10/ghes-3.10.json index e0bd86447..332dd35be 100644 --- a/descriptions/ghes-3.10/ghes-3.10.json +++ b/descriptions/ghes-3.10/ghes-3.10.json @@ -25935,7 +25935,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -27837,7 +27837,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.10/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -259731,9 +259731,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -259785,16 +259783,13 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } }, "file-commit": { "value": { - "content": null, "commit": { "sha": "7638417db6d59f3c431d3e1f261cc637155684cd", "node_id": "MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==", @@ -259824,9 +259819,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -261168,9 +261161,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -261205,9 +261196,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } }, diff --git a/descriptions/ghes-3.10/ghes-3.10.yaml b/descriptions/ghes-3.10/ghes-3.10.yaml index b47405e24..ea68fae0f 100644 --- a/descriptions/ghes-3.10/ghes-3.10.yaml +++ b/descriptions/ghes-3.10/ghes-3.10.yaml @@ -18652,7 +18652,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -19975,6 +19975,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -195166,8 +195168,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: file-commit-example-for-creating-a-file: value: content: @@ -195208,11 +195208,8 @@ components: verification: verified: false reason: unsigned - signature: - payload: file-commit: value: - content: commit: sha: 7638417db6d59f3c431d3e1f261cc637155684cd node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA== @@ -195237,8 +195234,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -196252,8 +196247,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -196280,8 +196273,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: git-ref-items: value: - ref: refs/heads/feature-a diff --git a/descriptions/ghes-3.11/dereferenced/ghes-3.11.2022-11-28.deref.json b/descriptions/ghes-3.11/dereferenced/ghes-3.11.2022-11-28.deref.json index 76a8fb4f2..3cd238b7a 100644 --- a/descriptions/ghes-3.11/dereferenced/ghes-3.11.2022-11-28.deref.json +++ b/descriptions/ghes-3.11/dereferenced/ghes-3.11.2022-11-28.deref.json @@ -154043,7 +154043,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -165611,7 +165611,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -221430,9 +221430,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -221646,9 +221644,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -222100,7 +222096,6 @@ "examples": { "default": { "value": { - "content": null, "commit": { "sha": "7638417db6d59f3c431d3e1f261cc637155684cd", "node_id": "MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==", @@ -222130,9 +222125,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -244103,9 +244096,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -244493,9 +244484,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } diff --git a/descriptions/ghes-3.11/dereferenced/ghes-3.11.2022-11-28.deref.yaml b/descriptions/ghes-3.11/dereferenced/ghes-3.11.2022-11-28.deref.yaml index f37560bd2..be99ba886 100644 --- a/descriptions/ghes-3.11/dereferenced/ghes-3.11.2022-11-28.deref.yaml +++ b/descriptions/ghes-3.11/dereferenced/ghes-3.11.2022-11-28.deref.yaml @@ -39118,7 +39118,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -41788,6 +41788,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -53418,8 +53420,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '201': description: Response content: @@ -53466,8 +53466,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '404': *26 '422': *35 '409': @@ -53596,7 +53594,6 @@ paths: examples: default: value: - content: commit: sha: 7638417db6d59f3c431d3e1f261cc637155684cd node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA== @@ -53621,8 +53618,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '422': *35 '404': *26 '409': *307 @@ -58199,8 +58194,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -58293,8 +58286,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '404': *26 '409': *307 x-github: diff --git a/descriptions/ghes-3.11/dereferenced/ghes-3.11.deref.json b/descriptions/ghes-3.11/dereferenced/ghes-3.11.deref.json index 76a8fb4f2..3cd238b7a 100644 --- a/descriptions/ghes-3.11/dereferenced/ghes-3.11.deref.json +++ b/descriptions/ghes-3.11/dereferenced/ghes-3.11.deref.json @@ -154043,7 +154043,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -165611,7 +165611,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -221430,9 +221430,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -221646,9 +221644,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -222100,7 +222096,6 @@ "examples": { "default": { "value": { - "content": null, "commit": { "sha": "7638417db6d59f3c431d3e1f261cc637155684cd", "node_id": "MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==", @@ -222130,9 +222125,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -244103,9 +244096,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -244493,9 +244484,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } diff --git a/descriptions/ghes-3.11/dereferenced/ghes-3.11.deref.yaml b/descriptions/ghes-3.11/dereferenced/ghes-3.11.deref.yaml index f37560bd2..be99ba886 100644 --- a/descriptions/ghes-3.11/dereferenced/ghes-3.11.deref.yaml +++ b/descriptions/ghes-3.11/dereferenced/ghes-3.11.deref.yaml @@ -39118,7 +39118,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -41788,6 +41788,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -53418,8 +53420,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '201': description: Response content: @@ -53466,8 +53466,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '404': *26 '422': *35 '409': @@ -53596,7 +53594,6 @@ paths: examples: default: value: - content: commit: sha: 7638417db6d59f3c431d3e1f261cc637155684cd node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA== @@ -53621,8 +53618,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '422': *35 '404': *26 '409': *307 @@ -58199,8 +58194,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd headers: Location: @@ -58293,8 +58286,6 @@ paths: verification: verified: false reason: unsigned - signature: - payload: '404': *26 '409': *307 x-github: diff --git a/descriptions/ghes-3.11/ghes-3.11.2022-11-28.json b/descriptions/ghes-3.11/ghes-3.11.2022-11-28.json index 6dfe60010..6207f044f 100644 --- a/descriptions/ghes-3.11/ghes-3.11.2022-11-28.json +++ b/descriptions/ghes-3.11/ghes-3.11.2022-11-28.json @@ -26772,7 +26772,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -28674,7 +28674,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -263950,9 +263950,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -264004,16 +264002,13 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } }, "file-commit": { "value": { - "content": null, "commit": { "sha": "7638417db6d59f3c431d3e1f261cc637155684cd", "node_id": "MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==", @@ -264043,9 +264038,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -265389,9 +265382,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -265426,9 +265417,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } }, diff --git a/descriptions/ghes-3.11/ghes-3.11.2022-11-28.yaml b/descriptions/ghes-3.11/ghes-3.11.2022-11-28.yaml index 5a6462cba..d2e12b923 100644 --- a/descriptions/ghes-3.11/ghes-3.11.2022-11-28.yaml +++ b/descriptions/ghes-3.11/ghes-3.11.2022-11-28.yaml @@ -19230,7 +19230,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -20553,6 +20553,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -198104,8 +198106,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: file-commit-example-for-creating-a-file: value: content: @@ -198146,11 +198146,8 @@ components: verification: verified: false reason: unsigned - signature: - payload: file-commit: value: - content: commit: sha: 7638417db6d59f3c431d3e1f261cc637155684cd node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA== @@ -198175,8 +198172,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -199192,8 +199187,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -199220,8 +199213,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: git-ref-items: value: - ref: refs/heads/feature-a diff --git a/descriptions/ghes-3.11/ghes-3.11.json b/descriptions/ghes-3.11/ghes-3.11.json index 6dfe60010..6207f044f 100644 --- a/descriptions/ghes-3.11/ghes-3.11.json +++ b/descriptions/ghes-3.11/ghes-3.11.json @@ -26772,7 +26772,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -28674,7 +28674,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.11/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -263950,9 +263950,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -264004,16 +264002,13 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } }, "file-commit": { "value": { - "content": null, "commit": { "sha": "7638417db6d59f3c431d3e1f261cc637155684cd", "node_id": "MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA==", @@ -264043,9 +264038,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } } @@ -265389,9 +265382,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" }, "html_url": "https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd" } @@ -265426,9 +265417,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "payload": null + "reason": "unsigned" } } }, diff --git a/descriptions/ghes-3.11/ghes-3.11.yaml b/descriptions/ghes-3.11/ghes-3.11.yaml index 5a6462cba..d2e12b923 100644 --- a/descriptions/ghes-3.11/ghes-3.11.yaml +++ b/descriptions/ghes-3.11/ghes-3.11.yaml @@ -19230,7 +19230,7 @@ paths: OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. - This API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs-for-repo @@ -20553,6 +20553,8 @@ paths: Anyone with read access to the repository can use this endpoint OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository. + + This endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`. tags: - actions operationId: actions/list-workflow-runs @@ -198104,8 +198106,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: file-commit-example-for-creating-a-file: value: content: @@ -198146,11 +198146,8 @@ components: verification: verified: false reason: unsigned - signature: - payload: file-commit: value: - content: commit: sha: 7638417db6d59f3c431d3e1f261cc637155684cd node_id: MDY6Q29tbWl0NzYzODQxN2RiNmQ1OWYzYzQzMWQzZTFmMjYxY2M2MzcxNTU2ODRjZA== @@ -198175,8 +198172,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: contributor-items-response-if-repository-contains-content: value: - login: octocat @@ -199192,8 +199187,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: html_url: https://github.com/octocat/Hello-World/commit/7638417db6d59f3c431d3e1f261cc637155684cd git-commit-2: value: @@ -199220,8 +199213,6 @@ components: verification: verified: false reason: unsigned - signature: - payload: git-ref-items: value: - ref: refs/heads/feature-a diff --git a/descriptions/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json b/descriptions/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json index 9a6f10887..cb79a8a88 100644 --- a/descriptions/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json +++ b/descriptions/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json @@ -156969,7 +156969,7 @@ "/repos/{owner}/{repo}/actions/runs": { "get": { "summary": "List workflow runs for a repository", - "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.12/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis API will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", + "description": "Lists all workflow runs for a repository. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.12/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -168634,7 +168634,7 @@ "/repos/{owner}/{repo}/actions/workflows/{workflow_id}/runs": { "get": { "summary": "List workflow runs for a workflow", - "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.12/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.", + "description": "List all workflow runs for a workflow. You can replace `workflow_id` with the workflow file name. For example, you could use `main.yaml`. You can use parameters to narrow the list of results. For more information about using parameters, see [Parameters](https://docs.github.com/enterprise-server@3.12/rest/guides/getting-started-with-the-rest-api#parameters).\n\nAnyone with read access to the repository can use this endpoint\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint with a private repository.\n\nThis endpoint will return up to 1,000 results for each search when using the following parameters: `actor`, `branch`, `check_suite_id`, `created`, `event`, `head_sha`, `status`.", "tags": [ "actions" ], @@ -224450,9 +224450,7 @@ ], "verification": { "verified": false, - "reason": "unsigned", - "signature": null, - "pay{"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}