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 4d789500ff..6b97cb7ec7 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 @@ -2315,6 +2315,9 @@ ], "default": "disabled" }, + "code_scanning_options": { + "$ref": "#/components/schemas/code-scanning-options" + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -12163,6 +12166,9 @@ ], "default": "disabled" }, + "code_scanning_options": { + "$ref": "#/components/schemas/code-scanning-options" + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -20426,7 +20432,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -20690,7 +20701,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -22024,7 +22040,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } }, @@ -22353,7 +22369,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } } @@ -50096,7 +50112,7 @@ "/repos/{owner}/{repo}/issues/{issue_number}/sub_issues": { "get": { "summary": "List sub-issues", - "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\n\n- **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", "tags": [ "issues" ], @@ -99358,7 +99374,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -99531,6 +99554,18 @@ } } }, + "code-scanning-options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code-scanning-default-setup-options": { "type": "object", "description": "Feature options for code scanning default setup", @@ -108800,7 +108835,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -108858,7 +108898,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -111678,6 +111723,73 @@ } } }, + "org-rules": { + "title": "Repository Rule", + "type": "object", + "description": "A repository rule.", + "oneOf": [ + { + "$ref": "#/components/schemas/repository-rule-creation" + }, + { + "$ref": "#/components/schemas/repository-rule-update" + }, + { + "$ref": "#/components/schemas/repository-rule-deletion" + }, + { + "$ref": "#/components/schemas/repository-rule-required-linear-history" + }, + { + "$ref": "#/components/schemas/repository-rule-required-deployments" + }, + { + "$ref": "#/components/schemas/repository-rule-required-signatures" + }, + { + "$ref": "#/components/schemas/repository-rule-pull-request" + }, + { + "$ref": "#/components/schemas/repository-rule-required-status-checks" + }, + { + "$ref": "#/components/schemas/repository-rule-non-fast-forward" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-file-path-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-path-length" + }, + { + "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-size" + }, + { + "$ref": "#/components/schemas/repository-rule-workflows" + }, + { + "$ref": "#/components/schemas/repository-rule-code-scanning" + } + ] + }, "rule-suites": { "title": "Rule Suites", "description": "Response", @@ -272469,6 +272581,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -272511,6 +272626,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -272544,6 +272662,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -276780,6 +276901,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "disabled", "secret_scanning_push_protection": "disabled", 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 f4ed60591e..e81287c14d 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 @@ -1632,6 +1632,8 @@ paths: - disabled - not_set default: disabled + code_scanning_options: + "$ref": "#/components/schemas/code-scanning-options" code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -8844,6 +8846,8 @@ paths: - disabled - not_set default: disabled + code_scanning_options: + "$ref": "#/components/schemas/code-scanning-options" code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -14858,6 +14862,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -15069,6 +15078,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -16084,7 +16098,7 @@ paths: type: array description: An array of rules within the ruleset. items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" required: - name - enforcement @@ -16300,7 +16314,7 @@ paths: description: An array of rules within the ruleset. type: array items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" examples: default: value: @@ -36604,11 +36618,11 @@ paths: description: |- You can use the REST API to list the sub-issues on an issue. - This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + This endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types). - - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. - - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. - - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`. - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. tags: - issues @@ -72204,6 +72218,11 @@ components: type: object description: Feature options for code scanning nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -72334,6 +72353,15 @@ components: updated_at: type: string format: date-time + code-scanning-options: + type: object + description: Security Configuration feature options for code scanning + nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code-scanning-default-setup-options: type: object description: Feature options for code scanning default setup @@ -79793,6 +79821,11 @@ components: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the private registry. @@ -79841,6 +79874,11 @@ components: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the private registry. @@ -82055,6 +82093,31 @@ components: updated_at: type: string format: date-time + org-rules: + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - "$ref": "#/components/schemas/repository-rule-creation" + - "$ref": "#/components/schemas/repository-rule-update" + - "$ref": "#/components/schemas/repository-rule-deletion" + - "$ref": "#/components/schemas/repository-rule-required-linear-history" + - "$ref": "#/components/schemas/repository-rule-required-deployments" + - "$ref": "#/components/schemas/repository-rule-required-signatures" + - "$ref": "#/components/schemas/repository-rule-pull-request" + - "$ref": "#/components/schemas/repository-rule-required-status-checks" + - "$ref": "#/components/schemas/repository-rule-non-fast-forward" + - "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + - "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + - "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + - "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + - "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + - "$ref": "#/components/schemas/repository-rule-file-path-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-path-length" + - "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-size" + - "$ref": "#/components/schemas/repository-rule-workflows" + - "$ref": "#/components/schemas/repository-rule-code-scanning" rule-suites: title: Rule Suites description: Response @@ -204088,6 +204151,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: enabled @@ -204122,6 +204187,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: disabled @@ -204149,6 +204216,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: enabled secret_scanning_push_protection: disabled @@ -207782,6 +207851,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: disabled secret_scanning_push_protection: disabled diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 4d789500ff..6b97cb7ec7 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -2315,6 +2315,9 @@ ], "default": "disabled" }, + "code_scanning_options": { + "$ref": "#/components/schemas/code-scanning-options" + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -12163,6 +12166,9 @@ ], "default": "disabled" }, + "code_scanning_options": { + "$ref": "#/components/schemas/code-scanning-options" + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -20426,7 +20432,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -20690,7 +20701,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -22024,7 +22040,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } }, @@ -22353,7 +22369,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } } @@ -50096,7 +50112,7 @@ "/repos/{owner}/{repo}/issues/{issue_number}/sub_issues": { "get": { "summary": "List sub-issues", - "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\n\n- **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", "tags": [ "issues" ], @@ -99358,7 +99374,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -99531,6 +99554,18 @@ } } }, + "code-scanning-options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code-scanning-default-setup-options": { "type": "object", "description": "Feature options for code scanning default setup", @@ -108800,7 +108835,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -108858,7 +108898,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -111678,6 +111723,73 @@ } } }, + "org-rules": { + "title": "Repository Rule", + "type": "object", + "description": "A repository rule.", + "oneOf": [ + { + "$ref": "#/components/schemas/repository-rule-creation" + }, + { + "$ref": "#/components/schemas/repository-rule-update" + }, + { + "$ref": "#/components/schemas/repository-rule-deletion" + }, + { + "$ref": "#/components/schemas/repository-rule-required-linear-history" + }, + { + "$ref": "#/components/schemas/repository-rule-required-deployments" + }, + { + "$ref": "#/components/schemas/repository-rule-required-signatures" + }, + { + "$ref": "#/components/schemas/repository-rule-pull-request" + }, + { + "$ref": "#/components/schemas/repository-rule-required-status-checks" + }, + { + "$ref": "#/components/schemas/repository-rule-non-fast-forward" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-file-path-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-path-length" + }, + { + "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-size" + }, + { + "$ref": "#/components/schemas/repository-rule-workflows" + }, + { + "$ref": "#/components/schemas/repository-rule-code-scanning" + } + ] + }, "rule-suites": { "title": "Rule Suites", "description": "Response", @@ -272469,6 +272581,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -272511,6 +272626,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -272544,6 +272662,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -276780,6 +276901,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "disabled", "secret_scanning_push_protection": "disabled", diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index f4ed60591e..e81287c14d 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -1632,6 +1632,8 @@ paths: - disabled - not_set default: disabled + code_scanning_options: + "$ref": "#/components/schemas/code-scanning-options" code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -8844,6 +8846,8 @@ paths: - disabled - not_set default: disabled + code_scanning_options: + "$ref": "#/components/schemas/code-scanning-options" code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -14858,6 +14862,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -15069,6 +15078,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -16084,7 +16098,7 @@ paths: type: array description: An array of rules within the ruleset. items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" required: - name - enforcement @@ -16300,7 +16314,7 @@ paths: description: An array of rules within the ruleset. type: array items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" examples: default: value: @@ -36604,11 +36618,11 @@ paths: description: |- You can use the REST API to list the sub-issues on an issue. - This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + This endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types). - - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. - - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. - - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`. - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. tags: - issues @@ -72204,6 +72218,11 @@ components: type: object description: Feature options for code scanning nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -72334,6 +72353,15 @@ components: updated_at: type: string format: date-time + code-scanning-options: + type: object + description: Security Configuration feature options for code scanning + nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code-scanning-default-setup-options: type: object description: Feature options for code scanning default setup @@ -79793,6 +79821,11 @@ components: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the private registry. @@ -79841,6 +79874,11 @@ components: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the private registry. @@ -82055,6 +82093,31 @@ components: updated_at: type: string format: date-time + org-rules: + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - "$ref": "#/components/schemas/repository-rule-creation" + - "$ref": "#/components/schemas/repository-rule-update" + - "$ref": "#/components/schemas/repository-rule-deletion" + - "$ref": "#/components/schemas/repository-rule-required-linear-history" + - "$ref": "#/components/schemas/repository-rule-required-deployments" + - "$ref": "#/components/schemas/repository-rule-required-signatures" + - "$ref": "#/components/schemas/repository-rule-pull-request" + - "$ref": "#/components/schemas/repository-rule-required-status-checks" + - "$ref": "#/components/schemas/repository-rule-non-fast-forward" + - "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + - "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + - "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + - "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + - "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + - "$ref": "#/components/schemas/repository-rule-file-path-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-path-length" + - "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-size" + - "$ref": "#/components/schemas/repository-rule-workflows" + - "$ref": "#/components/schemas/repository-rule-code-scanning" rule-suites: title: Rule Suites description: Response @@ -204088,6 +204151,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: enabled @@ -204122,6 +204187,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: disabled @@ -204149,6 +204216,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: enabled secret_scanning_push_protection: disabled @@ -207782,6 +207851,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: disabled secret_scanning_push_protection: disabled 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 a869badd45..8252d3075c 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 @@ -16407,7 +16407,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -16818,6 +16825,18 @@ ], "default": "disabled" }, + "code_scanning_options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -17058,7 +17077,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -17514,7 +17540,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -17713,6 +17746,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -17755,6 +17791,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -17903,7 +17942,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -18514,7 +18560,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -19325,7 +19378,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -19523,6 +19583,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -71517,7 +71580,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -71935,6 +72005,18 @@ ], "default": "disabled" }, + "code_scanning_options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -72215,7 +72297,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -72408,6 +72497,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -72563,7 +72655,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -72762,6 +72861,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -72804,6 +72906,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -73215,7 +73320,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -73408,6 +73520,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -73868,7 +73983,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -74061,6 +74183,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "disabled", "secret_scanning_push_protection": "disabled", @@ -74542,7 +74667,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -74740,6 +74872,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -120136,7 +120271,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -120339,7 +120479,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -120444,7 +120589,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -120779,7 +120929,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -120915,7 +121070,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -130726,83 +130886,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -135252,83 +135335,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -235438,7 +235444,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -337094,7 +337107,7 @@ "/repos/{owner}/{repo}/issues/{issue_number}/sub_issues": { "get": { "summary": "List sub-issues", - "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\n\n- **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", "tags": [ "issues" ], 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 bb3ae6d66d..8e27ded4dd 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 @@ -851,7 +851,7 @@ paths: - subscriptions_url - type - url - type: &260 + type: &281 type: string description: The type of credit the user is receiving. enum: @@ -1017,7 +1017,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &602 + - &604 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1573,7 +1573,7 @@ paths: schema: type: integer default: 30 - - &173 + - &174 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1589,7 +1589,7 @@ paths: application/json: schema: type: array - items: &174 + items: &175 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1669,7 +1669,7 @@ paths: - installation_id - repository_id examples: - default: &175 + default: &176 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1797,7 +1797,7 @@ paths: description: Response content: application/json: - schema: &176 + schema: &177 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1911,7 +1911,7 @@ paths: - request - response examples: - default: &177 + default: &178 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2841,7 +2841,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &238 + properties: &239 id: description: Unique identifier of the repository example: 42 @@ -3279,7 +3279,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &239 + required: &240 - archive_url - assignees_url - blobs_url @@ -7091,6 +7091,11 @@ paths: type: object description: Feature options for code scanning nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default @@ -7386,6 +7391,15 @@ paths: - disabled - not_set default: disabled + code_scanning_options: &145 + type: object + description: Security Configuration feature options for code scanning + nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -7571,7 +7585,7 @@ paths: description: Response content: application/json: - schema: &146 + schema: &147 type: array description: A list of default code security configurations items: @@ -7587,7 +7601,7 @@ paths: default configuration: *43 examples: - default: &147 + default: &148 value: - default_for_new_repos: public configuration: @@ -7606,6 +7620,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: enabled @@ -7640,6 +7656,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: disabled @@ -7914,7 +7932,7 @@ paths: - *42 - *45 responses: - '204': &148 + '204': &149 description: A header with no content is returned. '400': *14 '403': *29 @@ -8041,7 +8059,7 @@ paths: default: value: default_for_new_repos: all - configuration: &145 + configuration: &146 value: id: 1325 target_type: organization @@ -8058,6 +8076,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: enabled secret_scanning_push_protection: disabled @@ -8124,7 +8144,7 @@ paths: application/json: schema: type: array - items: &149 + items: &150 type: object description: Repositories associated with a code security configuration and attachment status @@ -8425,7 +8445,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &150 + repository: &151 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8519,7 +8539,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *42 - - &155 + - &156 name: state in: query description: |- @@ -8528,7 +8548,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &156 + - &157 name: severity in: query description: |- @@ -8537,7 +8557,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &157 + - &158 name: ecosystem in: query description: |- @@ -8546,14 +8566,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &158 + - &159 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &159 + - &160 name: epss_percentage in: query description: |- @@ -8565,7 +8585,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &160 + - &161 name: has in: query description: |- @@ -8579,7 +8599,7 @@ paths: type: string enum: - patch - - &161 + - &162 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8589,7 +8609,7 @@ paths: enum: - development - runtime - - &162 + - &163 name: sort in: query description: |- @@ -8607,7 +8627,7 @@ paths: - *48 - *40 - *41 - - &163 + - &164 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -8620,7 +8640,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &164 + - &165 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -8640,7 +8660,7 @@ paths: application/json: schema: type: array - items: &165 + items: &166 type: object description: A Dependabot alert. properties: @@ -8706,7 +8726,7 @@ paths: - unknown - direct - transitive - security_advisory: &433 + security_advisory: &454 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -8968,7 +8988,7 @@ paths: format: date-time readOnly: true nullable: true - auto_dismissed_at: &434 + auto_dismissed_at: &455 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -8994,7 +9014,7 @@ paths: - repository additionalProperties: false examples: - default: &166 + default: &167 value: - number: 2 state: dismissed @@ -9341,7 +9361,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *42 - - &250 + - &271 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9352,7 +9372,7 @@ paths: enum: - open - resolved - - &251 + - &272 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9362,7 +9382,7 @@ paths: required: false schema: type: string - - &252 + - &273 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9371,7 +9391,7 @@ paths: required: false schema: type: string - - &253 + - &274 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -9387,7 +9407,7 @@ paths: - *17 - *40 - *41 - - &254 + - &275 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9396,7 +9416,7 @@ paths: required: false schema: type: string - - &255 + - &276 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9405,7 +9425,7 @@ paths: schema: type: boolean default: false - - &256 + - &277 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9414,7 +9434,7 @@ paths: schema: type: boolean default: false - - &257 + - &278 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -9430,7 +9450,7 @@ paths: application/json: schema: type: array - items: &258 + items: &279 type: object properties: number: *54 @@ -9449,14 +9469,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &580 + state: &582 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &581 + resolution: &583 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -9563,8 +9583,8 @@ paths: pull request. ' - oneOf: &582 - - &584 + oneOf: &584 + - &586 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -9616,7 +9636,7 @@ paths: - blob_url - commit_sha - commit_url - - &585 + - &587 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -9671,7 +9691,7 @@ paths: - page_url - commit_sha - commit_url - - &586 + - &588 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -9685,7 +9705,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &587 + - &589 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -9699,7 +9719,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &588 + - &590 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -9713,7 +9733,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &589 + - &591 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -9727,7 +9747,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &590 + - &592 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -9741,7 +9761,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &591 + - &593 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -9755,7 +9775,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &592 + - &594 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -9769,7 +9789,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &593 + - &595 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -9783,7 +9803,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &594 + - &596 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -9797,7 +9817,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &595 + - &597 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -9811,7 +9831,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &596 + - &598 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -9831,7 +9851,7 @@ paths: description: A boolean value representing whether or not the token in the alert was detected in more than one location. examples: - default: &259 + default: &280 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -10183,7 +10203,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &482 + properties: &503 id: type: integer format: int64 @@ -10295,7 +10315,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &418 + properties: &439 url: type: string format: uri @@ -10365,7 +10385,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &419 + required: &440 - closed_issues - creator - description @@ -10444,7 +10464,7 @@ paths: timeline_url: type: string format: uri - type: &195 + type: &196 title: Issue Type description: The type of issue. type: object @@ -10569,7 +10589,7 @@ paths: - total - completed - percent_completed - required: &483 + required: &504 - assignee - closed_at - comments @@ -10591,7 +10611,7 @@ paths: - author_association - created_at - updated_at - comment: &480 + comment: &501 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11158,7 +11178,7 @@ paths: url: type: string format: uri - user: &625 + user: &627 title: Public User description: Public User type: object @@ -13028,7 +13048,7 @@ paths: - closed - all default: open - - &198 + - &199 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -13079,7 +13099,7 @@ paths: type: array items: *77 examples: - default: &199 + default: &200 value: - id: 1 node_id: MDU6SXNzdWUx @@ -14464,14 +14484,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &283 + - &304 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &284 + - &305 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14542,7 +14562,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &295 + '301': &316 description: Moved permanently content: application/json: @@ -14564,7 +14584,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &512 + - &533 name: all description: If `true`, show notifications marked as read. in: query @@ -14572,7 +14592,7 @@ paths: schema: type: boolean default: false - - &513 + - &534 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14582,7 +14602,7 @@ paths: type: boolean default: false - *67 - - &514 + - &535 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -14618,7 +14638,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &168 + properties: &169 id: type: integer format: int64 @@ -14894,7 +14914,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &240 + security_and_analysis: &241 nullable: true type: object properties: @@ -14968,7 +14988,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &169 + required: &170 - archive_url - assignees_url - blobs_url @@ -15056,7 +15076,7 @@ paths: - url - subscription_url examples: - default: &515 + default: &536 value: - id: '1' repository: @@ -15598,11 +15618,11 @@ paths: application/json: schema: type: array - items: &205 + items: &206 title: Organization Simple description: A GitHub organization. type: object - properties: &152 + properties: &153 login: type: string example: github @@ -15643,7 +15663,7 @@ paths: type: string example: A great organization nullable: true - required: &153 + required: &154 - login - url - id @@ -15657,7 +15677,7 @@ paths: - avatar_url - description examples: - default: &643 + default: &645 value: - login: github id: 1 @@ -15968,7 +15988,7 @@ paths: url: https://docs.github.com/rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization parameters: - *96 - - &669 + - &671 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -15977,7 +15997,7 @@ paths: required: false schema: type: integer - - &670 + - &672 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -15986,7 +16006,7 @@ paths: required: false schema: type: integer - - &671 + - &673 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -15995,7 +16015,7 @@ paths: required: false schema: type: integer - - &672 + - &674 name: hour description: If specified, only return results for a single hour. The value of `hour` is an integer between `0` and `23`. If no `year`, `month`, or @@ -16870,7 +16890,7 @@ paths: type: integer repository_cache_usages: type: array - items: &300 + items: &321 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -17737,7 +17757,7 @@ paths: - all - local_only - selected - selected_actions_url: &306 + selected_actions_url: &327 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -17827,7 +17847,7 @@ paths: type: array items: *60 examples: - default: &637 + default: &639 value: total_count: 1 repositories: @@ -18155,7 +18175,7 @@ paths: description: Response content: application/json: - schema: &310 + schema: &331 type: object properties: default_workflow_permissions: &115 @@ -18206,7 +18226,7 @@ paths: required: false content: application/json: - schema: &311 + schema: &332 type: object properties: default_workflow_permissions: *115 @@ -18695,7 +18715,7 @@ paths: type: array items: *122 examples: - default: &628 + default: &630 value: total_count: 1 repositories: @@ -19337,7 +19357,7 @@ paths: application/json: schema: type: array - items: &312 + items: &333 title: Runner Application description: Runner Application type: object @@ -19362,7 +19382,7 @@ paths: - download_url - filename examples: - default: &313 + default: &334 value: - os: osx architecture: x64 @@ -19448,7 +19468,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &314 + '201': &335 description: Response content: application/json: @@ -19559,7 +19579,7 @@ paths: - token - expires_at examples: - default: &315 + default: &336 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -19598,7 +19618,7 @@ paths: application/json: schema: *126 examples: - default: &316 + default: &337 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -19632,7 +19652,7 @@ paths: application/json: schema: *124 examples: - default: &317 + default: &338 value: id: 23 name: MBP @@ -19858,7 +19878,7 @@ paths: - *96 - *123 responses: - '200': &318 + '200': &339 description: Response content: application/json: @@ -19915,7 +19935,7 @@ paths: parameters: - *96 - *123 - - &319 + - &340 name: name description: The name of a self-hosted runner's custom label. in: path @@ -20045,7 +20065,7 @@ paths: description: Response content: application/json: - schema: &331 + schema: &352 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -20074,7 +20094,7 @@ paths: - key_id - key examples: - default: &332 + default: &353 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -20487,7 +20507,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *96 - - &305 + - &326 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -20994,12 +21014,12 @@ paths: required: - subject_digests examples: - default: &658 + default: &660 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &659 + withPredicateType: &661 value: subject_digests: - sha256:abc123 @@ -21057,7 +21077,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &660 + default: &662 value: attestations_subject_digests: - sha256:abc: @@ -21351,7 +21371,7 @@ paths: bundle_url: type: string examples: - default: &345 + default: &366 value: attestations: - bundle: @@ -21470,7 +21490,7 @@ paths: type: array items: *4 examples: - default: &200 + default: &201 value: - login: octocat id: 1 @@ -21652,7 +21672,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &154 + items: &155 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -21711,7 +21731,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &213 + properties: &214 id: description: Unique identifier of the team type: integer @@ -21767,7 +21787,7 @@ paths: to within LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &214 + required: &215 - id - node_id - url @@ -22266,7 +22286,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *96 - - &371 + - &392 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -22276,7 +22296,7 @@ paths: schema: &142 type: string description: The name of the tool used to generate the code scanning analysis. - - &372 + - &393 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -22299,7 +22319,7 @@ paths: be returned. in: query required: false - schema: &374 + schema: &395 type: string description: State of a code scanning alert. enum: @@ -22322,7 +22342,7 @@ paths: be returned. in: query required: false - schema: &375 + schema: &396 type: string description: Severity of a code scanning alert. enum: @@ -22348,7 +22368,7 @@ paths: updated_at: *139 url: *56 html_url: *57 - instances_url: &376 + instances_url: &397 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -22371,7 +22391,7 @@ paths: required: *21 nullable: true dismissed_at: *141 - dismissed_reason: &377 + dismissed_reason: &398 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -22380,13 +22400,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &378 + dismissed_comment: &399 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &379 + rule: &400 type: object properties: id: @@ -22439,7 +22459,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &380 + tool: &401 type: object properties: name: *142 @@ -22449,15 +22469,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *143 - most_recent_instance: &381 + most_recent_instance: &402 type: object properties: - ref: &373 + ref: &394 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &391 + analysis_key: &412 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -22468,7 +22488,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &392 + category: &413 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -22978,6 +22998,7 @@ paths: - disabled - not_set default: disabled + code_scanning_options: *145 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -23120,7 +23141,7 @@ paths: application/json: schema: *43 examples: - default: *145 + default: *146 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23148,9 +23169,9 @@ paths: description: Response content: application/json: - schema: *146 + schema: *147 examples: - default: *147 + default: *148 '304': *37 '403': *29 '404': *6 @@ -23202,7 +23223,7 @@ paths: - 32 - 91 responses: - '204': *148 + '204': *149 '400': *14 '403': *29 '404': *6 @@ -23237,7 +23258,7 @@ paths: application/json: schema: *43 examples: - default: *145 + default: *146 '304': *37 '403': *29 '404': *6 @@ -23478,6 +23499,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: disabled secret_scanning_push_protection: disabled @@ -23519,7 +23542,7 @@ paths: - *96 - *45 responses: - '204': *148 + '204': *149 '400': *14 '403': *29 '404': *6 @@ -23657,7 +23680,7 @@ paths: default: value: default_for_new_repos: all - configuration: *145 + configuration: *146 '403': *29 '404': *6 x-github: @@ -23710,13 +23733,13 @@ paths: application/json: schema: type: array - items: *149 + items: *150 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *150 + repository: *151 '403': *29 '404': *6 x-github: @@ -23756,7 +23779,7 @@ paths: type: integer codespaces: type: array - items: &201 + items: &202 type: object title: Codespace description: A codespace. @@ -23786,7 +23809,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &404 + properties: &425 name: type: string description: The name of the machine. @@ -23828,7 +23851,7 @@ paths: - ready - in_progress nullable: true - required: &405 + required: &426 - name - display_name - operating_system @@ -24033,7 +24056,7 @@ paths: - pulls_url - recent_folders examples: - default: &202 + default: &203 value: total_count: 3 codespaces: @@ -24657,7 +24680,7 @@ paths: type: integer secrets: type: array - items: &151 + items: &152 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -24696,7 +24719,7 @@ paths: - updated_at - visibility examples: - default: &406 + default: &427 value: total_count: 2 secrets: @@ -24734,7 +24757,7 @@ paths: description: Response content: application/json: - schema: &407 + schema: &428 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -24763,7 +24786,7 @@ paths: - key_id - key examples: - default: &408 + default: &429 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24793,9 +24816,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *152 examples: - default: &410 + default: &431 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -25262,7 +25285,7 @@ paths: currently being billed. seats: type: array - items: &204 + items: &205 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -25279,14 +25302,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *152 - required: *153 + properties: *153 + required: *154 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *154 + - *155 - title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -25835,7 +25858,7 @@ paths: application/json: schema: type: array - items: &265 + items: &286 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -26142,7 +26165,7 @@ paths: - date additionalProperties: true examples: - default: &266 + default: &287 value: - date: '2024-06-24' total_active_users: 24 @@ -26244,7 +26267,7 @@ paths: '500': *97 '403': *29 '404': *6 - '422': &267 + '422': &288 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -26272,7 +26295,6 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *96 - - *155 - *156 - *157 - *158 @@ -26280,11 +26302,12 @@ paths: - *160 - *161 - *162 + - *163 - *48 - *40 - *41 - - *163 - *164 + - *165 - *17 responses: '200': @@ -26293,9 +26316,9 @@ paths: application/json: schema: type: array - items: *165 + items: *166 examples: - default: *166 + default: *167 '304': *37 '400': *14 '403': *29 @@ -26339,7 +26362,7 @@ paths: type: integer secrets: type: array - items: &167 + items: &168 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -26416,7 +26439,7 @@ paths: description: Response content: application/json: - schema: &437 + schema: &458 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -26433,7 +26456,7 @@ paths: - key_id - key examples: - default: &438 + default: &459 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26463,7 +26486,7 @@ paths: description: Response content: application/json: - schema: *167 + schema: *168 examples: default: value: @@ -26760,7 +26783,7 @@ paths: application/json: schema: type: array - items: &216 + items: &217 title: Package description: A software package type: object @@ -26810,8 +26833,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *168 - required: *169 + properties: *169 + required: *170 nullable: true created_at: type: string @@ -26830,7 +26853,7 @@ paths: - created_at - updated_at examples: - default: &217 + default: &218 value: - id: 197 name: hello_docker @@ -26997,7 +27020,7 @@ paths: application/json: schema: type: array - items: &192 + items: &193 title: Organization Invitation description: Organization Invitation type: object @@ -27044,7 +27067,7 @@ paths: - invitation_teams_url - node_id examples: - default: &193 + default: &194 value: - id: 1 login: monalisa @@ -27111,7 +27134,7 @@ paths: application/json: schema: type: array - items: &170 + items: &171 title: Org Hook description: Org Hook type: object @@ -27282,9 +27305,9 @@ paths: description: Response content: application/json: - schema: *170 + schema: *171 examples: - default: &171 + default: &172 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -27332,7 +27355,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *96 - - &172 + - &173 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -27345,9 +27368,9 @@ paths: description: Response content: application/json: - schema: *170 + schema: *171 examples: - default: *171 + default: *172 '404': *6 x-github: githubCloudOnly: false @@ -27375,7 +27398,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *96 - - *172 + - *173 requestBody: required: false content: @@ -27420,7 +27443,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *171 examples: default: value: @@ -27462,7 +27485,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *96 - - *172 + - *173 responses: '204': description: Response @@ -27490,7 +27513,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *96 - - *172 + - *173 responses: '200': description: Response @@ -27521,7 +27544,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *96 - - *172 + - *173 requestBody: required: false content: @@ -27572,9 +27595,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *96 - - *172 - - *17 - *173 + - *17 + - *174 responses: '200': description: Response @@ -27582,9 +27605,9 @@ paths: application/json: schema: type: array - items: *174 + items: *175 examples: - default: *175 + default: *176 '400': *14 '422': *15 x-github: @@ -27610,16 +27633,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *96 - - *172 + - *173 - *16 responses: '200': description: Response content: application/json: - schema: *176 + schema: *177 examples: - default: *177 + default: *178 '400': *14 '422': *15 x-github: @@ -27645,7 +27668,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *96 - - *172 + - *173 - *16 responses: '202': *39 @@ -27675,7 +27698,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *96 - - *172 + - *173 responses: '204': description: Response @@ -27698,7 +27721,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *96 - - &182 + - &183 name: actor_type in: path description: The type of the actor @@ -27711,14 +27734,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &183 + - &184 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &178 + - &179 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -27726,7 +27749,7 @@ paths: required: true schema: type: string - - &179 + - &180 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -27820,12 +27843,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *96 - - *178 - *179 + - *180 - *19 - *17 - *48 - - &188 + - &189 name: sort description: The property to sort the results by. in: query @@ -27904,14 +27927,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *96 - - *178 - *179 + - *180 responses: '200': description: Response content: application/json: - schema: &180 + schema: &181 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -27927,7 +27950,7 @@ paths: type: integer format: int64 examples: - default: &181 + default: &182 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -27948,23 +27971,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *96 - - &184 + - &185 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *178 - *179 + - *180 responses: '200': description: Response content: application/json: - schema: *180 + schema: *181 examples: - default: *181 + default: *182 x-github: enabledForGitHubApps: true category: orgs @@ -27983,18 +28006,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *96 - - *178 - *179 - - *182 + - *180 - *183 + - *184 responses: '200': description: Response content: application/json: - schema: *180 + schema: *181 examples: - default: *181 + default: *182 x-github: enabledForGitHubApps: true category: orgs @@ -28012,9 +28035,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *96 - - *178 - *179 - - &185 + - *180 + - &186 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -28027,7 +28050,7 @@ paths: description: Response content: application/json: - schema: &186 + schema: &187 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -28043,7 +28066,7 @@ paths: type: integer format: int64 examples: - default: &187 + default: &188 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -28080,18 +28103,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *96 - - *184 - - *178 - - *179 - *185 + - *179 + - *180 + - *186 responses: '200': description: Response content: application/json: - schema: *186 + schema: *187 examples: - default: *187 + default: *188 x-github: enabledForGitHubApps: true category: orgs @@ -28109,19 +28132,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *96 - - *182 - *183 - - *178 + - *184 - *179 - - *185 + - *180 + - *186 responses: '200': description: Response content: application/json: - schema: *186 + schema: *187 examples: - default: *187 + default: *188 x-github: enabledForGitHubApps: true category: orgs @@ -28139,13 +28162,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *96 - - *184 - - *178 + - *185 - *179 + - *180 - *19 - *17 - *48 - - *188 + - *189 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -28226,7 +28249,7 @@ paths: application/json: schema: *22 examples: - default: &476 + default: &497 value: id: 1 account: @@ -28392,12 +28415,12 @@ paths: application/json: schema: anyOf: - - &190 + - &191 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &189 + limit: &190 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -28422,7 +28445,7 @@ paths: properties: {} additionalProperties: false examples: - default: &191 + default: &192 value: limit: collaborators_only origin: organization @@ -28451,13 +28474,13 @@ paths: required: true content: application/json: - schema: &477 + schema: &498 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *189 + limit: *190 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -28481,9 +28504,9 @@ paths: description: Response content: application/json: - schema: *190 + schema: *191 examples: - default: *191 + default: *192 '422': *15 x-github: githubCloudOnly: false @@ -28559,9 +28582,9 @@ paths: application/json: schema: type: array - items: *192 + items: *193 examples: - default: *193 + default: *194 headers: Link: *58 '404': *6 @@ -28638,7 +28661,7 @@ paths: description: Response content: application/json: - schema: *192 + schema: *193 examples: default: value: @@ -28693,7 +28716,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *96 - - &194 + - &195 name: invitation_id description: The unique identifier of the invitation. in: path @@ -28724,7 +28747,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *96 - - *194 + - *195 - *17 - *19 responses: @@ -28734,9 +28757,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: &215 + default: &216 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -28779,7 +28802,7 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: default: value: @@ -28864,9 +28887,9 @@ paths: description: Response content: application/json: - schema: *195 + schema: *196 examples: - default: &196 + default: &197 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -28899,7 +28922,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *96 - - &197 + - &198 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -28952,9 +28975,9 @@ paths: description: Response content: application/json: - schema: *195 + schema: *196 examples: - default: *196 + default: *197 '404': *6 '422': *7 x-github: @@ -28979,7 +29002,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *96 - - *197 + - *198 responses: '204': description: Response @@ -29042,7 +29065,7 @@ paths: - closed - all default: open - - *198 + - *199 - name: type description: Can be the name of an issue type. in: query @@ -29073,7 +29096,7 @@ paths: type: array items: *77 examples: - default: *199 + default: *200 headers: Link: *58 '404': *6 @@ -29133,7 +29156,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '422': *15 @@ -29232,9 +29255,9 @@ paths: type: integer codespaces: type: array - items: *201 + items: *202 examples: - default: *202 + default: *203 '304': *37 '500': *97 '401': *25 @@ -29261,7 +29284,7 @@ paths: parameters: - *96 - *135 - - &203 + - &204 name: codespace_name in: path required: true @@ -29296,15 +29319,15 @@ paths: parameters: - *96 - *135 - - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: &403 + default: &424 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -29484,7 +29507,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *204 + schema: *205 examples: default: value: @@ -29559,7 +29582,7 @@ paths: description: Response content: application/json: - schema: &206 + schema: &207 title: Org Membership description: Org Membership type: object @@ -29603,7 +29626,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *205 + organization: *206 user: title: Simple User description: A GitHub user. @@ -29626,7 +29649,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &207 + response-if-user-has-an-active-admin-membership-with-organization: &208 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -29723,9 +29746,9 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: - response-if-user-already-had-membership-with-organization: *207 + response-if-user-already-had-membership-with-organization: *208 '422': *15 '403': *29 x-github: @@ -29796,7 +29819,7 @@ paths: application/json: schema: type: array - items: &208 + items: &209 title: Migration description: A migration. type: object @@ -30125,7 +30148,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -30304,7 +30327,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *96 - - &209 + - &210 name: migration_id description: The unique identifier of the migration. in: path @@ -30331,7 +30354,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -30501,7 +30524,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *96 - - *209 + - *210 responses: '302': description: Response @@ -30523,7 +30546,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *96 - - *209 + - *210 responses: '204': description: Response @@ -30547,8 +30570,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *96 - - *209 - - &642 + - *210 + - &644 name: repo_name description: repo_name parameter in: path @@ -30576,7 +30599,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *96 - - *209 + - *210 - *17 - *19 responses: @@ -30588,7 +30611,7 @@ paths: type: array items: *122 examples: - default: &222 + default: &223 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -30741,7 +30764,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &212 + items: &213 title: Organization Role description: Organization roles type: object @@ -30889,7 +30912,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *96 - - &210 + - &211 name: team_slug description: The slug of the team name. in: path @@ -30921,8 +30944,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *96 - - *210 - - &211 + - *211 + - &212 name: role_id description: The unique identifier of the role. in: path @@ -30958,8 +30981,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *96 - - *210 - *211 + - *212 responses: '204': description: Response @@ -31012,7 +31035,7 @@ paths: parameters: - *96 - *135 - - *211 + - *212 responses: '204': description: Response @@ -31044,7 +31067,7 @@ paths: parameters: - *96 - *135 - - *211 + - *212 responses: '204': description: Response @@ -31073,13 +31096,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *96 - - *211 + - *212 responses: '200': description: Response content: application/json: - schema: *212 + schema: *213 examples: default: value: @@ -31130,7 +31153,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *96 - - *211 + - *212 - *17 - *19 responses: @@ -31208,8 +31231,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *213 - required: *214 + properties: *214 + required: *215 nullable: true required: - id @@ -31224,7 +31247,7 @@ paths: - slug - parent examples: - default: *215 + default: *216 headers: Link: *58 '404': @@ -31254,7 +31277,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *96 - - *211 + - *212 - *17 - *19 responses: @@ -31282,13 +31305,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &261 + items: &282 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *213 - required: *214 + properties: *214 + required: *215 name: nullable: true type: string @@ -31383,7 +31406,7 @@ paths: - type - url examples: - default: *200 + default: *201 headers: Link: *58 '404': @@ -31434,7 +31457,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -31576,7 +31599,7 @@ paths: - nuget - container - *96 - - &644 + - &646 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -31612,12 +31635,12 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: *217 + default: *218 '403': *29 '401': *25 - '400': &646 + '400': &648 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -31639,7 +31662,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &218 + - &219 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -31657,7 +31680,7 @@ paths: - docker - nuget - container - - &219 + - &220 name: package_name description: The name of the package. in: path @@ -31670,7 +31693,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *217 examples: default: value: @@ -31722,8 +31745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *218 - *219 + - *220 - *96 responses: '204': @@ -31756,8 +31779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *218 - *219 + - *220 - *96 - name: token description: package token @@ -31790,8 +31813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *218 - *219 + - *220 - *96 - *19 - *17 @@ -31812,7 +31835,7 @@ paths: application/json: schema: type: array - items: &220 + items: &221 title: Package Version description: A version of a software package type: object @@ -31937,10 +31960,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *218 - *219 + - *220 - *96 - - &221 + - &222 name: package_version_id description: Unique identifier of the package version. in: path @@ -31952,7 +31975,7 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: default: value: @@ -31988,10 +32011,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *218 - *219 + - *220 - *96 - - *221 + - *222 responses: '204': description: Response @@ -32023,10 +32046,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *218 - *219 + - *220 - *96 - - *221 + - *222 responses: '204': description: Response @@ -32056,7 +32079,7 @@ paths: - *96 - *17 - *19 - - &223 + - &224 name: sort description: The property by which to sort the results. in: query @@ -32067,7 +32090,7 @@ paths: - created_at default: created_at - *48 - - &224 + - &225 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -32078,7 +32101,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &225 + - &226 name: repository description: The name of the repository to use to filter the results. in: query @@ -32086,7 +32109,7 @@ paths: schema: type: string example: Hello-World - - &226 + - &227 name: permission description: The permission to use to filter the results. in: query @@ -32094,7 +32117,7 @@ paths: schema: type: string example: issues_read - - &227 + - &228 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -32104,7 +32127,7 @@ paths: schema: type: string format: date-time - - &228 + - &229 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -32114,7 +32137,7 @@ paths: schema: type: string format: date-time - - &229 + - &230 name: token_id description: The ID of the token in: query @@ -32384,7 +32407,7 @@ paths: '422': *15 '404': *6 '403': *29 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32427,7 +32450,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -32453,14 +32476,14 @@ paths: - *96 - *17 - *19 - - *223 - - *48 - *224 + - *48 - *225 - *226 - *227 - *228 - *229 + - *230 responses: '500': *97 '422': *15 @@ -32699,7 +32722,7 @@ paths: responses: '500': *97 '404': *6 - '204': *148 + '204': *149 '403': *29 '422': *15 x-github: @@ -32742,7 +32765,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -32784,7 +32807,7 @@ paths: type: integer configurations: type: array - items: &230 + items: &231 title: Organization private registry description: Private registry configuration for an organization type: object @@ -32806,6 +32829,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with @@ -32889,6 +32917,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -32987,6 +33020,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the @@ -33022,7 +33060,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &231 + org-private-registry-with-selected-visibility: &232 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -33118,9 +33156,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *230 + schema: *231 examples: - default: *231 + default: *232 '404': *6 x-github: githubCloudOnly: false @@ -33164,6 +33202,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -33279,7 +33322,7 @@ paths: application/json: schema: type: array - items: &232 + items: &233 title: Project description: Projects are a way to organize columns and cards of work. @@ -33452,7 +33495,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: default: value: @@ -33490,7 +33533,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &292 + '410': &313 description: Gone content: application/json: @@ -33525,7 +33568,7 @@ paths: application/json: schema: type: array - items: &233 + items: &234 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -33591,7 +33634,7 @@ paths: - property_name - value_type examples: - default: &234 + default: &235 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -33650,7 +33693,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *233 + items: *234 minItems: 1 maxItems: 100 required: @@ -33680,9 +33723,9 @@ paths: application/json: schema: type: array - items: *233 + items: *234 examples: - default: *234 + default: *235 '403': *29 '404': *6 x-github: @@ -33704,7 +33747,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *96 - - &235 + - &236 name: custom_property_name description: The custom property name in: path @@ -33716,9 +33759,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: &236 + default: &237 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -33753,7 +33796,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *96 - - *235 + - *236 requestBody: required: true content: @@ -33822,9 +33865,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *236 + default: *237 '403': *29 '404': *6 x-github: @@ -33848,9 +33891,9 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *96 - - *235 + - *236 responses: - '204': *148 + '204': *149 '403': *29 '404': *6 x-github: @@ -33909,7 +33952,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &237 + items: &238 title: Custom Property Value description: Custom property name and associated value type: object @@ -33996,7 +34039,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *237 + items: *238 required: - repository_names - properties @@ -34049,7 +34092,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -34188,7 +34231,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -34390,7 +34433,7 @@ paths: description: Response content: application/json: - schema: &294 + schema: &315 title: Full Repository description: Full Repository type: object @@ -34667,8 +34710,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *238 - required: *239 + properties: *239 + required: *240 nullable: true temp_clone_token: type: string @@ -34783,7 +34826,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &425 + properties: &446 url: type: string format: uri @@ -34799,12 +34842,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &426 + required: &447 - url - key - name - html_url - security_and_analysis: *240 + security_and_analysis: *241 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -34888,7 +34931,7 @@ paths: - network_count - subscribers_count examples: - default: &296 + default: &317 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -35409,7 +35452,7 @@ paths: - *96 - *17 - *19 - - &565 + - &566 name: targets description: | A comma-separated list of rule targets to filter by. @@ -35427,7 +35470,7 @@ paths: application/json: schema: type: array - items: &247 + items: &267 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -35462,7 +35505,7 @@ paths: source: type: string description: The name of the source - enforcement: &243 + enforcement: &244 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -35475,7 +35518,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &244 + items: &245 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -35540,7 +35583,7 @@ paths: conditions: nullable: true anyOf: - - &241 + - &242 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -35564,7 +35607,7 @@ paths: match. items: type: string - - &245 + - &246 title: Organization ruleset conditions type: object description: |- @@ -35578,7 +35621,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *241 + - *242 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -35612,7 +35655,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *241 + - *242 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -35634,7 +35677,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *241 + - *242 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -35647,7 +35690,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &242 + items: &243 title: Repository ruleset property targeting definition type: object @@ -35680,17 +35723,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *242 + items: *243 required: - repository_property rules: type: array - items: &246 + items: &567 title: Repository Rule type: object description: A repository rule. oneOf: - - &543 + - &247 title: creation description: Only allow users with bypass permission to create matching refs. @@ -35702,7 +35745,7 @@ paths: type: string enum: - creation - - &544 + - &248 title: update description: Only allow users with bypass permission to update matching refs. @@ -35723,7 +35766,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &546 + - &249 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -35735,7 +35778,7 @@ paths: type: string enum: - deletion - - &547 + - &250 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -35747,7 +35790,7 @@ paths: type: string enum: - required_linear_history - - &548 + - &565 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -35825,7 +35868,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &549 + - &251 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -35849,7 +35892,7 @@ paths: type: string required: - required_deployment_environments - - &550 + - &252 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -35861,7 +35904,7 @@ paths: type: string enum: - required_signatures - - &551 + - &253 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -35923,7 +35966,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &552 + - &254 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -35971,7 +36014,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &553 + - &255 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -35983,7 +36026,7 @@ paths: type: string enum: - non_fast_forward - - &554 + - &256 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -36019,7 +36062,7 @@ paths: required: - operator - pattern - - &555 + - &257 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -36055,7 +36098,7 @@ paths: required: - operator - pattern - - &556 + - &258 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -36091,7 +36134,7 @@ paths: required: - operator - pattern - - &557 + - &259 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -36127,7 +36170,7 @@ paths: required: - operator - pattern - - &558 + - &260 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -36163,7 +36206,7 @@ paths: required: - operator - pattern - - &559 + - &261 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -36188,7 +36231,7 @@ paths: type: string required: - restricted_file_paths - - &560 + - &262 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -36212,7 +36255,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &561 + - &263 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -36235,7 +36278,7 @@ paths: type: string required: - restricted_file_extensions - - &562 + - &264 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -36260,7 +36303,7 @@ paths: maximum: 100 required: - max_file_size - - &563 + - &265 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -36310,7 +36353,7 @@ paths: - repository_id required: - workflows - - &564 + - &266 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -36444,16 +36487,40 @@ paths: - push - repository default: branch - enforcement: *243 + enforcement: *244 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *244 - conditions: *245 + items: *245 + conditions: *246 rules: type: array description: An array of rules within the ruleset. - items: *246 + items: &269 + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - *247 + - *248 + - *249 + - *250 + - *251 + - *252 + - *253 + - *254 + - *255 + - *256 + - *257 + - *258 + - *259 + - *260 + - *261 + - *262 + - *263 + - *264 + - *265 + - *266 required: - name - enforcement @@ -36491,9 +36558,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: &248 + default: &268 value: id: 21 name: super cool ruleset @@ -36548,7 +36615,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *96 - - &566 + - &568 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -36563,7 +36630,7 @@ paths: in: query schema: type: string - - &567 + - &569 name: time_period description: |- The time period to filter by. @@ -36579,14 +36646,14 @@ paths: - week - month default: day - - &568 + - &570 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &569 + - &571 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -36606,7 +36673,7 @@ paths: description: Response content: application/json: - schema: &570 + schema: &572 title: Rule Suites description: Response type: array @@ -36661,7 +36728,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &571 + default: &573 value: - id: 21 actor_id: 12 @@ -36705,7 +36772,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *96 - - &572 + - &574 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -36721,7 +36788,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &575 title: Rule Suite description: Response type: object @@ -36820,7 +36887,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &574 + default: &576 value: id: 21 actor_id: 12 @@ -36893,9 +36960,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *248 + default: *268 '404': *6 '500': *97 put: @@ -36939,16 +37006,16 @@ paths: - tag - push - repository - enforcement: *243 + enforcement: *244 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *244 - conditions: *245 + items: *245 + conditions: *246 rules: description: An array of rules within the ruleset. type: array - items: *246 + items: *269 examples: default: value: @@ -36983,9 +37050,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *248 + default: *268 '404': *6 '500': *97 delete: @@ -37042,7 +37109,7 @@ paths: application/json: schema: type: array - items: &249 + items: &270 title: Ruleset version type: object description: The historical version of a ruleset @@ -37066,7 +37133,7 @@ paths: type: string format: date-time examples: - default: &576 + default: &578 value: - version_id: 3 actor: @@ -37119,9 +37186,9 @@ paths: description: Response content: application/json: - schema: &577 + schema: &579 allOf: - - *249 + - *270 - type: object required: - state @@ -37191,14 +37258,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *96 - - *250 - - *251 - - *252 - - *253 + - *271 + - *272 + - *273 + - *274 - *48 - *19 - *17 - - &578 + - &580 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -37208,7 +37275,7 @@ paths: required: false schema: type: string - - &579 + - &581 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -37218,10 +37285,10 @@ paths: required: false schema: type: string - - *254 - - *255 - - *256 - - *257 + - *275 + - *276 + - *277 + - *278 responses: '200': description: Response @@ -37229,9 +37296,9 @@ paths: application/json: schema: type: array - items: *258 + items: *279 examples: - default: *259 + default: *280 headers: Link: *58 '404': *6 @@ -37301,7 +37368,7 @@ paths: application/json: schema: type: array - items: &600 + items: &602 description: A repository security advisory. type: object properties: @@ -37521,7 +37588,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 credits_detailed: type: array nullable: true @@ -37531,7 +37598,7 @@ paths: type: object properties: user: *4 - type: *260 + type: *281 state: type: string description: The state of the user's acceptance of the @@ -37555,7 +37622,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *154 + items: *155 private_fork: readOnly: true nullable: true @@ -37592,7 +37659,7 @@ paths: - private_fork additionalProperties: false examples: - default: &601 + default: &603 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -37979,9 +38046,9 @@ paths: application/json: schema: type: array - items: *261 + items: *282 examples: - default: *215 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38005,7 +38072,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - *96 - - *210 + - *211 responses: '204': description: Response @@ -38031,7 +38098,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *96 - - *210 + - *211 responses: '204': description: Response @@ -38066,7 +38133,7 @@ paths: description: Response content: application/json: - schema: &663 + schema: &665 type: object properties: total_minutes_used: @@ -38136,7 +38203,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &664 + default: &666 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -38172,7 +38239,7 @@ paths: description: Response content: application/json: - schema: &665 + schema: &667 type: object properties: total_gigabytes_bandwidth_used: @@ -38190,7 +38257,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &666 + default: &668 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -38222,7 +38289,7 @@ paths: description: Response content: application/json: - schema: &667 + schema: &669 type: object properties: days_left_in_billing_cycle: @@ -38240,7 +38307,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &668 + default: &670 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -38282,7 +38349,7 @@ paths: type: integer network_configurations: type: array - items: &262 + items: &283 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -38402,9 +38469,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *283 examples: - default: &263 + default: &284 value: id: 123456789ABCDEF name: My network configuration @@ -38433,7 +38500,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *96 - - &264 + - &285 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -38445,9 +38512,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *283 examples: - default: *263 + default: *284 headers: Link: *58 x-github: @@ -38469,7 +38536,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *96 - - *264 + - *285 requestBody: required: true content: @@ -38508,9 +38575,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *283 examples: - default: *263 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38530,7 +38597,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *96 - - *264 + - *285 responses: '204': description: Response @@ -38638,7 +38705,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *96 - - *210 + - *211 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -38670,13 +38737,13 @@ paths: application/json: schema: type: array - items: *265 + items: *286 examples: - default: *266 + default: *287 '500': *97 '403': *29 '404': *6 - '422': *267 + '422': *288 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38704,9 +38771,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 headers: Link: *58 '403': *29 @@ -38800,7 +38867,7 @@ paths: description: Response content: application/json: - schema: &268 + schema: &289 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -38863,8 +38930,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *213 - required: *214 + properties: *214 + required: *215 nullable: true members_count: type: integer @@ -39110,7 +39177,7 @@ paths: - repos_count - organization examples: - default: &269 + default: &290 value: id: 1 node_id: MDQ6VGVhbTE= @@ -39181,15 +39248,15 @@ paths: url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - *96 - - *210 + - *211 responses: '200': description: Response content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '404': *6 x-github: githubCloudOnly: false @@ -39211,7 +39278,7 @@ paths: url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - *96 - - *210 + - *211 requestBody: required: false content: @@ -39273,16 +39340,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '201': description: Response content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '404': *6 '422': *15 '403': *29 @@ -39308,7 +39375,7 @@ paths: url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - *96 - - *210 + - *211 responses: '204': description: Response @@ -39335,7 +39402,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#list-discussions parameters: - *96 - - *210 + - *211 - *48 - *17 - *19 @@ -39352,7 +39419,7 @@ paths: application/json: schema: type: array - items: &270 + items: &291 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -39451,7 +39518,7 @@ paths: - updated_at - url examples: - default: &615 + default: &617 value: - author: login: octocat @@ -39526,7 +39593,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#create-a-discussion parameters: - *96 - - *210 + - *211 requestBody: required: true content: @@ -39560,9 +39627,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: &271 + default: &292 value: author: login: octocat @@ -39635,8 +39702,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#get-a-discussion parameters: - *96 - - *210 - - &272 + - *211 + - &293 name: discussion_number description: The number that identifies the discussion. in: path @@ -39648,9 +39715,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39673,8 +39740,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#update-a-discussion parameters: - *96 - - *210 - - *272 + - *211 + - *293 requestBody: required: false content: @@ -39697,9 +39764,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: &616 + default: &618 value: author: login: octocat @@ -39770,8 +39837,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#delete-a-discussion parameters: - *96 - - *210 - - *272 + - *211 + - *293 responses: '204': description: Response @@ -39798,8 +39865,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments parameters: - *96 - - *210 - - *272 + - *211 + - *293 - *48 - *17 - *19 @@ -39810,7 +39877,7 @@ paths: application/json: schema: type: array - items: &273 + items: &294 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -39882,7 +39949,7 @@ paths: - updated_at - url examples: - default: &617 + default: &619 value: - author: login: octocat @@ -39951,8 +40018,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *96 - - *210 - - *272 + - *211 + - *293 requestBody: required: true content: @@ -39974,9 +40041,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: &274 + default: &295 value: author: login: octocat @@ -40043,9 +40110,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *96 - - *210 - - *272 - - &275 + - *211 + - *293 + - &296 name: comment_number description: The number that identifies the comment. in: path @@ -40057,9 +40124,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *274 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40082,9 +40149,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *96 - - *210 - - *272 - - *275 + - *211 + - *293 + - *296 requestBody: required: true content: @@ -40106,9 +40173,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: &618 + default: &620 value: author: login: octocat @@ -40173,9 +40240,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *96 - - *210 - - *272 - - *275 + - *211 + - *293 + - *296 responses: '204': description: Response @@ -40202,9 +40269,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *96 - - *210 - - *272 - - *275 + - *211 + - *293 + - *296 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -40230,7 +40297,7 @@ paths: application/json: schema: type: array - items: &276 + items: &297 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -40273,7 +40340,7 @@ paths: - content - created_at examples: - default: &278 + default: &299 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -40324,9 +40391,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *96 - - *210 - - *272 - - *275 + - *211 + - *293 + - *296 requestBody: required: true content: @@ -40359,9 +40426,9 @@ paths: team discussion comment content: application/json: - schema: *276 + schema: *297 examples: - default: &277 + default: &298 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -40390,9 +40457,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40416,10 +40483,10 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *96 - - *210 - - *272 - - *275 - - &279 + - *211 + - *293 + - *296 + - &300 name: reaction_id description: The unique identifier of the reaction. in: path @@ -40452,8 +40519,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *96 - - *210 - - *272 + - *211 + - *293 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -40479,9 +40546,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -40508,8 +40575,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *96 - - *210 - - *272 + - *211 + - *293 requestBody: required: true content: @@ -40541,16 +40608,16 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -40574,9 +40641,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *96 - - *210 - - *272 - - *279 + - *211 + - *293 + - *300 responses: '204': description: Response @@ -40601,7 +40668,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -40611,9 +40678,9 @@ paths: application/json: schema: type: array - items: *192 + items: *193 examples: - default: *193 + default: *194 headers: Link: *58 x-github: @@ -40636,7 +40703,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-team-members parameters: - *96 - - *210 + - *211 - name: role description: Filters members returned by their role in the team. in: query @@ -40659,7 +40726,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -40690,14 +40757,14 @@ paths: url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - *96 - - *210 + - *211 - *135 responses: '200': description: Response content: application/json: - schema: &280 + schema: &301 title: Team Membership description: Team Membership type: object @@ -40724,7 +40791,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &619 + response-if-user-is-a-team-maintainer: &621 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -40761,7 +40828,7 @@ paths: url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *96 - - *210 + - *211 - *135 requestBody: required: false @@ -40787,9 +40854,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *301 examples: - response-if-users-membership-with-team-is-now-pending: &620 + response-if-users-membership-with-team-is-now-pending: &622 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -40825,7 +40892,7 @@ paths: url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - *96 - - *210 + - *211 - *135 responses: '204': @@ -40852,7 +40919,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-projects parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -40862,7 +40929,7 @@ paths: application/json: schema: type: array - items: &281 + items: &302 title: Team Project description: A team's access to a project. type: object @@ -40930,7 +40997,7 @@ paths: - updated_at - permissions examples: - default: &621 + default: &623 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -40994,8 +41061,8 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project parameters: - *96 - - *210 - - &282 + - *211 + - &303 name: project_id description: The unique identifier of the project. in: path @@ -41007,9 +41074,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *302 examples: - default: &622 + default: &624 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -41072,8 +41139,8 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions parameters: - *96 - - *210 - - *282 + - *211 + - *303 requestBody: required: false content: @@ -41140,8 +41207,8 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team parameters: - *96 - - *210 - - *282 + - *211 + - *303 responses: '204': description: Response @@ -41169,7 +41236,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -41181,7 +41248,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -41211,15 +41278,15 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *96 - - *210 - - *283 - - *284 + - *211 + - *304 + - *305 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &623 + schema: &625 title: Team Repository description: A team's access to a repository. type: object @@ -41789,9 +41856,9 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *96 - - *210 - - *283 - - *284 + - *211 + - *304 + - *305 requestBody: required: false content: @@ -41837,9 +41904,9 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - *96 - - *210 - - *283 - - *284 + - *211 + - *304 + - *305 responses: '204': description: Response @@ -41864,7 +41931,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -41874,9 +41941,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - response-if-child-teams-exist: &624 + response-if-child-teams-exist: &626 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -42003,7 +42070,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#get-a-project-card parameters: - - &285 + - &306 name: card_id description: The unique identifier of the card. in: path @@ -42015,7 +42082,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &307 title: Project Card description: Project cards represent a scope of work. type: object @@ -42082,7 +42149,7 @@ paths: - created_at - updated_at examples: - default: &287 + default: &308 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -42138,7 +42205,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#update-an-existing-project-card parameters: - - *285 + - *306 requestBody: required: false content: @@ -42165,9 +42232,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 '304': *37 '403': *29 '401': *25 @@ -42194,7 +42261,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#delete-a-project-card parameters: - - *285 + - *306 responses: '204': description: Response @@ -42238,7 +42305,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#move-a-project-card parameters: - - *285 + - *306 requestBody: required: true content: @@ -42349,7 +42416,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#get-a-project-column parameters: - - &288 + - &309 name: column_id description: The unique identifier of the column. in: path @@ -42361,7 +42428,7 @@ paths: description: Response content: application/json: - schema: &289 + schema: &310 title: Project Column description: Project columns contain cards of work. type: object @@ -42407,7 +42474,7 @@ paths: - created_at - updated_at examples: - default: &290 + default: &311 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -42442,7 +42509,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#update-an-existing-project-column parameters: - - *288 + - *309 requestBody: required: true content: @@ -42466,9 +42533,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *310 examples: - default: *290 + default: *311 '304': *37 '403': *29 '401': *25 @@ -42493,7 +42560,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#delete-a-project-column parameters: - - *288 + - *309 responses: '204': description: Response @@ -42522,7 +42589,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#list-project-cards parameters: - - *288 + - *309 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -42543,7 +42610,7 @@ paths: application/json: schema: type: array - items: *286 + items: *307 examples: default: value: @@ -42602,7 +42669,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#create-a-project-card parameters: - - *288 + - *309 requestBody: required: true content: @@ -42642,9 +42709,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 '304': *37 '403': *29 '401': *25 @@ -42700,7 +42767,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#move-a-project-column parameters: - - *288 + - *309 requestBody: required: true content: @@ -42760,15 +42827,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-a-project parameters: - - *282 + - *303 responses: '200': description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: &291 + default: &312 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -42825,7 +42892,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#update-a-project parameters: - - *282 + - *303 requestBody: required: false content: @@ -42871,9 +42938,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: *291 + default: *312 '404': description: Not Found if the authenticated user does not have access to the project @@ -42894,7 +42961,7 @@ paths: items: type: string '401': *25 - '410': *292 + '410': *313 '422': *7 x-github: githubCloudOnly: false @@ -42917,7 +42984,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#delete-a-project parameters: - - *282 + - *303 responses: '204': description: Delete Success @@ -42938,7 +43005,7 @@ paths: items: type: string '401': *25 - '410': *292 + '410': *313 '404': *6 x-github: githubCloudOnly: false @@ -42962,7 +43029,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#list-project-collaborators parameters: - - *282 + - *303 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -42989,7 +43056,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -43019,7 +43086,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#add-project-collaborator parameters: - - *282 + - *303 - *135 requestBody: required: false @@ -43072,7 +43139,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *282 + - *303 - *135 responses: '204': @@ -43104,7 +43171,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *282 + - *303 - *135 responses: '200': @@ -43178,7 +43245,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#list-project-columns parameters: - - *282 + - *303 - *17 - *19 responses: @@ -43188,7 +43255,7 @@ paths: application/json: schema: type: array - items: *289 + items: *310 examples: default: value: @@ -43226,7 +43293,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#create-a-project-column parameters: - - *282 + - *303 requestBody: required: true content: @@ -43249,7 +43316,7 @@ paths: description: Response content: application/json: - schema: *289 + schema: *310 examples: default: value: @@ -43314,7 +43381,7 @@ paths: resources: type: object properties: - core: &293 + core: &314 title: Rate Limit type: object properties: @@ -43331,21 +43398,21 @@ paths: - remaining - reset - used - graphql: *293 - search: *293 - code_search: *293 - source_import: *293 - integration_manifest: *293 - code_scanning_upload: *293 - actions_runner_registration: *293 - scim: *293 - dependency_snapshots: *293 - dependency_sbom: *293 - code_scanning_autofix: *293 + graphql: *314 + search: *314 + code_search: *314 + source_import: *314 + integration_manifest: *314 + code_scanning_upload: *314 + actions_runner_registration: *314 + scim: *314 + dependency_snapshots: *314 + dependency_sbom: *314 + code_scanning_autofix: *314 required: - core - search - rate: *293 + rate: *314 required: - rate - resources @@ -43449,14 +43516,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *294 + schema: *315 examples: default-response: summary: Default response @@ -43957,7 +44024,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *295 + '301': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43975,8 +44042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -44223,10 +44290,10 @@ paths: description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 - '307': &297 + default: *317 + '307': &318 description: Temporary Redirect content: application/json: @@ -44255,8 +44322,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -44278,7 +44345,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *297 + '307': *318 '404': *6 '409': *47 x-github: @@ -44302,11 +44369,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 - - &323 + - &344 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -44329,7 +44396,7 @@ paths: type: integer artifacts: type: array - items: &298 + items: &319 title: Artifact description: An artifact type: object @@ -44407,7 +44474,7 @@ paths: - expires_at - updated_at examples: - default: &324 + default: &345 value: total_count: 2 artifacts: @@ -44468,9 +44535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *283 - - *284 - - &299 + - *304 + - *305 + - &320 name: artifact_id description: The unique identifier of the artifact. in: path @@ -44482,7 +44549,7 @@ paths: description: Response content: application/json: - schema: *298 + schema: *319 examples: default: value: @@ -44520,9 +44587,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *283 - - *284 - - *299 + - *304 + - *305 + - *320 responses: '204': description: Response @@ -44546,9 +44613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *283 - - *284 - - *299 + - *304 + - *305 + - *320 - name: archive_format in: path required: true @@ -44562,7 +44629,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44585,14 +44652,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *300 + schema: *321 examples: default: value: @@ -44618,11 +44685,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 - - &301 + - &322 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -44656,7 +44723,7 @@ paths: description: Response content: application/json: - schema: &302 + schema: &323 title: Repository actions caches description: Repository actions caches type: object @@ -44698,7 +44765,7 @@ paths: - total_count - actions_caches examples: - default: &303 + default: &324 value: total_count: 1 actions_caches: @@ -44730,23 +44797,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *283 - - *284 + - *304 + - *305 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *301 + - *322 responses: '200': description: Response content: application/json: - schema: *302 + schema: *323 examples: - default: *303 + default: *324 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44766,8 +44833,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *283 - - *284 + - *304 + - *305 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -44798,9 +44865,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *283 - - *284 - - &304 + - *304 + - *305 + - &325 name: job_id description: The unique identifier of the job. in: path @@ -44812,7 +44879,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &348 title: Job description: Information of a job execution in a workflow run type: object @@ -45119,9 +45186,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *283 - - *284 - *304 + - *305 + - *325 responses: '302': description: Response @@ -45149,9 +45216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *283 - - *284 - *304 + - *305 + - *325 requestBody: required: false content: @@ -45196,8 +45263,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Status response @@ -45247,8 +45314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -45311,8 +45378,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -45330,7 +45397,7 @@ paths: type: integer secrets: type: array - items: &329 + items: &350 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -45350,7 +45417,7 @@ paths: - created_at - updated_at examples: - default: &330 + default: &351 value: total_count: 2 secrets: @@ -45383,9 +45450,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *283 - - *284 + - *304 - *305 + - *326 - *19 responses: '200': @@ -45402,7 +45469,7 @@ paths: type: integer variables: type: array - items: &333 + items: &354 title: Actions Variable type: object properties: @@ -45432,7 +45499,7 @@ paths: - created_at - updated_at examples: - default: &334 + default: &355 value: total_count: 2 variables: @@ -45465,8 +45532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -45475,11 +45542,11 @@ paths: schema: type: object properties: - enabled: &307 + enabled: &328 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *111 - selected_actions_url: *306 + selected_actions_url: *327 required: - enabled examples: @@ -45506,8 +45573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -45518,7 +45585,7 @@ paths: schema: type: object properties: - enabled: *307 + enabled: *328 allowed_actions: *111 required: - enabled @@ -45548,14 +45615,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: &308 + schema: &329 type: object properties: access_level: @@ -45572,7 +45639,7 @@ paths: required: - access_level examples: - default: &309 + default: &330 value: access_level: organization x-github: @@ -45596,15 +45663,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: application/json: - schema: *308 + schema: *329 examples: - default: *309 + default: *330 responses: '204': description: Response @@ -45628,8 +45695,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -45656,8 +45723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -45689,14 +45756,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *310 + schema: *331 examples: default: *117 x-github: @@ -45719,8 +45786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Success response @@ -45731,7 +45798,7 @@ paths: required: true content: application/json: - schema: *311 + schema: *332 examples: default: *117 x-github: @@ -45760,8 +45827,8 @@ paths: in: query schema: type: string - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -45805,8 +45872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -45814,9 +45881,9 @@ paths: application/json: schema: type: array - items: *312 + items: *333 examples: - default: *313 + default: *334 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45838,8 +45905,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -45882,7 +45949,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *314 + '201': *335 '404': *6 '422': *7 '409': *47 @@ -45913,8 +45980,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '201': description: Response @@ -45922,7 +45989,7 @@ paths: application/json: schema: *126 examples: - default: *315 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45950,8 +46017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '201': description: Response @@ -45959,7 +46026,7 @@ paths: application/json: schema: *126 examples: - default: *316 + default: *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45981,8 +46048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 responses: '200': @@ -45991,7 +46058,7 @@ paths: application/json: schema: *124 examples: - default: *317 + default: *338 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46012,8 +46079,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 responses: '204': @@ -46040,8 +46107,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 responses: '200': *128 @@ -46066,8 +46133,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 requestBody: required: true @@ -46116,8 +46183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 requestBody: required: true @@ -46167,11 +46234,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 responses: - '200': *318 + '200': *339 '404': *6 x-github: githubCloudOnly: false @@ -46198,10 +46265,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 - - *319 + - *340 responses: '200': *128 '404': *6 @@ -46229,9 +46296,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *283 - - *284 - - &337 + - *304 + - *305 + - &358 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -46239,7 +46306,7 @@ paths: required: false schema: type: string - - &338 + - &359 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -46247,7 +46314,7 @@ paths: required: false schema: type: string - - &339 + - &360 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -46256,7 +46323,7 @@ paths: required: false schema: type: string - - &340 + - &361 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -46283,7 +46350,7 @@ paths: - pending - *17 - *19 - - &341 + - &362 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -46292,7 +46359,7 @@ paths: schema: type: string format: date-time - - &320 + - &341 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -46301,13 +46368,13 @@ paths: schema: type: boolean default: false - - &342 + - &363 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &343 + - &364 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -46330,7 +46397,7 @@ paths: type: integer workflow_runs: type: array - items: &321 + items: &342 title: Workflow Run description: An invocation of a workflow type: object @@ -46425,7 +46492,7 @@ paths: that triggered the run. type: array nullable: true - items: &362 + items: &383 title: Pull Request Minimal type: object properties: @@ -46544,7 +46611,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &366 + properties: &387 id: type: string description: SHA for the commit @@ -46595,7 +46662,7 @@ paths: - name - email nullable: true - required: &367 + required: &388 - id - tree_id - message @@ -46642,7 +46709,7 @@ paths: - workflow_url - pull_requests examples: - default: &344 + default: &365 value: total_count: 1 workflow_runs: @@ -46878,24 +46945,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *283 - - *284 - - &322 + - *304 + - *305 + - &343 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *320 + - *341 responses: '200': description: Response content: application/json: - schema: *321 + schema: *342 examples: - default: &325 + default: &346 value: id: 30433642 name: Build @@ -47136,9 +47203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '204': description: Response @@ -47161,9 +47228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '200': description: Response @@ -47282,9 +47349,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '201': description: Response @@ -47317,12 +47384,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 - *17 - *19 - - *323 + - *344 responses: '200': description: Response @@ -47338,9 +47405,9 @@ paths: type: integer artifacts: type: array - items: *298 + items: *319 examples: - default: *324 + default: *345 headers: Link: *58 x-github: @@ -47364,25 +47431,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *283 - - *284 - - *322 - - &326 + - *304 + - *305 + - *343 + - &347 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *320 + - *341 responses: '200': description: Response content: application/json: - schema: *321 + schema: *342 examples: - default: *325 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47405,10 +47472,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *283 - - *284 - - *322 - - *326 + - *304 + - *305 + - *343 + - *347 - *17 - *19 responses: @@ -47426,9 +47493,9 @@ paths: type: integer jobs: type: array - items: *327 + items: *348 examples: - default: &328 + default: &349 value: total_count: 1 jobs: @@ -47541,10 +47608,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *283 - - *284 - - *322 - - *326 + - *304 + - *305 + - *343 + - *347 responses: '302': description: Response @@ -47572,9 +47639,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '202': description: Response @@ -47607,9 +47674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 requestBody: required: true content: @@ -47676,9 +47743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '202': description: Response @@ -47711,9 +47778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -47743,9 +47810,9 @@ paths: type: integer jobs: type: array - items: *327 + items: *348 examples: - default: *328 + default: *349 headers: Link: *58 x-github: @@ -47770,9 +47837,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '302': description: Response @@ -47799,9 +47866,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '204': description: Response @@ -47828,9 +47895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '200': description: Response @@ -47890,7 +47957,7 @@ paths: items: type: object properties: - type: &446 + type: &467 type: string description: The type of reviewer. enum: @@ -47900,7 +47967,7 @@ paths: reviewer: anyOf: - *4 - - *154 + - *155 required: - environment - wait_timer @@ -47975,9 +48042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 requestBody: required: true content: @@ -48024,7 +48091,7 @@ paths: application/json: schema: type: array - items: &441 + items: &462 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -48130,7 +48197,7 @@ paths: - created_at - updated_at examples: - default: &442 + default: &463 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -48186,9 +48253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 requestBody: required: false content: @@ -48232,9 +48299,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 requestBody: required: false content: @@ -48287,9 +48354,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '200': description: Response @@ -48426,8 +48493,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -48445,9 +48512,9 @@ paths: type: integer secrets: type: array - items: *329 + items: *350 examples: - default: *330 + default: *351 headers: Link: *58 x-github: @@ -48472,16 +48539,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *331 + schema: *352 examples: - default: *332 + default: *353 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48503,17 +48570,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '200': description: Response content: application/json: - schema: *329 + schema: *350 examples: - default: &459 + default: &480 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -48539,8 +48606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 requestBody: required: true @@ -48598,8 +48665,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '204': @@ -48625,9 +48692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *283 - - *284 + - *304 - *305 + - *326 - *19 responses: '200': @@ -48644,9 +48711,9 @@ paths: type: integer variables: type: array - items: *333 + items: *354 examples: - default: *334 + default: *355 headers: Link: *58 x-github: @@ -48669,8 +48736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -48722,17 +48789,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *283 - - *284 + - *304 + - *305 - *133 responses: '200': description: Response content: application/json: - schema: *333 + schema: *354 examples: - default: &460 + default: &481 value: name: USERNAME value: octocat @@ -48758,8 +48825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *283 - - *284 + - *304 + - *305 - *133 requestBody: required: true @@ -48802,8 +48869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *283 - - *284 + - *304 + - *305 - *133 responses: '204': @@ -48829,8 +48896,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -48848,7 +48915,7 @@ paths: type: integer workflows: type: array - items: &335 + items: &356 title: Workflow description: A GitHub Actions workflow type: object @@ -48955,9 +49022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *283 - - *284 - - &336 + - *304 + - *305 + - &357 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -48972,7 +49039,7 @@ paths: description: Response content: application/json: - schema: *335 + schema: *356 examples: default: value: @@ -49005,9 +49072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *283 - - *284 - - *336 + - *304 + - *305 + - *357 responses: '204': description: Response @@ -49032,9 +49099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *283 - - *284 - - *336 + - *304 + - *305 + - *357 responses: '204': description: Response @@ -49085,9 +49152,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *283 - - *284 - - *336 + - *304 + - *305 + - *357 responses: '204': description: Response @@ -49114,19 +49181,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *283 - - *284 - - *336 - - *337 - - *338 - - *339 - - *340 + - *304 + - *305 + - *357 + - *358 + - *359 + - *360 + - *361 - *17 - *19 + - *362 - *341 - - *320 - - *342 - - *343 + - *363 + - *364 responses: '200': description: Response @@ -49142,9 +49209,9 @@ paths: type: integer workflow_runs: type: array - items: *321 + items: *342 examples: - default: *344 + default: *365 headers: Link: *58 x-github: @@ -49176,9 +49243,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *283 - - *284 - - *336 + - *304 + - *305 + - *357 responses: '200': description: Response @@ -49239,8 +49306,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *283 - - *284 + - *304 + - *305 - *48 - *17 - *40 @@ -49404,8 +49471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -49417,7 +49484,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -49442,8 +49509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *283 - - *284 + - *304 + - *305 - name: assignee in: path required: true @@ -49479,8 +49546,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -49592,8 +49659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *40 - *41 @@ -49647,7 +49714,7 @@ paths: bundle_url: type: string examples: - default: *345 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49667,8 +49734,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -49676,7 +49743,7 @@ paths: application/json: schema: type: array - items: &346 + items: &367 title: Autolink reference description: An autolink reference. type: object @@ -49726,8 +49793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -49766,9 +49833,9 @@ paths: description: response content: application/json: - schema: *346 + schema: *367 examples: - default: &347 + default: &368 value: id: 1 key_prefix: TICKET- @@ -49799,9 +49866,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *283 - - *284 - - &348 + - *304 + - *305 + - &369 name: autolink_id description: The unique identifier of the autolink. in: path @@ -49813,9 +49880,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *367 examples: - default: *347 + default: *368 '404': *6 x-github: githubCloudOnly: false @@ -49835,9 +49902,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *283 - - *284 - - *348 + - *304 + - *305 + - *369 responses: '204': description: Response @@ -49861,8 +49928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response if Dependabot is enabled @@ -49910,8 +49977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -49932,8 +49999,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -49953,8 +50020,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *283 - - *284 + - *304 + - *305 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -49992,7 +50059,7 @@ paths: - url protected: type: boolean - protection: &350 + protection: &371 title: Branch Protection description: Branch Protection type: object @@ -50034,7 +50101,7 @@ paths: required: - contexts - checks - enforce_admins: &353 + enforce_admins: &374 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -50049,7 +50116,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &355 + required_pull_request_reviews: &376 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -50070,7 +50137,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *154 + items: *155 apps: description: The list of apps with review dismissal access. @@ -50099,7 +50166,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *154 + items: *155 apps: description: The list of apps allowed to bypass pull request requirements. @@ -50125,7 +50192,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &352 + restrictions: &373 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -50432,9 +50499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *283 - - *284 - - &351 + - *304 + - *305 + - &372 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -50448,14 +50515,14 @@ paths: description: Response content: application/json: - schema: &361 + schema: &382 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &414 + commit: &435 title: Commit description: Commit type: object @@ -50489,7 +50556,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &349 + properties: &370 name: type: string example: '"Chris Wanstrath"' @@ -50504,7 +50571,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *349 + properties: *370 nullable: true message: type: string @@ -50525,7 +50592,7 @@ paths: required: - sha - url - verification: &466 + verification: &487 title: Verification type: object properties: @@ -50595,7 +50662,7 @@ paths: type: integer files: type: array - items: &429 + items: &450 title: Diff Entry description: Diff Entry type: object @@ -50678,7 +50745,7 @@ paths: - self protected: type: boolean - protection: *350 + protection: *371 protection_url: type: string format: uri @@ -50785,7 +50852,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *295 + '301': *316 '404': *6 x-github: githubCloudOnly: false @@ -50807,15 +50874,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *350 + schema: *371 examples: default: value: @@ -51009,9 +51076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -51266,7 +51333,7 @@ paths: url: type: string format: uri - required_status_checks: &358 + required_status_checks: &379 title: Status Check Policy description: Status Check Policy type: object @@ -51342,7 +51409,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 apps: type: array items: *5 @@ -51360,7 +51427,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 apps: type: array items: *5 @@ -51418,7 +51485,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *352 + restrictions: *373 required_conversation_resolution: type: object properties: @@ -51530,9 +51597,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -51557,17 +51624,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *353 + schema: *374 examples: - default: &354 + default: &375 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -51589,17 +51656,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *353 + schema: *374 examples: - default: *354 + default: *375 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51618,9 +51685,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -51645,17 +51712,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *355 + schema: *376 examples: - default: &356 + default: &377 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -51751,9 +51818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -51851,9 +51918,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *376 examples: - default: *356 + default: *377 '422': *15 x-github: githubCloudOnly: false @@ -51874,9 +51941,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -51903,17 +51970,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *353 + schema: *374 examples: - default: &357 + default: &378 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -51936,17 +52003,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *353 + schema: *374 examples: - default: *357 + default: *378 '404': *6 x-github: githubCloudOnly: false @@ -51966,9 +52033,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -51993,17 +52060,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *358 + schema: *379 examples: - default: &359 + default: &380 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -52029,9 +52096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -52083,9 +52150,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *379 examples: - default: *359 + default: *380 '404': *6 '422': *15 x-github: @@ -52107,9 +52174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -52133,9 +52200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response @@ -52169,9 +52236,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -52238,9 +52305,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -52304,9 +52371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: content: application/json: @@ -52372,15 +52439,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *352 + schema: *373 examples: default: value: @@ -52471,9 +52538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -52496,9 +52563,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response @@ -52508,7 +52575,7 @@ paths: type: array items: *5 examples: - default: &360 + default: &381 value: - id: 1 slug: octoapp @@ -52565,9 +52632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -52601,7 +52668,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52622,9 +52689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -52658,7 +52725,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52679,9 +52746,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -52715,7 +52782,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52737,9 +52804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response @@ -52747,9 +52814,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '404': *6 x-github: githubCloudOnly: false @@ -52769,9 +52836,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -52807,9 +52874,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52830,9 +52897,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -52868,9 +52935,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52891,9 +52958,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: content: application/json: @@ -52928,9 +52995,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52952,9 +53019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response @@ -52964,7 +53031,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '404': *6 x-github: githubCloudOnly: false @@ -52988,9 +53055,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -53023,7 +53090,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53048,9 +53115,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -53083,7 +53150,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53108,9 +53175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -53143,7 +53210,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53170,9 +53237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -53194,7 +53261,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *382 examples: default: value: @@ -53310,8 +53377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -53590,7 +53657,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &384 title: CheckRun description: A check performed on the code of a given code change type: object @@ -53709,8 +53776,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *362 - deployment: &681 + items: *383 + deployment: &683 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -53990,9 +54057,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *283 - - *284 - - &364 + - *304 + - *305 + - &385 name: check_run_id description: The unique identifier of the check run. in: path @@ -54004,9 +54071,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *384 examples: - default: &365 + default: &386 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -54106,9 +54173,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *283 - - *284 - - *364 + - *304 + - *305 + - *385 requestBody: required: true content: @@ -54348,9 +54415,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *384 examples: - default: *365 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54370,9 +54437,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *283 - - *284 - - *364 + - *304 + - *305 + - *385 - *17 - *19 responses: @@ -54467,9 +54534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *283 - - *284 - - *364 + - *304 + - *305 + - *385 responses: '201': description: Response @@ -54513,8 +54580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -54536,7 +54603,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &368 + schema: &389 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -54600,7 +54667,7 @@ paths: nullable: true pull_requests: type: array - items: *362 + items: *383 nullable: true app: title: GitHub app @@ -54622,12 +54689,12 @@ paths: type: string format: date-time nullable: true - head_commit: &707 + head_commit: &709 title: Simple Commit description: A commit. type: object - properties: *366 - required: *367 + properties: *387 + required: *388 latest_check_runs_count: type: integer check_runs_url: @@ -54655,7 +54722,7 @@ paths: - check_runs_url - pull_requests examples: - default: &369 + default: &390 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -54946,9 +55013,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *368 + schema: *389 examples: - default: *369 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54967,8 +55034,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -55277,9 +55344,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *283 - - *284 - - &370 + - *304 + - *305 + - &391 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -55291,9 +55358,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *389 examples: - default: *369 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55316,17 +55383,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *283 - - *284 - - *370 - - &422 + - *304 + - *305 + - *391 + - &443 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &423 + - &444 name: status description: Returns check runs with the specified `status`. in: query @@ -55365,9 +55432,9 @@ paths: type: integer check_runs: type: array - items: *363 + items: *384 examples: - default: &424 + default: &445 value: total_count: 1 check_runs: @@ -55469,9 +55536,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *283 - - *284 - - *370 + - *304 + - *305 + - *391 responses: '201': description: Response @@ -55504,21 +55571,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *283 - - *284 - - *371 - - *372 + - *304 + - *305 + - *392 + - *393 - *19 - *17 - - &389 + - &410 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *373 - - &390 + schema: *394 + - &411 name: pr description: The number of the pull request for the results you want to list. in: query @@ -55543,13 +55610,13 @@ paths: be returned. in: query required: false - schema: *374 + schema: *395 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *375 + schema: *396 responses: '200': description: Response @@ -55565,7 +55632,7 @@ paths: updated_at: *139 url: *56 html_url: *57 - instances_url: *376 + instances_url: *397 state: *144 fixed_at: *140 dismissed_by: @@ -55576,11 +55643,11 @@ paths: required: *21 nullable: true dismissed_at: *141 - dismissed_reason: *377 - dismissed_comment: *378 - rule: *379 - tool: *380 - most_recent_instance: *381 + dismissed_reason: *398 + dismissed_comment: *399 + rule: *400 + tool: *401 + most_recent_instance: *402 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -55703,7 +55770,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &382 + '403': &403 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -55730,9 +55797,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *283 - - *284 - - &383 + - *304 + - *305 + - &404 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -55746,7 +55813,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &405 type: object properties: number: *54 @@ -55754,7 +55821,7 @@ paths: updated_at: *139 url: *56 html_url: *57 - instances_url: *376 + instances_url: *397 state: *144 fixed_at: *140 dismissed_by: @@ -55765,8 +55832,8 @@ paths: required: *21 nullable: true dismissed_at: *141 - dismissed_reason: *377 - dismissed_comment: *378 + dismissed_reason: *398 + dismissed_comment: *399 rule: type: object properties: @@ -55820,8 +55887,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *380 - most_recent_instance: *381 + tool: *401 + most_recent_instance: *402 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -55917,7 +55984,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -55937,9 +56004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 requestBody: required: true content: @@ -55954,8 +56021,8 @@ paths: enum: - open - dismissed - dismissed_reason: *377 - dismissed_comment: *378 + dismissed_reason: *398 + dismissed_comment: *399 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -55974,7 +56041,7 @@ paths: description: Response content: application/json: - schema: *384 + schema: *405 examples: default: value: @@ -56050,7 +56117,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &388 + '403': &409 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -56077,15 +56144,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 responses: '200': description: Response content: application/json: - schema: &385 + schema: &406 type: object properties: status: @@ -56111,13 +56178,13 @@ paths: - description - started_at examples: - default: &386 + default: &407 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &387 + '400': &408 description: Bad Request content: application/json: @@ -56128,7 +56195,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56153,29 +56220,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 responses: '200': description: OK content: application/json: - schema: *385 + schema: *406 examples: - default: *386 + default: *407 '202': description: Accepted content: application/json: - schema: *385 + schema: *406 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *387 + '400': *408 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -56207,9 +56274,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 requestBody: required: false content: @@ -56254,8 +56321,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *387 - '403': *388 + '400': *408 + '403': *409 '404': *6 '422': description: Unprocessable Entity @@ -56279,13 +56346,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 - *19 - *17 - - *389 - - *390 + - *410 + - *411 responses: '200': description: Response @@ -56293,7 +56360,7 @@ paths: application/json: schema: type: array - items: *381 + items: *402 examples: default: value: @@ -56332,7 +56399,7 @@ paths: end_column: 50 classifications: - source - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56366,25 +56433,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *283 - - *284 - - *371 - - *372 + - *304 + - *305 + - *392 + - *393 - *19 - *17 - - *390 + - *411 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *373 + schema: *394 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &393 + schema: &414 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -56405,23 +56472,23 @@ paths: application/json: schema: type: array - items: &394 + items: &415 type: object properties: - ref: *373 - commit_sha: &402 + ref: *394 + commit_sha: &423 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *391 + analysis_key: *412 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *392 + category: *413 error: type: string example: error reading field xyz @@ -56445,8 +56512,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *393 - tool: *380 + sarif_id: *414 + tool: *401 deletable: type: boolean warning: @@ -56507,7 +56574,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56543,8 +56610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56557,7 +56624,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *415 examples: response: summary: application/json response @@ -56611,7 +56678,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *382 + '403': *403 '404': *6 '422': description: Response if analysis could not be processed @@ -56698,8 +56765,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56752,7 +56819,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *388 + '403': *409 '404': *6 '503': *65 x-github: @@ -56774,8 +56841,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -56783,7 +56850,7 @@ paths: application/json: schema: type: array - items: &395 + items: &416 title: CodeQL Database description: A CodeQL database. type: object @@ -56894,7 +56961,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56923,8 +56990,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: language in: path description: The language of the CodeQL database. @@ -56936,7 +57003,7 @@ paths: description: Response content: application/json: - schema: *395 + schema: *416 examples: default: value: @@ -56968,9 +57035,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &431 + '302': &452 description: Found - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56992,8 +57059,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *283 - - *284 + - *304 + - *305 - name: language in: path description: The language of the CodeQL database. @@ -57003,7 +57070,7 @@ paths: responses: '204': description: Response - '403': *388 + '403': *409 '404': *6 '503': *65 x-github: @@ -57031,8 +57098,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -57041,7 +57108,7 @@ paths: type: object additionalProperties: false properties: - language: &396 + language: &417 type: string description: The language targeted by the CodeQL query enum: @@ -57120,7 +57187,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &400 + schema: &421 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -57130,7 +57197,7 @@ paths: description: The ID of the variant analysis. controller_repo: *53 actor: *4 - query_language: *396 + query_language: *417 query_pack_url: type: string description: The download url for the query pack. @@ -57177,7 +57244,7 @@ paths: items: type: object properties: - repository: &397 + repository: &418 title: Repository Identifier description: Repository Identifier type: object @@ -57213,7 +57280,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &401 + analysis_status: &422 type: string description: The new status of the CodeQL variant analysis repository task. @@ -57245,7 +57312,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &398 + access_mismatch_repos: &419 type: object properties: repository_count: @@ -57259,7 +57326,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *397 + items: *418 required: - repository_count - repositories @@ -57281,8 +57348,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *398 - over_limit_repos: *398 + no_codeql_db_repos: *419 + over_limit_repos: *419 required: - access_mismatch_repos - not_found_repos @@ -57298,7 +57365,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &399 + value: &420 summary: Default response value: id: 1 @@ -57450,10 +57517,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *399 + value: *420 repository_lists: summary: Response for a successful variant analysis submission - value: *399 + value: *420 '404': *6 '422': description: Unable to process variant analysis submission @@ -57481,8 +57548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *283 - - *284 + - *304 + - *305 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -57494,9 +57561,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *421 examples: - default: *399 + default: *420 '404': *6 '503': *65 x-github: @@ -57519,7 +57586,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *283 + - *304 - name: repo in: path description: The name of the controller repository. @@ -57554,7 +57621,7 @@ paths: type: object properties: repository: *53 - analysis_status: *401 + analysis_status: *422 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -57679,8 +57746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -57765,7 +57832,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -57786,8 +57853,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -57879,7 +57946,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *388 + '403': *409 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -57950,8 +58017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -57959,7 +58026,7 @@ paths: schema: type: object properties: - commit_sha: *402 + commit_sha: *423 ref: type: string description: |- @@ -58017,7 +58084,7 @@ paths: schema: type: object properties: - id: *393 + id: *414 url: type: string description: The REST API URL for checking the status of the upload. @@ -58031,7 +58098,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *388 + '403': *409 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -58054,8 +58121,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *283 - - *284 + - *304 + - *305 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -58101,7 +58168,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *382 + '403': *403 '404': description: Not Found if the sarif id does not match any upload '503': *65 @@ -58126,8 +58193,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -58183,7 +58250,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *148 + '204': *149 '304': *37 '403': *29 '404': *6 @@ -58208,8 +58275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *283 - - *284 + - *304 + - *305 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -58329,8 +58396,8 @@ paths: parameters: - *17 - *19 - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -58346,7 +58413,7 @@ paths: type: integer codespaces: type: array - items: *201 + items: *202 examples: default: value: @@ -58644,8 +58711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -58708,17 +58775,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '400': *14 '401': *25 '403': *29 @@ -58747,8 +58814,8 @@ paths: parameters: - *17 - *19 - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -58812,8 +58879,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -58848,14 +58915,14 @@ paths: type: integer machines: type: array - items: &631 + items: &633 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *404 - required: *405 + properties: *425 + required: *426 examples: - default: &632 + default: &634 value: total_count: 2 machines: @@ -58895,8 +58962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *283 - - *284 + - *304 + - *305 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -58980,8 +59047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *283 - - *284 + - *304 + - *305 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -59047,8 +59114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -59066,7 +59133,7 @@ paths: type: integer secrets: type: array - items: &409 + items: &430 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -59086,7 +59153,7 @@ paths: - created_at - updated_at examples: - default: *406 + default: *427 headers: Link: *58 x-github: @@ -59109,16 +59176,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *407 + schema: *428 examples: - default: *408 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -59138,17 +59205,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '200': description: Response content: application/json: - schema: *409 + schema: *430 examples: - default: *410 + default: *431 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59168,8 +59235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 requestBody: required: true @@ -59222,8 +59289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '204': @@ -59252,8 +59319,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *283 - - *284 + - *304 + - *305 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -59295,7 +59362,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &411 + properties: &432 login: type: string example: octocat @@ -59388,7 +59455,7 @@ paths: user_view_type: type: string example: public - required: &412 + required: &433 - avatar_url - events_url - followers_url @@ -59462,8 +59529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *283 - - *284 + - *304 + - *305 - *135 responses: '204': @@ -59510,8 +59577,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *283 - - *284 + - *304 + - *305 - *135 requestBody: required: false @@ -59538,7 +59605,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &479 + schema: &500 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -59767,8 +59834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *283 - - *284 + - *304 + - *305 - *135 responses: '204': @@ -59800,8 +59867,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *283 - - *284 + - *304 + - *305 - *135 responses: '200': @@ -59822,8 +59889,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *411 - required: *412 + properties: *432 + required: *433 nullable: true required: - permission @@ -59878,8 +59945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -59889,7 +59956,7 @@ paths: application/json: schema: type: array - items: &413 + items: &434 title: Commit Comment description: Commit Comment type: object @@ -59947,7 +60014,7 @@ paths: - created_at - updated_at examples: - default: &416 + default: &437 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -60006,17 +60073,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '200': description: Response content: application/json: - schema: *413 + schema: *434 examples: - default: &417 + default: &438 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -60073,8 +60140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -60097,7 +60164,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *434 examples: default: value: @@ -60148,8 +60215,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '204': @@ -60171,8 +60238,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -60199,9 +60266,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -60222,8 +60289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -60256,16 +60323,16 @@ paths: description: Reaction exists content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Reaction created content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '422': *15 x-github: githubCloudOnly: false @@ -60287,10 +60354,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *283 - - *284 + - *304 + - *305 - *76 - - *279 + - *300 responses: '204': description: Response @@ -60339,8 +60406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *283 - - *284 + - *304 + - *305 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -60396,9 +60463,9 @@ paths: application/json: schema: type: array - items: *414 + items: *435 examples: - default: &530 + default: &551 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -60492,9 +60559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *283 - - *284 - - &415 + - *304 + - *305 + - &436 name: commit_sha description: The SHA of the commit. in: path @@ -60566,9 +60633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *283 - - *284 - - *415 + - *304 + - *305 + - *436 - *17 - *19 responses: @@ -60578,9 +60645,9 @@ paths: application/json: schema: type: array - items: *413 + items: *434 examples: - default: *416 + default: *437 headers: Link: *58 x-github: @@ -60608,9 +60675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *283 - - *284 - - *415 + - *304 + - *305 + - *436 requestBody: required: true content: @@ -60645,9 +60712,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *434 examples: - default: *417 + default: *438 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -60675,9 +60742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *283 - - *284 - - *415 + - *304 + - *305 + - *436 - *17 - *19 responses: @@ -60687,7 +60754,7 @@ paths: application/json: schema: type: array - items: &521 + items: &542 title: Pull Request Simple description: Pull Request Simple type: object @@ -60793,8 +60860,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *418 - required: *419 + properties: *439 + required: *440 nullable: true active_lock_reason: type: string @@ -60839,7 +60906,7 @@ paths: nullable: true requested_teams: type: array - items: *154 + items: *155 nullable: true head: type: object @@ -60890,7 +60957,7 @@ paths: _links: type: object properties: - comments: &420 + comments: &441 title: Link description: Hypermedia Link type: object @@ -60899,13 +60966,13 @@ paths: type: string required: - href - commits: *420 - statuses: *420 - html: *420 - issue: *420 - review_comments: *420 - review_comment: *420 - self: *420 + commits: *441 + statuses: *441 + html: *441 + issue: *441 + review_comments: *441 + review_comment: *441 + self: *441 required: - comments - commits @@ -60916,7 +60983,7 @@ paths: - review_comment - self author_association: *63 - auto_merge: &523 + auto_merge: &544 title: Auto merge description: The status of auto merging a pull request. type: object @@ -60979,7 +61046,7 @@ paths: - author_association - auto_merge examples: - default: &522 + default: &543 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -61516,11 +61583,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *283 - - *284 + - *304 + - *305 - *19 - *17 - - &421 + - &442 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -61535,9 +61602,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *435 examples: - default: &508 + default: &529 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -61650,11 +61717,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *283 - - *284 - - *421 - - *422 - - *423 + - *304 + - *305 + - *442 + - *443 + - *444 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -61688,9 +61755,9 @@ paths: type: integer check_runs: type: array - items: *363 + items: *384 examples: - default: *424 + default: *445 headers: Link: *58 x-github: @@ -61715,9 +61782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *283 - - *284 - - *421 + - *304 + - *305 + - *442 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -61725,7 +61792,7 @@ paths: schema: type: integer example: 1 - - *422 + - *443 - *17 - *19 responses: @@ -61743,7 +61810,7 @@ paths: type: integer check_suites: type: array - items: *368 + items: *389 examples: default: value: @@ -61943,9 +62010,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *283 - - *284 - - *421 + - *304 + - *305 + - *442 - *17 - *19 responses: @@ -62143,9 +62210,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *283 - - *284 - - *421 + - *304 + - *305 + - *442 - *17 - *19 responses: @@ -62155,7 +62222,7 @@ paths: application/json: schema: type: array - items: &605 + items: &607 title: Status description: The status of a commit. type: object @@ -62236,7 +62303,7 @@ paths: site_admin: false headers: Link: *58 - '301': *295 + '301': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62264,8 +62331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -62294,20 +62361,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *425 - required: *426 + properties: *446 + required: *447 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &427 + properties: &448 url: type: string format: uri html_url: type: string format: uri - required: &428 + required: &449 - url - html_url nullable: true @@ -62321,26 +62388,26 @@ paths: contributing: title: Community Health File type: object - properties: *427 - required: *428 + properties: *448 + required: *449 nullable: true readme: title: Community Health File type: object - properties: *427 - required: *428 + properties: *448 + required: *449 nullable: true issue_template: title: Community Health File type: object - properties: *427 - required: *428 + properties: *448 + required: *449 nullable: true pull_request_template: title: Community Health File type: object - properties: *427 - required: *428 + properties: *448 + required: *449 nullable: true required: - code_of_conduct @@ -62467,8 +62534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *283 - - *284 + - *304 + - *305 - *19 - *17 - name: basehead @@ -62511,8 +62578,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *414 - merge_base_commit: *414 + base_commit: *435 + merge_base_commit: *435 status: type: string enum: @@ -62532,10 +62599,10 @@ paths: example: 6 commits: type: array - items: *414 + items: *435 files: type: array - items: *429 + items: *450 required: - url - html_url @@ -62821,8 +62888,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *283 - - *284 + - *304 + - *305 - name: path description: path parameter in: path @@ -62965,7 +63032,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &430 + response-if-content-is-a-file: &451 summary: Response if content is a file value: type: file @@ -63097,7 +63164,7 @@ paths: - size - type - url - - &535 + - &556 title: Content File description: Content File type: object @@ -63298,7 +63365,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *430 + response-if-content-is-a-file: *451 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -63367,7 +63434,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *431 + '302': *452 '304': *37 x-github: githubCloudOnly: false @@ -63390,8 +63457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *283 - - *284 + - *304 + - *305 - name: path description: path parameter in: path @@ -63484,7 +63551,7 @@ paths: description: Response content: application/json: - schema: &432 + schema: &453 title: File Commit description: File Commit type: object @@ -63636,7 +63703,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *453 examples: example-for-creating-a-file: value: @@ -63690,7 +63757,7 @@ paths: schema: oneOf: - *3 - - &461 + - &482 description: Repository rule violation was detected type: object properties: @@ -63711,7 +63778,7 @@ paths: items: type: object properties: - placeholder_id: &597 + placeholder_id: &599 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -63743,8 +63810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *283 - - *284 + - *304 + - *305 - name: path description: path parameter in: path @@ -63805,7 +63872,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *453 examples: default: value: @@ -63860,8 +63927,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *283 - - *284 + - *304 + - *305 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -63984,22 +64051,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *283 - - *284 - - *155 + - *304 + - *305 - *156 - *157 - *158 + - *159 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *159 - *160 - *161 - *162 + - *163 - *48 - name: page description: "**Closing down notice**. Page number of the results to fetch. @@ -64019,8 +64086,8 @@ paths: default: 30 - *40 - *41 - - *163 - *164 + - *165 responses: '200': description: Response @@ -64028,7 +64095,7 @@ paths: application/json: schema: type: array - items: &435 + items: &456 type: object description: A Dependabot alert. properties: @@ -64074,7 +64141,7 @@ paths: - unknown - direct - transitive - security_advisory: *433 + security_advisory: *454 security_vulnerability: *52 url: *56 html_url: *57 @@ -64105,7 +64172,7 @@ paths: nullable: true maxLength: 280 fixed_at: *140 - auto_dismissed_at: *434 + auto_dismissed_at: *455 required: - number - state @@ -64335,9 +64402,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *283 - - *284 - - &436 + - *304 + - *305 + - &457 name: alert_number in: path description: |- @@ -64352,7 +64419,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *456 examples: default: value: @@ -64465,9 +64532,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *283 - - *284 - - *436 + - *304 + - *305 + - *457 requestBody: required: true content: @@ -64512,7 +64579,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *456 examples: default: value: @@ -64641,8 +64708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -64660,7 +64727,7 @@ paths: type: integer secrets: type: array - items: &439 + items: &460 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -64713,16 +64780,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *437 + schema: *458 examples: - default: *438 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64742,15 +64809,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '200': description: Response content: application/json: - schema: *439 + schema: *460 examples: default: value: @@ -64776,8 +64843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 requestBody: required: true @@ -64830,8 +64897,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '204': @@ -64854,8 +64921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *283 - - *284 + - *304 + - *305 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -65015,8 +65082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -65255,8 +65322,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -65331,7 +65398,7 @@ paths: - version - url additionalProperties: false - metadata: &440 + metadata: &461 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -65364,7 +65431,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *440 + metadata: *461 resolved: type: object description: A collection of resolved package dependencies. @@ -65377,7 +65444,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *440 + metadata: *461 relationship: type: string description: A notation of whether a dependency is requested @@ -65506,8 +65573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *283 - - *284 + - *304 + - *305 - name: sha description: The SHA recorded at creation time. in: query @@ -65547,9 +65614,9 @@ paths: application/json: schema: type: array - items: *441 + items: *462 examples: - default: *442 + default: *463 headers: Link: *58 x-github: @@ -65615,8 +65682,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -65697,7 +65764,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *462 examples: simple-example: summary: Simple example @@ -65770,9 +65837,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *283 - - *284 - - &443 + - *304 + - *305 + - &464 name: deployment_id description: deployment_id parameter in: path @@ -65784,7 +65851,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *462 examples: default: value: @@ -65849,9 +65916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *283 - - *284 - - *443 + - *304 + - *305 + - *464 responses: '204': description: Response @@ -65873,9 +65940,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *283 - - *284 - - *443 + - *304 + - *305 + - *464 - *17 - *19 responses: @@ -65885,7 +65952,7 @@ paths: application/json: schema: type: array - items: &444 + items: &465 title: Deployment Status description: The status of a deployment. type: object @@ -66046,9 +66113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *283 - - *284 - - *443 + - *304 + - *305 + - *464 requestBody: required: true content: @@ -66123,9 +66190,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *465 examples: - default: &445 + default: &466 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -66181,9 +66248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *283 - - *284 - - *443 + - *304 + - *305 + - *464 - name: status_id in: path required: true @@ -66194,9 +66261,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *465 examples: - default: *445 + default: *466 '404': *6 x-github: githubCloudOnly: false @@ -66221,8 +66288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -66279,8 +66346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -66297,7 +66364,7 @@ paths: type: integer environments: type: array - items: &447 + items: &468 title: Environment description: Details of a deployment environment type: object @@ -66349,7 +66416,7 @@ paths: type: type: string example: wait_timer - wait_timer: &449 + wait_timer: &470 type: integer example: 30 description: The amount of time to delay a job after @@ -66386,11 +66453,11 @@ paths: items: type: object properties: - type: *446 + type: *467 reviewer: anyOf: - *4 - - *154 + - *155 required: - id - node_id @@ -66410,7 +66477,7 @@ paths: - id - node_id - type - deployment_branch_policy: &450 + deployment_branch_policy: &471 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -66526,9 +66593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *283 - - *284 - - &448 + - *304 + - *305 + - &469 name: environment_name in: path required: true @@ -66541,9 +66608,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *468 examples: - default: &451 + default: &472 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -66627,9 +66694,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 requestBody: required: false content: @@ -66638,7 +66705,7 @@ paths: type: object nullable: true properties: - wait_timer: *449 + wait_timer: *470 prevent_self_review: type: boolean example: false @@ -66655,13 +66722,13 @@ paths: items: type: object properties: - type: *446 + type: *467 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *450 + deployment_branch_policy: *471 additionalProperties: false examples: default: @@ -66681,9 +66748,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *468 examples: - default: *451 + default: *472 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -66707,9 +66774,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 responses: '204': description: Default response @@ -66734,9 +66801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *17 - *19 responses: @@ -66754,7 +66821,7 @@ paths: example: 2 branch_policies: type: array - items: &452 + items: &473 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -66811,9 +66878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 requestBody: required: true content: @@ -66859,9 +66926,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *473 examples: - example-wildcard: &453 + example-wildcard: &474 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -66903,10 +66970,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *283 - - *284 - - *448 - - &454 + - *304 + - *305 + - *469 + - &475 name: branch_policy_id in: path required: true @@ -66918,9 +66985,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *473 examples: - default: *453 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66939,10 +67006,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *283 - - *284 - - *448 - - *454 + - *304 + - *305 + - *469 + - *475 requestBody: required: true content: @@ -66970,9 +67037,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *473 examples: - default: *453 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66991,10 +67058,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *283 - - *284 - - *448 - - *454 + - *304 + - *305 + - *469 + - *475 responses: '204': description: Response @@ -67019,9 +67086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *448 - - *284 - - *283 + - *469 + - *305 + - *304 responses: '200': description: List of deployment protection rules @@ -67037,7 +67104,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &455 + items: &476 title: Deployment protection rule description: Deployment protection rule type: object @@ -67056,7 +67123,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &456 + app: &477 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -67155,9 +67222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *448 - - *284 - - *283 + - *469 + - *305 + - *304 requestBody: content: application/json: @@ -67178,9 +67245,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *455 + schema: *476 examples: - default: &457 + default: &478 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -67215,9 +67282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *448 - - *284 - - *283 + - *469 + - *305 + - *304 - *19 - *17 responses: @@ -67236,7 +67303,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *456 + items: *477 examples: default: value: @@ -67271,10 +67338,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *283 - - *284 - - *448 - - &458 + - *304 + - *305 + - *469 + - &479 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -67286,9 +67353,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *476 examples: - default: *457 + default: *478 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67309,10 +67376,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *448 - - *284 - - *283 - - *458 + - *469 + - *305 + - *304 + - *479 responses: '204': description: Response @@ -67338,9 +67405,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *17 - *19 responses: @@ -67358,9 +67425,9 @@ paths: type: integer secrets: type: array - items: *329 + items: *350 examples: - default: *330 + default: *351 headers: Link: *58 x-github: @@ -67385,17 +67452,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 responses: '200': description: Response content: application/json: - schema: *331 + schema: *352 examples: - default: *332 + default: *353 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67417,18 +67484,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *130 responses: '200': description: Response content: application/json: - schema: *329 + schema: *350 examples: - default: *459 + default: *480 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67450,9 +67517,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *130 requestBody: required: true @@ -67510,9 +67577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *130 responses: '204': @@ -67538,10 +67605,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *283 - - *284 - - *448 + - *304 - *305 + - *469 + - *326 - *19 responses: '200': @@ -67558,9 +67625,9 @@ paths: type: integer variables: type: array - items: *333 + items: *354 examples: - default: *334 + default: *355 headers: Link: *58 x-github: @@ -67583,9 +67650,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 requestBody: required: true content: @@ -67637,18 +67704,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *133 responses: '200': description: Response content: application/json: - schema: *333 + schema: *354 examples: - default: *460 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67669,10 +67736,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *283 - - *284 + - *304 + - *305 - *133 - - *448 + - *469 requestBody: required: true content: @@ -67714,10 +67781,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *283 - - *284 + - *304 + - *305 - *133 - - *448 + - *469 responses: '204': description: Response @@ -67739,8 +67806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -67817,8 +67884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *283 - - *284 + - *304 + - *305 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -67977,8 +68044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -68010,9 +68077,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 + default: *317 '400': *14 '422': *15 '403': *29 @@ -68033,8 +68100,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -68094,7 +68161,7 @@ paths: schema: oneOf: - *100 - - *461 + - *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68119,8 +68186,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *283 - - *284 + - *304 + - *305 - name: file_sha in: path required: true @@ -68219,8 +68286,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -68329,7 +68396,7 @@ paths: description: Response content: application/json: - schema: &462 + schema: &483 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -68543,15 +68610,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *283 - - *284 - - *415 + - *304 + - *305 + - *436 responses: '200': description: Response content: application/json: - schema: *462 + schema: *483 examples: default: value: @@ -68607,9 +68674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *283 - - *284 - - &463 + - *304 + - *305 + - &484 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -68626,7 +68693,7 @@ paths: application/json: schema: type: array - items: &464 + items: &485 title: Git Reference description: Git references within a repository type: object @@ -68701,17 +68768,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *283 - - *284 - - *463 + - *304 + - *305 + - *484 responses: '200': description: Response content: application/json: - schema: *464 + schema: *485 examples: - default: &465 + default: &486 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -68740,8 +68807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -68770,9 +68837,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *485 examples: - default: *465 + default: *486 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -68798,9 +68865,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *283 - - *284 - - *463 + - *304 + - *305 + - *484 requestBody: required: true content: @@ -68829,9 +68896,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *485 examples: - default: *465 + default: *486 '422': *15 '409': *47 x-github: @@ -68849,9 +68916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *283 - - *284 - - *463 + - *304 + - *305 + - *484 responses: '204': description: Response @@ -68906,8 +68973,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -68974,7 +69041,7 @@ paths: description: Response content: application/json: - schema: &467 + schema: &488 title: Git Tag description: Metadata for a Git tag type: object @@ -69025,7 +69092,7 @@ paths: - sha - type - url - verification: *466 + verification: *487 required: - sha - url @@ -69035,7 +69102,7 @@ paths: - tag - message examples: - default: &468 + default: &489 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -69108,8 +69175,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *283 - - *284 + - *304 + - *305 - name: tag_sha in: path required: true @@ -69120,9 +69187,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *488 examples: - default: *468 + default: *489 '404': *6 '409': *47 x-github: @@ -69146,8 +69213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -69220,7 +69287,7 @@ paths: description: Response content: application/json: - schema: &469 + schema: &490 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -69316,8 +69383,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *283 - - *284 + - *304 + - *305 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -69340,7 +69407,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *490 examples: default-response: summary: Default response @@ -69399,8 +69466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -69410,7 +69477,7 @@ paths: application/json: schema: type: array - items: &470 + items: &491 title: Webhook description: Webhooks for repositories. type: object @@ -69464,7 +69531,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &715 + last_response: &717 title: Hook Response type: object properties: @@ -69538,8 +69605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -69591,9 +69658,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *491 examples: - default: &471 + default: &492 value: type: Repository id: 12345678 @@ -69641,17 +69708,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 responses: '200': description: Response content: application/json: - schema: *470 + schema: *491 examples: - default: *471 + default: *492 '404': *6 x-github: githubCloudOnly: false @@ -69671,9 +69738,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 requestBody: required: true content: @@ -69718,9 +69785,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *491 examples: - default: *471 + default: *492 '422': *15 '404': *6 x-github: @@ -69741,9 +69808,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 responses: '204': description: Response @@ -69767,9 +69834,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 responses: '200': description: Response @@ -69796,9 +69863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 requestBody: required: false content: @@ -69842,11 +69909,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *283 - - *284 - - *172 - - *17 + - *304 + - *305 - *173 + - *17 + - *174 responses: '200': description: Response @@ -69854,9 +69921,9 @@ paths: application/json: schema: type: array - items: *174 + items: *175 examples: - default: *175 + default: *176 '400': *14 '422': *15 x-github: @@ -69875,18 +69942,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 - *16 responses: '200': description: Response content: application/json: - schema: *176 + schema: *177 examples: - default: *177 + default: *178 '400': *14 '422': *15 x-github: @@ -69905,9 +69972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 - *16 responses: '202': *39 @@ -69930,9 +69997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 responses: '204': description: Response @@ -69957,9 +70024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 responses: '204': description: Response @@ -70017,14 +70084,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: &472 + schema: &493 title: Import description: A repository import from an external source. type: object @@ -70123,7 +70190,7 @@ paths: - html_url - authors_url examples: - default: &475 + default: &496 value: vcs: subversion use_lfs: true @@ -70139,7 +70206,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &473 + '503': &494 description: Unavailable due to service under maintenance. content: application/json: @@ -70168,8 +70235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -70217,7 +70284,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *493 examples: default: value: @@ -70242,7 +70309,7 @@ paths: type: string '422': *15 '404': *6 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70270,8 +70337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -70320,7 +70387,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *493 examples: example-1: summary: Example 1 @@ -70368,7 +70435,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70391,12 +70458,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70422,9 +70489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *283 - - *284 - - &655 + - *304 + - *305 + - &657 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -70438,7 +70505,7 @@ paths: application/json: schema: type: array - items: &474 + items: &495 title: Porter Author description: Porter Author type: object @@ -70492,7 +70559,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70517,8 +70584,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *283 - - *284 + - *304 + - *305 - name: author_id in: path required: true @@ -70548,7 +70615,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *495 examples: default: value: @@ -70561,7 +70628,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70585,8 +70652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -70627,7 +70694,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70655,8 +70722,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -70683,11 +70750,11 @@ paths: description: Response content: application/json: - schema: *472 + schema: *493 examples: - default: *475 + default: *496 '422': *15 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70710,8 +70777,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -70719,8 +70786,8 @@ paths: application/json: schema: *22 examples: - default: *476 - '301': *295 + default: *497 + '301': *316 '404': *6 x-github: githubCloudOnly: false @@ -70740,8 +70807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -70749,12 +70816,12 @@ paths: application/json: schema: anyOf: - - *190 + - *191 - type: object properties: {} additionalProperties: false examples: - default: &478 + default: &499 value: limit: collaborators_only origin: repository @@ -70779,13 +70846,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: application/json: - schema: *477 + schema: *498 examples: default: summary: Example request body @@ -70797,9 +70864,9 @@ paths: description: Response content: application/json: - schema: *190 + schema: *191 examples: - default: *478 + default: *499 '409': description: Response x-github: @@ -70821,8 +70888,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -70845,8 +70912,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -70856,9 +70923,9 @@ paths: application/json: schema: type: array - items: *479 + items: *500 examples: - default: &648 + default: &650 value: - id: 1 repository: @@ -70989,9 +71056,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *283 - - *284 - - *194 + - *304 + - *305 + - *195 requestBody: required: false content: @@ -71020,7 +71087,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *500 examples: default: value: @@ -71151,9 +71218,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *283 - - *284 - - *194 + - *304 + - *305 + - *195 responses: '204': description: Response @@ -71184,8 +71251,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *283 - - *284 + - *304 + - *305 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -71233,7 +71300,7 @@ paths: required: false schema: type: string - - *198 + - *199 - name: sort description: What to sort results by. in: query @@ -71258,7 +71325,7 @@ paths: type: array items: *77 examples: - default: &490 + default: &511 value: - id: 1 node_id: MDU6SXNzdWUx @@ -71406,7 +71473,7 @@ paths: state_reason: completed headers: Link: *58 - '301': *295 + '301': *316 '422': *15 '404': *6 x-github: @@ -71435,8 +71502,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -71520,7 +71587,7 @@ paths: application/json: schema: *77 examples: - default: &485 + default: &506 value: id: 1 node_id: MDU6SXNzdWUx @@ -71676,7 +71743,7 @@ paths: '422': *15 '503': *65 '404': *6 - '410': *292 + '410': *313 x-github: triggersNotification: true githubCloudOnly: false @@ -71704,8 +71771,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *87 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -71726,9 +71793,9 @@ paths: application/json: schema: type: array - items: *480 + items: *501 examples: - default: &487 + default: &508 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71786,17 +71853,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '200': description: Response content: application/json: - schema: *480 + schema: *501 examples: - default: &481 + default: &502 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71850,8 +71917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -71874,9 +71941,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *501 examples: - default: *481 + default: *502 '422': *15 x-github: githubCloudOnly: false @@ -71894,8 +71961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '204': @@ -71916,8 +71983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71944,9 +72011,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -71967,8 +72034,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -72001,16 +72068,16 @@ paths: description: Reaction exists content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Reaction created content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '422': *15 x-github: githubCloudOnly: false @@ -72032,10 +72099,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *283 - - *284 + - *304 + - *305 - *76 - - *279 + - *300 responses: '204': description: Response @@ -72055,8 +72122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -72066,7 +72133,7 @@ paths: application/json: schema: type: array - items: &484 + items: &505 title: Issue Event description: Issue Event type: object @@ -72109,8 +72176,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *482 - required: *483 + properties: *503 + required: *504 nullable: true label: title: Issue Event Label @@ -72154,7 +72221,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *154 + requested_team: *155 dismissed_review: title: Issue Event Dismissed Review type: object @@ -72417,8 +72484,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *283 - - *284 + - *304 + - *305 - name: event_id in: path required: true @@ -72429,7 +72496,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *505 examples: default: value: @@ -72622,7 +72689,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *292 + '410': *313 '403': *29 x-github: githubCloudOnly: false @@ -72656,9 +72723,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *283 - - *284 - - &486 + - *304 + - *305 + - &507 name: issue_number description: The number that identifies the issue. in: path @@ -72672,10 +72739,10 @@ paths: application/json: schema: *77 examples: - default: *485 - '301': *295 + default: *506 + '301': *316 '404': *6 - '410': *292 + '410': *313 '304': *37 x-github: githubCloudOnly: false @@ -72700,9 +72767,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: false content: @@ -72808,13 +72875,13 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 '422': *15 '503': *65 '403': *29 - '301': *295 + '301': *316 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72832,9 +72899,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: false content: @@ -72862,7 +72929,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72878,9 +72945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: content: application/json: @@ -72907,7 +72974,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72929,9 +72996,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - name: assignee in: path required: true @@ -72971,9 +73038,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - *67 - *17 - *19 @@ -72984,13 +73051,13 @@ paths: application/json: schema: type: array - items: *480 + items: *501 examples: - default: *487 + default: *508 headers: Link: *58 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73019,9 +73086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: true content: @@ -73043,16 +73110,16 @@ paths: description: Response content: application/json: - schema: *480 + schema: *501 examples: - default: *481 + default: *502 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *292 + '410': *313 '422': *15 '404': *6 x-github: @@ -73072,9 +73139,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - *17 - *19 responses: @@ -73088,7 +73155,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &491 + - &512 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -73142,7 +73209,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &492 + - &513 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -73278,7 +73345,7 @@ paths: - performed_via_github_app - assignee - assigner - - &493 + - &514 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -73329,7 +73396,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &494 + - &515 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -73380,7 +73447,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &495 + - &516 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -73434,7 +73501,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &496 + - &517 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -73468,7 +73535,7 @@ paths: properties: *61 required: *62 review_requester: *4 - requested_team: *154 + requested_team: *155 requested_reviewer: *4 required: - review_requester @@ -73481,7 +73548,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &497 + - &518 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -73515,7 +73582,7 @@ paths: properties: *61 required: *62 review_requester: *4 - requested_team: *154 + requested_team: *155 requested_reviewer: *4 required: - review_requester @@ -73528,7 +73595,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &498 + - &519 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -73588,7 +73655,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &499 + - &520 title: Locked Issue Event description: Locked Issue Event type: object @@ -73636,7 +73703,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &500 + - &521 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -73702,7 +73769,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &501 + - &522 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -73768,7 +73835,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &502 + - &523 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -73834,7 +73901,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &503 + - &524 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -73925,7 +73992,7 @@ paths: color: red headers: Link: *58 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73942,9 +74009,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - *17 - *19 responses: @@ -73954,7 +74021,7 @@ paths: application/json: schema: type: array - items: &488 + items: &509 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -74001,7 +74068,7 @@ paths: - color - default examples: - default: &489 + default: &510 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -74019,9 +74086,9 @@ paths: default: false headers: Link: *58 - '301': *295 + '301': *316 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74038,9 +74105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: false content: @@ -74099,12 +74166,12 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 - '301': *295 + default: *510 + '301': *316 '404': *6 - '410': *292 + '410': *313 '422': *15 x-github: githubCloudOnly: false @@ -74121,9 +74188,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: false content: @@ -74183,12 +74250,12 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 - '301': *295 + default: *510 + '301': *316 '404': *6 - '410': *292 + '410': *313 '422': *15 x-github: githubCloudOnly: false @@ -74205,15 +74272,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 responses: '204': description: Response - '301': *295 + '301': *316 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74232,9 +74299,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - name: name in: path required: true @@ -74247,7 +74314,7 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: default: value: @@ -74258,9 +74325,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *295 + '301': *316 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74280,9 +74347,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: false content: @@ -74310,7 +74377,7 @@ paths: '204': description: Response '403': *29 - '410': *292 + '410': *313 '404': *6 '422': *15 x-github: @@ -74328,9 +74395,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 responses: '204': description: Response @@ -74352,9 +74419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -74380,13 +74447,13 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74404,9 +74471,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: true content: @@ -74438,16 +74505,16 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '422': *15 x-github: githubCloudOnly: false @@ -74469,10 +74536,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *283 - - *284 - - *486 - - *279 + - *304 + - *305 + - *507 + - *300 responses: '204': description: Response @@ -74501,9 +74568,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: true content: @@ -74527,7 +74594,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -74547,11 +74614,11 @@ paths: description: |- You can use the REST API to list the sub-issues on an issue. - This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + This endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types). - - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. - - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. - - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`. - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. tags: - issues @@ -74560,9 +74627,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - *17 - *19 responses: @@ -74574,11 +74641,11 @@ paths: type: array items: *77 examples: - default: *490 + default: *511 headers: Link: *58 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74606,9 +74673,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: true content: @@ -74637,14 +74704,14 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *292 + '410': *313 '422': *15 '404': *6 x-github: @@ -74664,9 +74731,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: true content: @@ -74699,7 +74766,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 '403': *29 '404': *6 '422': *7 @@ -74721,9 +74788,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - *17 - *19 responses: @@ -74738,19 +74805,19 @@ paths: description: Timeline Event type: object anyOf: - - *491 - - *492 - - *493 - - *494 - - *495 - - *496 - - *497 - - *498 - - *499 - - *500 - - *501 - - *502 - - *503 + - *512 + - *513 + - *514 + - *515 + - *516 + - *517 + - *518 + - *519 + - *520 + - *521 + - *522 + - *523 + - *524 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -75055,7 +75122,7 @@ paths: type: string comments: type: array - items: &524 + items: &545 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -75264,7 +75331,7 @@ paths: type: string comments: type: array - items: *413 + items: *434 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -75553,7 +75620,7 @@ paths: headers: Link: *58 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75570,8 +75637,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -75581,7 +75648,7 @@ paths: application/json: schema: type: array - items: &504 + items: &525 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -75646,8 +75713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -75683,9 +75750,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *525 examples: - default: &505 + default: &526 value: id: 1 key: ssh-rsa AAA... @@ -75719,9 +75786,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *283 - - *284 - - &506 + - *304 + - *305 + - &527 name: key_id description: The unique identifier of the key. in: path @@ -75733,9 +75800,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *525 examples: - default: *505 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -75753,9 +75820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *283 - - *284 - - *506 + - *304 + - *305 + - *527 responses: '204': description: Response @@ -75775,8 +75842,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -75786,9 +75853,9 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 + default: *510 headers: Link: *58 '404': *6 @@ -75809,8 +75876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -75846,9 +75913,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: - default: &507 + default: &528 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -75880,8 +75947,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *283 - - *284 + - *304 + - *305 - name: name in: path required: true @@ -75892,9 +75959,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: - default: *507 + default: *528 '404': *6 x-github: githubCloudOnly: false @@ -75911,8 +75978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *283 - - *284 + - *304 + - *305 - name: name in: path required: true @@ -75951,7 +76018,7 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: default: value: @@ -75977,8 +76044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *283 - - *284 + - *304 + - *305 - name: name in: path required: true @@ -76004,8 +76071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -76044,9 +76111,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *283 - - *284 - - *389 + - *304 + - *305 + - *410 responses: '200': description: Response @@ -76191,8 +76258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -76257,8 +76324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -76292,9 +76359,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *414 + schema: *435 examples: - default: *508 + default: *529 '204': description: Response when already merged '404': @@ -76319,8 +76386,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *283 - - *284 + - *304 + - *305 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -76361,12 +76428,12 @@ paths: application/json: schema: type: array - items: &509 + items: &530 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *418 - required: *419 + properties: *439 + required: *440 examples: default: value: @@ -76422,8 +76489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -76463,9 +76530,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *530 examples: - default: &510 + default: &531 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -76524,9 +76591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *283 - - *284 - - &511 + - *304 + - *305 + - &532 name: milestone_number description: The number that identifies the milestone. in: path @@ -76538,9 +76605,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *530 examples: - default: *510 + default: *531 '404': *6 x-github: githubCloudOnly: false @@ -76557,9 +76624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *283 - - *284 - - *511 + - *304 + - *305 + - *532 requestBody: required: false content: @@ -76597,9 +76664,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *530 examples: - default: *510 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76615,9 +76682,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *283 - - *284 - - *511 + - *304 + - *305 + - *532 responses: '204': description: Response @@ -76638,9 +76705,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *283 - - *284 - - *511 + - *304 + - *305 + - *532 - *17 - *19 responses: @@ -76650,9 +76717,9 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 + default: *510 headers: Link: *58 x-github: @@ -76671,12 +76738,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *283 - - *284 - - *512 - - *513 + - *304 + - *305 + - *533 + - *534 - *67 - - *514 + - *535 - *17 - *19 responses: @@ -76688,7 +76755,7 @@ paths: type: array items: *90 examples: - default: *515 + default: *536 headers: Link: *58 x-github: @@ -76712,8 +76779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -76771,14 +76838,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: &516 + schema: &537 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -76903,7 +76970,7 @@ paths: - custom_404 - public examples: - default: &517 + default: &538 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -76944,8 +77011,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -76999,9 +77066,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *537 examples: - default: *517 + default: *538 '422': *15 '409': *47 x-github: @@ -77024,8 +77091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -77124,8 +77191,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -77151,8 +77218,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -77162,7 +77229,7 @@ paths: application/json: schema: type: array - items: &518 + items: &539 title: Page Build description: Page Build type: object @@ -77256,8 +77323,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *283 - - *284 + - *304 + - *305 responses: '201': description: Response @@ -77302,16 +77369,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *518 + schema: *539 examples: - default: &519 + default: &540 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -77359,8 +77426,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *283 - - *284 + - *304 + - *305 - name: build_id in: path required: true @@ -77371,9 +77438,9 @@ paths: description: Response content: application/json: - schema: *518 + schema: *539 examples: - default: *519 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77393,8 +77460,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -77499,9 +77566,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *283 - - *284 - - &520 + - *304 + - *305 + - &541 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -77559,11 +77626,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *283 - - *284 - - *520 + - *304 + - *305 + - *541 responses: - '204': *148 + '204': *149 '404': *6 x-github: githubCloudOnly: false @@ -77588,8 +77655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -77847,8 +77914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Private vulnerability reporting status @@ -77885,10 +77952,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: - '204': *148 + '204': *149 '422': *14 x-github: githubCloudOnly: false @@ -77907,10 +77974,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: - '204': *148 + '204': *149 '422': *14 x-github: githubCloudOnly: false @@ -77931,8 +77998,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-repository-projects parameters: - - *283 - - *284 + - *304 + - *305 - name: state description: Indicates the state of the projects to return. in: query @@ -77953,7 +78020,7 @@ paths: application/json: schema: type: array - items: *232 + items: *233 examples: default: value: @@ -77993,7 +78060,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *292 + '410': *313 '422': *7 x-github: githubCloudOnly: false @@ -78016,8 +78083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#create-a-repository-project parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -78043,13 +78110,13 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: *291 + default: *312 '401': *25 '403': *29 '404': *6 - '410': *292 + '410': *313 '422': *7 x-github: githubCloudOnly: false @@ -78072,8 +78139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -78081,7 +78148,7 @@ paths: application/json: schema: type: array - items: *237 + items: *238 examples: default: value: @@ -78112,8 +78179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -78125,7 +78192,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *237 + items: *238 required: - properties examples: @@ -78175,8 +78242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *283 - - *284 + - *304 + - *305 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -78236,9 +78303,9 @@ paths: application/json: schema: type: array - items: *521 + items: *542 examples: - default: *522 + default: *543 headers: Link: *58 '304': *37 @@ -78270,8 +78337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -78336,7 +78403,7 @@ paths: description: Response content: application/json: - schema: &526 + schema: &547 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -78447,8 +78514,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *418 - required: *419 + properties: *439 + required: *440 nullable: true active_lock_reason: type: string @@ -78493,7 +78560,7 @@ paths: nullable: true requested_teams: type: array - items: *261 + items: *282 nullable: true head: type: object @@ -78532,14 +78599,14 @@ paths: _links: type: object properties: - comments: *420 - commits: *420 - statuses: *420 - html: *420 - issue: *420 - review_comments: *420 - review_comment: *420 - self: *420 + comments: *441 + commits: *441 + statuses: *441 + html: *441 + issue: *441 + review_comments: *441 + review_comment: *441 + self: *441 required: - comments - commits @@ -78550,7 +78617,7 @@ paths: - review_comment - self author_association: *63 - auto_merge: *523 + auto_merge: *544 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -78642,7 +78709,7 @@ paths: - merged_by - review_comments examples: - default: &527 + default: &548 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79169,8 +79236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: sort in: query required: false @@ -79199,9 +79266,9 @@ paths: application/json: schema: type: array - items: *524 + items: *545 examples: - default: &529 + default: &550 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79278,17 +79345,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '200': description: Response content: application/json: - schema: *524 + schema: *545 examples: - default: &525 + default: &546 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79363,8 +79430,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -79387,9 +79454,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: - default: *525 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79405,8 +79472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '204': @@ -79428,8 +79495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -79456,9 +79523,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -79479,8 +79546,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -79513,16 +79580,16 @@ paths: description: Reaction exists content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Reaction created content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '422': *15 x-github: githubCloudOnly: false @@ -79544,10 +79611,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *283 - - *284 + - *304 + - *305 - *76 - - *279 + - *300 responses: '204': description: Response @@ -79590,9 +79657,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *283 - - *284 - - &528 + - *304 + - *305 + - &549 name: pull_number description: The number that identifies the pull request. in: path @@ -79605,9 +79672,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *526 + schema: *547 examples: - default: *527 + default: *548 '304': *37 '404': *6 '406': @@ -79642,9 +79709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: false content: @@ -79686,9 +79753,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *547 examples: - default: *527 + default: *548 '422': *15 '403': *29 x-github: @@ -79710,9 +79777,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: true content: @@ -79772,17 +79839,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '401': *25 '403': *29 '404': *6 @@ -79812,9 +79879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 - *87 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -79835,9 +79902,9 @@ paths: application/json: schema: type: array - items: *524 + items: *545 examples: - default: *529 + default: *550 headers: Link: *58 x-github: @@ -79870,9 +79937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: true content: @@ -79977,7 +80044,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: example-for-a-multi-line-comment: value: @@ -80065,9 +80132,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 - *76 requestBody: required: true @@ -80090,7 +80157,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: default: value: @@ -80176,9 +80243,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 - *17 - *19 responses: @@ -80188,9 +80255,9 @@ paths: application/json: schema: type: array - items: *414 + items: *435 examples: - default: *530 + default: *551 headers: Link: *58 x-github: @@ -80220,9 +80287,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 - *17 - *19 responses: @@ -80232,7 +80299,7 @@ paths: application/json: schema: type: array - items: *429 + items: *450 examples: default: value: @@ -80270,9 +80337,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 responses: '204': description: Response if pull request has been merged @@ -80295,9 +80362,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: false content: @@ -80408,9 +80475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 responses: '200': description: Response @@ -80426,7 +80493,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 required: - users - teams @@ -80485,9 +80552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: false content: @@ -80524,7 +80591,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *542 examples: default: value: @@ -81060,9 +81127,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: true content: @@ -81096,7 +81163,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *542 examples: default: value: @@ -81601,9 +81668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 - *17 - *19 responses: @@ -81613,7 +81680,7 @@ paths: application/json: schema: type: array - items: &531 + items: &552 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -81764,9 +81831,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: false content: @@ -81852,9 +81919,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: &533 + default: &554 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81917,10 +81984,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 - - &532 + - *304 + - *305 + - *549 + - &553 name: review_id description: The unique identifier of the review. in: path @@ -81932,9 +81999,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: &534 + default: &555 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81993,10 +82060,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 - - *532 + - *304 + - *305 + - *549 + - *553 requestBody: required: true content: @@ -82019,7 +82086,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: default: value: @@ -82081,18 +82148,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 - - *532 + - *304 + - *305 + - *549 + - *553 responses: '200': description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: *533 + default: *554 '422': *7 '404': *6 x-github: @@ -82119,10 +82186,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *283 - - *284 - - *528 - - *532 + - *304 + - *305 + - *549 + - *553 - *17 - *19 responses: @@ -82205,9 +82272,9 @@ paths: _links: type: object properties: - self: *420 - html: *420 - pull_request: *420 + self: *441 + html: *441 + pull_request: *441 required: - self - html @@ -82357,10 +82424,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 - - *532 + - *304 + - *305 + - *549 + - *553 requestBody: required: true content: @@ -82388,7 +82455,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: default: value: @@ -82451,10 +82518,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 - - *532 + - *304 + - *305 + - *549 + - *553 requestBody: required: true content: @@ -82489,9 +82556,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: *534 + default: *555 '404': *6 '422': *7 '403': *29 @@ -82513,9 +82580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: false content: @@ -82578,8 +82645,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *283 - - *284 + - *304 + - *305 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -82592,9 +82659,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *556 examples: - default: &536 + default: &557 value: type: file encoding: base64 @@ -82636,8 +82703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *283 - - *284 + - *304 + - *305 - name: dir description: The alternate path to look for a README file in: path @@ -82657,9 +82724,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *556 examples: - default: *536 + default: *557 '404': *6 '422': *15 x-github: @@ -82681,8 +82748,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -82692,7 +82759,7 @@ paths: application/json: schema: type: array - items: &537 + items: &558 title: Release description: A release. type: object @@ -82759,7 +82826,7 @@ paths: author: *4 assets: type: array - items: &538 + items: &559 title: Release Asset description: Data related to a release. type: object @@ -82946,8 +83013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -83023,9 +83090,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *558 examples: - default: &541 + default: &562 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -83130,9 +83197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *283 - - *284 - - &539 + - *304 + - *305 + - &560 name: asset_id description: The unique identifier of the asset. in: path @@ -83144,9 +83211,9 @@ paths: description: Response content: application/json: - schema: *538 + schema: *559 examples: - default: &540 + default: &561 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -83181,7 +83248,7 @@ paths: type: User site_admin: false '404': *6 - '302': *431 + '302': *452 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83197,9 +83264,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *283 - - *284 - - *539 + - *304 + - *305 + - *560 requestBody: required: false content: @@ -83227,9 +83294,9 @@ paths: description: Response content: application/json: - schema: *538 + schema: *559 examples: - default: *540 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83245,9 +83312,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *283 - - *284 - - *539 + - *304 + - *305 + - *560 responses: '204': description: Response @@ -83271,8 +83338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -83357,16 +83424,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *537 + schema: *558 examples: - default: *541 + default: *562 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83383,8 +83450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *283 - - *284 + - *304 + - *305 - name: tag description: tag parameter in: path @@ -83397,9 +83464,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *558 examples: - default: *541 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -83421,9 +83488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *283 - - *284 - - &542 + - *304 + - *305 + - &563 name: release_id description: The unique identifier of the release. in: path @@ -83437,9 +83504,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *537 + schema: *558 examples: - default: *541 + default: *562 '401': description: Unauthorized x-github: @@ -83457,9 +83524,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 requestBody: required: false content: @@ -83523,9 +83590,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *558 examples: - default: *541 + default: *562 '404': description: Not Found if the discussion category name is invalid content: @@ -83546,9 +83613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 responses: '204': description: Response @@ -83568,9 +83635,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 - *17 - *19 responses: @@ -83580,7 +83647,7 @@ paths: application/json: schema: type: array - items: *538 + items: *559 examples: default: value: @@ -83661,9 +83728,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 - name: name in: query required: true @@ -83689,7 +83756,7 @@ paths: description: Response for successful upload content: application/json: - schema: *538 + schema: *559 examples: response-for-successful-upload: value: @@ -83744,9 +83811,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -83770,9 +83837,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -83793,9 +83860,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 requestBody: required: true content: @@ -83825,16 +83892,16 @@ paths: description: Reaction exists content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Reaction created content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '422': *15 x-github: githubCloudOnly: false @@ -83856,10 +83923,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *283 - - *284 - - *542 - - *279 + - *304 + - *305 + - *563 + - *300 responses: '204': description: Response @@ -83883,9 +83950,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 - *17 - *19 responses: @@ -83901,8 +83968,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *543 - - &545 + - *247 + - &564 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83922,65 +83989,65 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *544 - - *545 + - *248 + - *564 - allOf: - - *546 - - *545 + - *249 + - *564 - allOf: - - *547 - - *545 + - *250 + - *564 - allOf: - - *548 - - *545 + - *565 + - *564 - allOf: - - *549 - - *545 + - *251 + - *564 - allOf: - - *550 - - *545 + - *252 + - *564 - allOf: - - *551 - - *545 + - *253 + - *564 - allOf: - - *552 - - *545 + - *254 + - *564 - allOf: - - *553 - - *545 + - *255 + - *564 - allOf: - - *554 - - *545 + - *256 + - *564 - allOf: - - *555 - - *545 + - *257 + - *564 - allOf: - - *556 - - *545 + - *258 + - *564 - allOf: - - *557 - - *545 + - *259 + - *564 - allOf: - - *558 - - *545 + - *260 + - *564 - allOf: - - *559 - - *545 + - *261 + - *564 - allOf: - - *560 - - *545 + - *262 + - *564 - allOf: - - *561 - - *545 + - *263 + - *564 - allOf: - - *562 - - *545 + - *264 + - *564 - allOf: - - *563 - - *545 + - *265 + - *564 - allOf: + - *266 - *564 - - *545 examples: default: value: @@ -84019,8 +84086,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 - name: includes_parents @@ -84031,7 +84098,7 @@ paths: schema: type: boolean default: true - - *565 + - *566 responses: '200': description: Response @@ -84039,7 +84106,7 @@ paths: application/json: schema: type: array - items: *247 + items: *267 examples: default: value: @@ -84086,8 +84153,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 requestBody: description: Request body required: true @@ -84107,16 +84174,16 @@ paths: - tag - push default: branch - enforcement: *243 + enforcement: *244 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *244 - conditions: *241 + items: *245 + conditions: *242 rules: type: array description: An array of rules within the ruleset. - items: *246 + items: *567 required: - name - enforcement @@ -84147,9 +84214,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: &575 + default: &577 value: id: 42 name: super cool ruleset @@ -84196,12 +84263,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *283 - - *284 - - *566 - - *567 + - *304 + - *305 - *568 - *569 + - *570 + - *571 - *17 - *19 responses: @@ -84209,9 +84276,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *572 examples: - default: *571 + default: *573 '404': *6 '500': *97 x-github: @@ -84232,17 +84299,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *283 - - *284 - - *572 + - *304 + - *305 + - *574 responses: '200': description: Response content: application/json: - schema: *573 + schema: *575 examples: - default: *574 + default: *576 '404': *6 '500': *97 x-github: @@ -84270,8 +84337,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84291,9 +84358,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *575 + default: *577 '404': *6 '500': *97 put: @@ -84311,8 +84378,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84337,16 +84404,16 @@ paths: - branch - tag - push - enforcement: *243 + enforcement: *244 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *244 - conditions: *241 + items: *245 + conditions: *242 rules: description: An array of rules within the ruleset. type: array - items: *246 + items: *567 examples: default: value: @@ -84374,9 +84441,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *575 + default: *577 '404': *6 '500': *97 delete: @@ -84394,8 +84461,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84418,8 +84485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 - name: ruleset_id @@ -84435,9 +84502,9 @@ paths: application/json: schema: type: array - items: *249 + items: *270 examples: - default: *576 + default: *578 '404': *6 '500': *97 x-github: @@ -84456,8 +84523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84475,7 +84542,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *579 examples: default: value: @@ -84530,21 +84597,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *283 - - *284 - - *250 - - *251 - - *252 - - *253 + - *304 + - *305 + - *271 + - *272 + - *273 + - *274 - *48 - *19 - *17 - - *578 - - *579 - - *254 - - *255 - - *256 - - *257 + - *580 + - *581 + - *275 + - *276 + - *277 + - *278 responses: '200': description: Response @@ -84552,7 +84619,7 @@ paths: application/json: schema: type: array - items: &583 + items: &585 type: object properties: number: *54 @@ -84571,8 +84638,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *580 - resolution: *581 + state: *582 + resolution: *583 resolved_at: type: string format: date-time @@ -84668,7 +84735,7 @@ paths: pull request. ' - oneOf: *582 + oneOf: *584 nullable: true has_more_locations: type: boolean @@ -84818,16 +84885,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *283 - - *284 - - *383 - - *257 + - *304 + - *305 + - *404 + - *278 responses: '200': description: Response content: application/json: - schema: *583 + schema: *585 examples: default: value: @@ -84879,9 +84946,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 requestBody: required: true content: @@ -84889,8 +84956,8 @@ paths: schema: type: object properties: - state: *580 - resolution: *581 + state: *582 + resolution: *583 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -84908,7 +84975,7 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: default: value: @@ -84983,9 +85050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 - *19 - *17 responses: @@ -84996,7 +85063,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &736 + items: &738 type: object properties: type: @@ -85022,8 +85089,6 @@ paths: example: commit details: oneOf: - - *584 - - *585 - *586 - *587 - *588 @@ -85035,6 +85100,8 @@ paths: - *594 - *595 - *596 + - *597 + - *598 examples: default: value: @@ -85120,8 +85187,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -85129,14 +85196,14 @@ paths: schema: type: object properties: - reason: &598 + reason: &600 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *597 + placeholder_id: *599 required: - reason - placeholder_id @@ -85153,7 +85220,7 @@ paths: schema: type: object properties: - reason: *598 + reason: *600 expire_at: type: string format: date-time @@ -85196,8 +85263,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -85212,7 +85279,7 @@ paths: properties: incremental_scans: type: array - items: &599 + items: &601 description: Information on a single scan performed by secret scanning on the repository type: object @@ -85238,15 +85305,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *599 + items: *601 backfill_scans: type: array - items: *599 + items: *601 custom_pattern_backfill_scans: type: array items: allOf: - - *599 + - *601 - type: object properties: pattern_name: @@ -85316,8 +85383,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *283 - - *284 + - *304 + - *305 - *48 - name: sort description: The property to sort the results by. @@ -85361,9 +85428,9 @@ paths: application/json: schema: type: array - items: *600 + items: *602 examples: - default: *601 + default: *603 '400': *14 '404': *6 x-github: @@ -85386,8 +85453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -85460,7 +85527,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 required: - login - type @@ -85547,9 +85614,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *602 examples: - default: &603 + default: &605 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -85782,8 +85849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -85887,7 +85954,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *602 examples: default: value: @@ -86034,17 +86101,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *283 - - *284 - - *602 + - *304 + - *305 + - *604 responses: '200': description: Response content: application/json: - schema: *600 + schema: *602 examples: - default: *603 + default: *605 '403': *29 '404': *6 x-github: @@ -86068,9 +86135,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *283 - - *284 - - *602 + - *304 + - *305 + - *604 requestBody: required: true content: @@ -86143,7 +86210,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 required: - login - type @@ -86229,10 +86296,10 @@ paths: description: Response content: application/json: - schema: *600 + schema: *602 examples: - default: *603 - add_credit: *603 + default: *605 + add_credit: *605 '403': *29 '404': *6 '422': @@ -86270,9 +86337,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *283 - - *284 - - *602 + - *304 + - *305 + - *604 responses: '202': *39 '400': *14 @@ -86299,17 +86366,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *283 - - *284 - - *602 + - *304 + - *305 + - *604 responses: '202': description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 + default: *317 '400': *14 '422': *15 '403': *29 @@ -86335,8 +86402,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -86435,8 +86502,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -86445,7 +86512,7 @@ paths: application/json: schema: type: array - items: &604 + items: &606 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -86458,7 +86525,7 @@ paths: - 1124 - -435 '202': *39 - '204': *148 + '204': *149 '422': description: Repository contains more than 10,000 commits x-github: @@ -86478,8 +86545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -86528,7 +86595,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86555,8 +86622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -86630,7 +86697,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86652,8 +86719,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -86807,8 +86874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -86818,7 +86885,7 @@ paths: application/json: schema: type: array - items: *604 + items: *606 examples: default: value: @@ -86831,7 +86898,7 @@ paths: - - 0 - 2 - 21 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86851,8 +86918,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *283 - - *284 + - *304 + - *305 - name: sha in: path required: true @@ -86906,7 +86973,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: default: value: @@ -86960,8 +87027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -86973,7 +87040,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -86993,14 +87060,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &606 + schema: &608 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -87068,8 +87135,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -87095,7 +87162,7 @@ paths: description: Response content: application/json: - schema: *606 + schema: *608 examples: default: value: @@ -87122,8 +87189,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -87143,8 +87210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -87223,8 +87290,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -87232,7 +87299,7 @@ paths: application/json: schema: type: array - items: &607 + items: &609 title: Tag protection description: Tag protection type: object @@ -87284,8 +87351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -87308,7 +87375,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: default: value: @@ -87339,8 +87406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -87377,8 +87444,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *283 - - *284 + - *304 + - *305 - name: ref in: path required: true @@ -87414,8 +87481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -87425,9 +87492,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 headers: Link: *58 '404': *6 @@ -87447,8 +87514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *283 - - *284 + - *304 + - *305 - *19 - *17 responses: @@ -87456,7 +87523,7 @@ paths: description: Response content: application/json: - schema: &608 + schema: &610 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -87468,7 +87535,7 @@ paths: required: - names examples: - default: &609 + default: &611 value: names: - octocat @@ -87491,8 +87558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -87523,9 +87590,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: *609 + default: *611 '404': *6 '422': *7 x-github: @@ -87546,9 +87613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *283 - - *284 - - &610 + - *304 + - *305 + - &612 name: per description: The time frame to display results for. in: query @@ -87577,7 +87644,7 @@ paths: example: 128 clones: type: array - items: &611 + items: &613 title: Traffic type: object properties: @@ -87664,8 +87731,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -87755,8 +87822,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -87816,9 +87883,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *283 - - *284 - - *610 + - *304 + - *305 + - *612 responses: '200': description: Response @@ -87837,7 +87904,7 @@ paths: example: 3782 views: type: array - items: *611 + items: *613 required: - uniques - count @@ -87914,8 +87981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -88189,8 +88256,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -88213,8 +88280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -88236,8 +88303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -88263,8 +88330,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *283 - - *284 + - *304 + - *305 - name: ref in: path required: true @@ -88356,9 +88423,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 + default: *317 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -88606,7 +88673,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &612 + text_matches: &614 title: Search Result Text Matches type: array items: @@ -88768,7 +88835,7 @@ paths: enum: - author-date - committer-date - - &613 + - &615 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 @@ -88839,7 +88906,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *349 + properties: *370 nullable: true comment_count: type: integer @@ -88859,7 +88926,7 @@ paths: url: type: string format: uri - verification: *466 + verification: *487 required: - author - committer @@ -88878,7 +88945,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *349 + properties: *370 nullable: true parents: type: array @@ -88896,7 +88963,7 @@ paths: type: number node_id: type: string - text_matches: *612 + text_matches: *614 required: - sha - node_id @@ -89078,7 +89145,7 @@ paths: - interactions - created - updated - - *613 + - *615 - *17 - *19 - name: advanced_search @@ -89205,8 +89272,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *418 - required: *419 + properties: *439 + required: *440 nullable: true comments: type: integer @@ -89220,7 +89287,7 @@ paths: type: string format: date-time nullable: true - text_matches: *612 + text_matches: *614 pull_request: type: object properties: @@ -89264,7 +89331,7 @@ paths: timeline_url: type: string format: uri - type: *195 + type: *196 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -89448,7 +89515,7 @@ paths: enum: - created - updated - - *613 + - *615 - *17 - *19 responses: @@ -89492,7 +89559,7 @@ paths: nullable: true score: type: number - text_matches: *612 + text_matches: *614 required: - id - node_id @@ -89577,7 +89644,7 @@ paths: - forks - help-wanted-issues - updated - - *613 + - *615 - *17 - *19 responses: @@ -89816,7 +89883,7 @@ paths: - admin - pull - push - text_matches: *612 + text_matches: *614 temp_clone_token: type: string allow_merge_commit: @@ -90116,7 +90183,7 @@ paths: type: string format: uri nullable: true - text_matches: *612 + text_matches: *614 related: type: array nullable: true @@ -90307,7 +90374,7 @@ paths: - followers - repositories - joined - - *613 + - *615 - *17 - *19 responses: @@ -90411,7 +90478,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *612 + text_matches: *614 blog: type: string nullable: true @@ -90490,7 +90557,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &614 + - &616 name: team_id description: The unique identifier of the team. in: path @@ -90502,9 +90569,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '404': *6 x-github: githubCloudOnly: false @@ -90531,7 +90598,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *614 + - *616 requestBody: required: true content: @@ -90594,16 +90661,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '201': description: Response content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '404': *6 '422': *15 '403': *29 @@ -90631,7 +90698,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *614 + - *616 responses: '204': description: Response @@ -90662,7 +90729,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *614 + - *616 - *48 - *17 - *19 @@ -90673,9 +90740,9 @@ paths: application/json: schema: type: array - items: *270 + items: *291 examples: - default: *615 + default: *617 headers: Link: *58 x-github: @@ -90704,7 +90771,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *614 + - *616 requestBody: required: true content: @@ -90738,9 +90805,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 x-github: triggersNotification: true githubCloudOnly: false @@ -90767,16 +90834,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *614 - - *272 + - *616 + - *293 responses: '200': description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90801,8 +90868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *614 - - *272 + - *616 + - *293 requestBody: required: false content: @@ -90825,9 +90892,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *616 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90852,8 +90919,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *614 - - *272 + - *616 + - *293 responses: '204': description: Response @@ -90882,8 +90949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *614 - - *272 + - *616 + - *293 - *48 - *17 - *19 @@ -90894,9 +90961,9 @@ paths: application/json: schema: type: array - items: *273 + items: *294 examples: - default: *617 + default: *619 headers: Link: *58 x-github: @@ -90925,8 +90992,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *614 - - *272 + - *616 + - *293 requestBody: required: true content: @@ -90948,9 +91015,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *274 + default: *295 x-github: triggersNotification: true githubCloudOnly: false @@ -90977,17 +91044,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *614 - - *272 - - *275 + - *616 + - *293 + - *296 responses: '200': description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *274 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91012,9 +91079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *614 - - *272 - - *275 + - *616 + - *293 + - *296 requestBody: required: true content: @@ -91036,9 +91103,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *618 + default: *620 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91063,9 +91130,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *614 - - *272 - - *275 + - *616 + - *293 + - *296 responses: '204': description: Response @@ -91094,9 +91161,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *614 - - *272 - - *275 + - *616 + - *293 + - *296 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -91122,9 +91189,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -91153,9 +91220,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *614 - - *272 - - *275 + - *616 + - *293 + - *296 requestBody: required: true content: @@ -91187,9 +91254,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91215,8 +91282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *614 - - *272 + - *616 + - *293 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -91242,9 +91309,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -91273,8 +91340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *614 - - *272 + - *616 + - *293 requestBody: required: true content: @@ -91306,9 +91373,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -91332,7 +91399,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *614 + - *616 - *17 - *19 responses: @@ -91342,9 +91409,9 @@ paths: application/json: schema: type: array - items: *192 + items: *193 examples: - default: *193 + default: *194 headers: Link: *58 x-github: @@ -91370,7 +91437,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *614 + - *616 - name: role description: Filters members returned by their role in the team. in: query @@ -91393,7 +91460,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -91421,7 +91488,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *614 + - *616 - *135 responses: '204': @@ -91458,7 +91525,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *614 + - *616 - *135 responses: '204': @@ -91498,7 +91565,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *614 + - *616 - *135 responses: '204': @@ -91535,16 +91602,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *614 + - *616 - *135 responses: '200': description: Response content: application/json: - schema: *280 + schema: *301 examples: - response-if-user-is-a-team-maintainer: *619 + response-if-user-is-a-team-maintainer: *621 '404': *6 x-github: githubCloudOnly: false @@ -91577,7 +91644,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *614 + - *616 - *135 requestBody: required: false @@ -91603,9 +91670,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *301 examples: - response-if-users-membership-with-team-is-now-pending: *620 + response-if-users-membership-with-team-is-now-pending: *622 '403': description: Forbidden if team synchronization is set up '422': @@ -91639,7 +91706,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *614 + - *616 - *135 responses: '204': @@ -91668,7 +91735,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *614 + - *616 - *17 - *19 responses: @@ -91678,9 +91745,9 @@ paths: application/json: schema: type: array - items: *281 + items: *302 examples: - default: *621 + default: *623 headers: Link: *58 '404': *6 @@ -91706,16 +91773,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *614 - - *282 + - *616 + - *303 responses: '200': description: Response content: application/json: - schema: *281 + schema: *302 examples: - default: *622 + default: *624 '404': description: Not Found if project is not managed by this team x-github: @@ -91739,8 +91806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *614 - - *282 + - *616 + - *303 requestBody: required: false content: @@ -91807,8 +91874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *614 - - *282 + - *616 + - *303 responses: '204': description: Response @@ -91835,7 +91902,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *614 + - *616 - *17 - *19 responses: @@ -91847,7 +91914,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '404': *6 @@ -91877,15 +91944,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *614 - - *283 - - *284 + - *616 + - *304 + - *305 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *623 + schema: *625 examples: alternative-response-with-extra-repository-information: value: @@ -92036,9 +92103,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *614 - - *283 - - *284 + - *616 + - *304 + - *305 requestBody: required: false content: @@ -92088,9 +92155,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *614 - - *283 - - *284 + - *616 + - *304 + - *305 responses: '204': description: Response @@ -92115,7 +92182,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *614 + - *616 - *17 - *19 responses: @@ -92125,9 +92192,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - response-if-child-teams-exist: *624 + response-if-child-teams-exist: *626 headers: Link: *58 '404': *6 @@ -92160,7 +92227,7 @@ paths: application/json: schema: oneOf: - - &626 + - &628 title: Private User description: Private User type: object @@ -92363,7 +92430,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *625 + - *627 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -92516,7 +92583,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *628 examples: default: value: @@ -92595,7 +92662,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '304': *37 '404': *6 '403': *29 @@ -92719,9 +92786,9 @@ paths: type: integer codespaces: type: array - items: *201 + items: *202 examples: - default: *202 + default: *203 '304': *37 '500': *97 '401': *25 @@ -92860,17 +92927,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '401': *25 '403': *29 '404': *6 @@ -92914,7 +92981,7 @@ paths: type: integer secrets: type: array - items: &627 + items: &629 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -92954,7 +93021,7 @@ paths: - visibility - selected_repositories_url examples: - default: *406 + default: *427 headers: Link: *58 x-github: @@ -93030,7 +93097,7 @@ paths: description: Response content: application/json: - schema: *627 + schema: *629 examples: default: value: @@ -93176,7 +93243,7 @@ paths: type: array items: *122 examples: - default: *628 + default: *630 '401': *25 '403': *29 '404': *6 @@ -93320,15 +93387,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '304': *37 '500': *97 '401': *25 @@ -93354,7 +93421,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 requestBody: required: false content: @@ -93384,9 +93451,9 @@ paths: description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '401': *25 '403': *29 '404': *6 @@ -93408,7 +93475,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 responses: '202': *39 '304': *37 @@ -93437,13 +93504,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 responses: '202': description: Response content: application/json: - schema: &629 + schema: &631 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -93484,7 +93551,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &630 + default: &632 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -93516,7 +93583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *203 + - *204 - name: export_id in: path required: true @@ -93529,9 +93596,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *631 examples: - default: *630 + default: *632 '404': *6 x-github: githubCloudOnly: false @@ -93552,7 +93619,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *203 + - *204 responses: '200': description: Response @@ -93568,9 +93635,9 @@ paths: type: integer machines: type: array - items: *631 + items: *633 examples: - default: *632 + default: *634 '304': *37 '500': *97 '401': *25 @@ -93599,7 +93666,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *203 + - *204 requestBody: required: true content: @@ -93649,13 +93716,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *294 + repository: *315 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *404 - required: *405 + properties: *425 + required: *426 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -94429,15 +94496,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '304': *37 '500': *97 '400': *14 @@ -94469,15 +94536,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '500': *97 '401': *25 '403': *29 @@ -94507,9 +94574,9 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: &645 + default: &647 value: - id: 197 name: hello_docker @@ -94610,7 +94677,7 @@ paths: application/json: schema: type: array - items: &633 + items: &635 title: Email description: Email type: object @@ -94675,9 +94742,9 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: - default: &647 + default: &649 value: - email: octocat@github.com verified: true @@ -94752,7 +94819,7 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: default: value: @@ -94862,7 +94929,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '304': *37 @@ -94895,7 +94962,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '304': *37 @@ -95008,7 +95075,7 @@ paths: application/json: schema: type: array - items: &634 + items: &636 title: GPG Key description: A unique encryption key type: object @@ -95139,7 +95206,7 @@ paths: - subkeys - revoked examples: - default: &661 + default: &663 value: - id: 3 name: Octocat's GPG Key @@ -95224,9 +95291,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *636 examples: - default: &635 + default: &637 value: id: 3 name: Octocat's GPG Key @@ -95283,7 +95350,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &636 + - &638 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -95295,9 +95362,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *636 examples: - default: *635 + default: *637 '404': *6 '304': *37 '403': *29 @@ -95320,7 +95387,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *636 + - *638 responses: '204': description: Response @@ -95511,7 +95578,7 @@ paths: type: array items: *60 examples: - default: *637 + default: *639 headers: Link: *58 '404': *6 @@ -95596,12 +95663,12 @@ paths: application/json: schema: anyOf: - - *190 + - *191 - type: object properties: {} additionalProperties: false examples: - default: *191 + default: *192 '204': description: Response when there are no restrictions x-github: @@ -95625,7 +95692,7 @@ paths: required: true content: application/json: - schema: *477 + schema: *498 examples: default: value: @@ -95636,7 +95703,7 @@ paths: description: Response content: application/json: - schema: *190 + schema: *191 examples: default: value: @@ -95717,7 +95784,7 @@ paths: - closed - all default: open - - *198 + - *199 - name: sort description: What to sort results by. in: query @@ -95742,7 +95809,7 @@ paths: type: array items: *77 examples: - default: *199 + default: *200 headers: Link: *58 '404': *6 @@ -95775,7 +95842,7 @@ paths: application/json: schema: type: array - items: &638 + items: &640 title: Key description: Key type: object @@ -95872,9 +95939,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *640 examples: - default: &639 + default: &641 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95907,15 +95974,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *506 + - *527 responses: '200': description: Response content: application/json: - schema: *638 + schema: *640 examples: - default: *639 + default: *641 '404': *6 '304': *37 '403': *29 @@ -95938,7 +96005,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *506 + - *527 responses: '204': description: Response @@ -95971,7 +96038,7 @@ paths: application/json: schema: type: array - items: &640 + items: &642 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -96039,7 +96106,7 @@ paths: - account - plan examples: - default: &641 + default: &643 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -96101,9 +96168,9 @@ paths: application/json: schema: type: array - items: *640 + items: *642 examples: - default: *641 + default: *643 headers: Link: *58 '304': *37 @@ -96143,7 +96210,7 @@ paths: application/json: schema: type: array - items: *206 + items: *207 examples: default: value: @@ -96251,7 +96318,7 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: default: value: @@ -96334,7 +96401,7 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: default: value: @@ -96402,7 +96469,7 @@ paths: application/json: schema: type: array - items: *208 + items: *209 examples: default: value: @@ -96655,7 +96722,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -96835,7 +96902,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *209 + - *210 - name: exclude in: query required: false @@ -96848,7 +96915,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -97042,7 +97109,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *209 + - *210 responses: '302': description: Response @@ -97068,7 +97135,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *209 + - *210 responses: '204': description: Response @@ -97097,8 +97164,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *209 - - *642 + - *210 + - *644 responses: '204': description: Response @@ -97122,7 +97189,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *209 + - *210 - *17 - *19 responses: @@ -97134,7 +97201,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '404': *6 @@ -97169,9 +97236,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *643 + default: *645 headers: Link: *58 '304': *37 @@ -97213,7 +97280,7 @@ paths: - docker - nuget - container - - *644 + - *646 - *19 - *17 responses: @@ -97223,10 +97290,10 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: *645 - '400': *646 + default: *647 + '400': *648 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97246,16 +97313,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *218 - *219 + - *220 responses: '200': description: Response content: application/json: - schema: *216 + schema: *217 examples: - default: &662 + default: &664 value: id: 40201 name: octo-name @@ -97368,8 +97435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *218 - *219 + - *220 responses: '204': description: Response @@ -97399,8 +97466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *218 - *219 + - *220 - name: token description: package token schema: @@ -97432,8 +97499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *218 - *219 + - *220 - *19 - *17 - name: state @@ -97453,7 +97520,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -97502,15 +97569,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *218 - *219 - - *221 + - *220 + - *222 responses: '200': description: Response content: application/json: - schema: *220 + schema: *221 examples: default: value: @@ -97546,9 +97613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *218 - *219 - - *221 + - *220 + - *222 responses: '204': description: Response @@ -97578,9 +97645,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *218 - *219 - - *221 + - *220 + - *222 responses: '204': description: Response @@ -97636,7 +97703,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: default: value: @@ -97708,9 +97775,9 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: - default: *647 + default: *649 headers: Link: *58 '304': *37 @@ -97823,7 +97890,7 @@ paths: type: array items: *60 examples: - default: &654 + default: &656 summary: Default response value: - id: 1296269 @@ -98127,9 +98194,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 + default: *317 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -98167,9 +98234,9 @@ paths: application/json: schema: type: array - items: *479 + items: *500 examples: - default: *648 + default: *650 headers: Link: *58 '304': *37 @@ -98192,7 +98259,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *194 + - *195 responses: '204': description: Response @@ -98215,7 +98282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *194 + - *195 responses: '204': description: Response @@ -98248,7 +98315,7 @@ paths: application/json: schema: type: array - items: &649 + items: &651 title: Social account description: Social media account type: object @@ -98263,7 +98330,7 @@ paths: - provider - url examples: - default: &650 + default: &652 value: - provider: twitter url: https://twitter.com/github @@ -98325,9 +98392,9 @@ paths: application/json: schema: type: array - items: *649 + items: *651 examples: - default: *650 + default: *652 '422': *15 '304': *37 '404': *6 @@ -98414,7 +98481,7 @@ paths: application/json: schema: type: array - items: &651 + items: &653 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -98434,7 +98501,7 @@ paths: - title - created_at examples: - default: &673 + default: &675 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98500,9 +98567,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: &652 + default: &654 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98533,7 +98600,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: - - &653 + - &655 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -98545,9 +98612,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: *652 + default: *654 '404': *6 '304': *37 '403': *29 @@ -98570,7 +98637,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: - - *653 + - *655 responses: '204': description: Response @@ -98599,7 +98666,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &674 + - &676 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 @@ -98624,11 +98691,11 @@ paths: type: array items: *60 examples: - default-response: *654 + default-response: *656 application/vnd.github.v3.star+json: schema: type: array - items: &675 + items: &677 title: Starred Repository description: Starred Repository type: object @@ -98784,8 +98851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response if this repository is starred by you @@ -98813,8 +98880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -98838,8 +98905,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -98874,7 +98941,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '304': *37 @@ -98911,7 +98978,7 @@ paths: application/json: schema: type: array - items: *268 + items: *289 examples: default: value: @@ -98997,10 +99064,10 @@ paths: application/json: schema: oneOf: - - *626 - - *625 + - *628 + - *627 examples: - default-response: &656 + default-response: &658 summary: Default response value: login: octocat @@ -99035,7 +99102,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &657 + response-with-git-hub-plan-information: &659 summary: Response with GitHub plan information value: login: octocat @@ -99095,7 +99162,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *655 + - *657 - *17 responses: '200': @@ -99106,7 +99173,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: example: ; rel="next" @@ -99144,11 +99211,11 @@ paths: application/json: schema: oneOf: - - *626 - - *625 + - *628 + - *627 examples: - default-response: *656 - response-with-git-hub-plan-information: *657 + default-response: *658 + response-with-git-hub-plan-information: *659 '404': *6 x-github: githubCloudOnly: false @@ -99197,8 +99264,8 @@ paths: required: - subject_digests examples: - default: *658 - withPredicateType: *659 + default: *660 + withPredicateType: *661 responses: '200': description: Response @@ -99251,7 +99318,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *660 + default: *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99453,7 +99520,7 @@ paths: bundle_url: type: string examples: - default: *345 + default: *366 '201': description: Response content: @@ -99492,9 +99559,9 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: *645 + default: *647 '403': *29 '401': *25 x-github: @@ -99777,7 +99844,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -99808,7 +99875,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -99898,9 +99965,9 @@ paths: application/json: schema: type: array - items: *634 + items: *636 examples: - default: *661 + default: *663 headers: Link: *58 x-github: @@ -100004,7 +100071,7 @@ paths: application/json: schema: *22 examples: - default: *476 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100083,9 +100150,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *643 + default: *645 headers: Link: *58 x-github: @@ -100124,7 +100191,7 @@ paths: - docker - nuget - container - - *644 + - *646 - *135 - *19 - *17 @@ -100135,12 +100202,12 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: *645 + default: *647 '403': *29 '401': *25 - '400': *646 + '400': *648 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100160,17 +100227,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *218 - *219 + - *220 - *135 responses: '200': description: Response content: application/json: - schema: *216 + schema: *217 examples: - default: *662 + default: *664 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100191,8 +100258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *218 - *219 + - *220 - *135 responses: '204': @@ -100225,8 +100292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *218 - *219 + - *220 - *135 - name: token description: package token @@ -100259,8 +100326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *218 - *219 + - *220 - *135 responses: '200': @@ -100269,7 +100336,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -100327,16 +100394,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *218 - *219 - - *221 + - *220 + - *222 - *135 responses: '200': description: Response content: application/json: - schema: *220 + schema: *221 examples: default: value: @@ -100371,10 +100438,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *218 - *219 + - *220 - *135 - - *221 + - *222 responses: '204': description: Response @@ -100406,10 +100473,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *218 - *219 + - *220 - *135 - - *221 + - *222 responses: '204': description: Response @@ -100456,7 +100523,7 @@ paths: application/json: schema: type: array - items: *232 + items: *233 examples: default: value: @@ -100739,7 +100806,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -100769,9 +100836,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: - default: *664 + default: *666 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100799,9 +100866,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *667 examples: - default: *666 + default: *668 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100829,9 +100896,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *669 examples: - default: *668 + default: *670 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100852,10 +100919,10 @@ paths: url: https://docs.github.com/rest/billing/enhanced-billing#get-billing-usage-report-for-a-user parameters: - *135 - - *669 - - *670 - *671 - *672 + - *673 + - *674 responses: '200': description: Response when getting a billing usage report @@ -100954,9 +101021,9 @@ paths: application/json: schema: type: array - items: *649 + items: *651 examples: - default: *650 + default: *652 headers: Link: *58 x-github: @@ -100986,9 +101053,9 @@ paths: application/json: schema: type: array - items: *651 + items: *653 examples: - default: *673 + default: *675 headers: Link: *58 x-github: @@ -101013,7 +101080,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *135 - - *674 + - *676 - *48 - *17 - *19 @@ -101025,11 +101092,11 @@ paths: schema: anyOf: - type: array - items: *675 + items: *677 - type: array items: *60 examples: - default-response: *654 + default-response: *656 headers: Link: *58 x-github: @@ -101060,7 +101127,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -101188,7 +101255,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &676 + enterprise: &678 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -101246,7 +101313,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &677 + installation: &679 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -101265,7 +101332,7 @@ x-webhooks: required: - id - node_id - organization: &678 + organization: &680 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -101325,13 +101392,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &679 + repository: &681 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: &709 + properties: &711 id: description: Unique identifier of the repository example: 42 @@ -102014,7 +102081,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &710 + required: &712 - archive_url - assignees_url - blobs_url @@ -102165,10 +102232,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -102244,11 +102311,11 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - rule: &680 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + rule: &682 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) @@ -102471,11 +102538,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - rule: *680 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + rule: *682 sender: *4 required: - action @@ -102658,11 +102725,11 @@ x-webhooks: - everyone required: - from - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - rule: *680 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + rule: *682 sender: *4 required: - action @@ -102746,7 +102813,7 @@ x-webhooks: type: string enum: - completed - check_run: &682 + check_run: &684 title: CheckRun description: A check performed on the code of a given code change type: object @@ -102799,7 +102866,7 @@ x-webhooks: type: string pull_requests: type: array - items: *362 + items: *383 repository: *122 status: example: completed @@ -102837,7 +102904,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *681 + deployment: *683 details_url: example: https://example.com type: string @@ -102887,7 +102954,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *362 + items: *383 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -102922,9 +102989,9 @@ x-webhooks: - output - app - pull_requests - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - check_run @@ -103317,10 +103384,10 @@ x-webhooks: type: string enum: - created - check_run: *682 - installation: *677 - organization: *678 - repository: *679 + check_run: *684 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - check_run @@ -103716,10 +103783,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *682 - installation: *677 - organization: *678 - repository: *679 + check_run: *684 + installation: *679 + organization: *680 + repository: *681 requested_action: description: The action requested by the user. type: object @@ -104124,10 +104191,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *682 - installation: *677 - organization: *678 - repository: *679 + check_run: *684 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - check_run @@ -105104,10 +105171,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -105777,10 +105844,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -106444,10 +106511,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -106610,7 +106677,7 @@ x-webhooks: required: - login - id - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -106755,20 +106822,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &683 + commit_oid: &685 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: *676 - installation: *677 - organization: *678 - ref: &684 + enterprise: *678 + installation: *679 + organization: *680 + ref: &686 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: *679 + repository: *681 sender: *4 required: - action @@ -106930,7 +106997,7 @@ x-webhooks: required: - login - id - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -107160,12 +107227,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *683 - enterprise: *676 - installation: *677 - organization: *678 - ref: *684 - repository: *679 + commit_oid: *685 + enterprise: *678 + installation: *679 + organization: *680 + ref: *686 + repository: *681 sender: *4 required: - action @@ -107260,7 +107327,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107428,12 +107495,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *683 - enterprise: *676 - installation: *677 - organization: *678 - ref: *684 - repository: *679 + commit_oid: *685 + enterprise: *678 + installation: *679 + organization: *680 + ref: *686 + repository: *681 sender: *4 required: - action @@ -107596,7 +107663,7 @@ x-webhooks: required: - login - id - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -107762,12 +107829,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *683 - enterprise: *676 - installation: *677 - organization: *678 - ref: *684 - repository: *679 + commit_oid: *685 + enterprise: *678 + installation: *679 + organization: *680 + ref: *686 + repository: *681 sender: *4 required: - action @@ -107864,7 +107931,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108032,16 +108099,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 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: *679 + repository: *681 sender: *4 required: - action @@ -108135,7 +108202,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108275,12 +108342,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *683 - enterprise: *676 - installation: *677 - organization: *678 - ref: *684 - repository: *679 + commit_oid: *685 + enterprise: *678 + installation: *679 + organization: *680 + ref: *686 + repository: *681 sender: *4 required: - action @@ -108537,10 +108604,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -108620,18 +108687,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *678 - pusher_type: &685 + organization: *680 + pusher_type: &687 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &686 + ref: &688 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -108641,7 +108708,7 @@ x-webhooks: enum: - tag - branch - repository: *679 + repository: *681 sender: *4 required: - ref @@ -108723,10 +108790,10 @@ x-webhooks: type: string enum: - created - definition: *233 - enterprise: *676 - installation: *677 - organization: *678 + definition: *234 + enterprise: *678 + installation: *679 + organization: *680 sender: *4 required: - action @@ -108811,9 +108878,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 sender: *4 required: - action @@ -108890,10 +108957,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *233 - enterprise: *676 - installation: *677 - organization: *678 + definition: *234 + enterprise: *678 + installation: *679 + organization: *680 sender: *4 required: - action @@ -108970,10 +109037,10 @@ x-webhooks: type: string enum: - updated - definition: *233 - enterprise: *676 - installation: *677 - organization: *678 + definition: *234 + enterprise: *678 + installation: *679 + organization: *680 sender: *4 required: - action @@ -109050,19 +109117,19 @@ x-webhooks: type: string enum: - updated - enterprise: *676 - installation: *677 - repository: *679 - organization: *678 + enterprise: *678 + installation: *679 + repository: *681 + organization: *680 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *237 + items: *238 old_property_values: type: array description: The old custom property values for the repository. - items: *237 + items: *238 required: - action - repository @@ -109138,18 +109205,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *676 - installation: *677 - organization: *678 - pusher_type: *685 - ref: *686 + enterprise: *678 + installation: *679 + organization: *680 + pusher_type: *687 + ref: *688 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *679 + repository: *681 sender: *4 required: - ref @@ -109233,11 +109300,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109321,11 +109388,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109409,11 +109476,11 @@ x-webhooks: type: string enum: - created - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109495,11 +109562,11 @@ x-webhooks: type: string enum: - dismissed - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109581,11 +109648,11 @@ x-webhooks: type: string enum: - fixed - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109668,11 +109735,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109754,11 +109821,11 @@ x-webhooks: type: string enum: - reopened - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109835,9 +109902,9 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - key: &687 + enterprise: *678 + installation: *679 + key: &689 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -109873,8 +109940,8 @@ x-webhooks: - verified - created_at - read_only - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -109951,11 +110018,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - key: *687 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + key: *689 + organization: *680 + repository: *681 sender: *4 required: - action @@ -110516,12 +110583,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - workflow: &691 + workflow: &693 title: Workflow type: object nullable: true @@ -111247,13 +111314,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *441 + deployment: *462 pull_requests: type: array - items: *526 - repository: *679 - organization: *678 - installation: *677 + items: *547 + repository: *681 + organization: *680 + installation: *679 sender: *4 responses: '200': @@ -111324,7 +111391,7 @@ x-webhooks: type: string enum: - approved - approver: &688 + approver: &690 type: object properties: avatar_url: @@ -111367,11 +111434,11 @@ x-webhooks: type: string comment: type: string - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - reviewers: &689 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + reviewers: &691 type: array items: type: object @@ -111450,7 +111517,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &690 + workflow_job_run: &692 type: object properties: conclusion: @@ -112181,18 +112248,18 @@ x-webhooks: type: string enum: - rejected - approver: *688 + approver: *690 comment: type: string - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - reviewers: *689 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + reviewers: *691 sender: *4 since: type: string - workflow_job_run: *690 + workflow_job_run: *692 workflow_job_runs: type: array items: @@ -112896,13 +112963,13 @@ x-webhooks: type: string enum: - requested - enterprise: *676 + enterprise: *678 environment: type: string - installation: *677 - organization: *678 - repository: *679 - requestor: &696 + installation: *679 + organization: *680 + repository: *681 + requestor: &698 title: User type: object nullable: true @@ -114801,12 +114868,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - workflow: *691 + workflow: *693 workflow_run: title: Deployment Workflow Run type: object @@ -115486,7 +115553,7 @@ x-webhooks: type: string enum: - answered - answer: &694 + answer: &696 type: object properties: author_association: @@ -115643,7 +115710,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &692 + discussion: &694 title: Discussion description: A Discussion in a repository. type: object @@ -115929,7 +115996,7 @@ x-webhooks: - id labels: type: array - items: *488 + items: *509 required: - repository_url - category @@ -115951,10 +116018,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116081,11 +116148,11 @@ x-webhooks: - from required: - category - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116168,11 +116235,11 @@ x-webhooks: type: string enum: - closed - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116254,7 +116321,7 @@ x-webhooks: type: string enum: - created - comment: &693 + comment: &695 type: object properties: author_association: @@ -116411,11 +116478,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116498,12 +116565,12 @@ x-webhooks: type: string enum: - deleted - comment: *693 - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + comment: *695 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116598,12 +116665,12 @@ x-webhooks: - from required: - body - comment: *693 - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + comment: *695 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116687,11 +116754,11 @@ x-webhooks: type: string enum: - created - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116773,11 +116840,11 @@ x-webhooks: type: string enum: - deleted - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116877,11 +116944,11 @@ x-webhooks: type: string required: - from - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116963,10 +117030,10 @@ x-webhooks: type: string enum: - labeled - discussion: *692 - enterprise: *676 - installation: *677 - label: &695 + discussion: *694 + enterprise: *678 + installation: *679 + label: &697 title: Label type: object properties: @@ -116998,8 +117065,8 @@ x-webhooks: - color - default - description - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117082,11 +117149,11 @@ x-webhooks: type: string enum: - locked - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117168,11 +117235,11 @@ x-webhooks: type: string enum: - pinned - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117254,11 +117321,11 @@ x-webhooks: type: string enum: - reopened - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117343,16 +117410,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *692 - new_repository: *679 + new_discussion: *694 + new_repository: *681 required: - new_discussion - new_repository - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117435,10 +117502,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *692 - old_answer: *694 - organization: *678 - repository: *679 + discussion: *694 + old_answer: *696 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117520,12 +117587,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *692 - enterprise: *676 - installation: *677 - label: *695 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117608,11 +117675,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117694,11 +117761,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117771,7 +117838,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *676 + enterprise: *678 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -118431,9 +118498,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - forkee @@ -118579,9 +118646,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pages: description: The pages that were updated. type: array @@ -118618,7 +118685,7 @@ x-webhooks: - action - sha - html_url - repository: *679 + repository: *681 sender: *4 required: - pages @@ -118694,10 +118761,10 @@ x-webhooks: type: string enum: - created - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories: &697 + organization: *680 + repositories: &699 description: An array of repository objects that the installation can access. type: array @@ -118723,8 +118790,8 @@ x-webhooks: - name - full_name - private - repository: *679 - requester: *696 + repository: *681 + requester: *698 sender: *4 required: - action @@ -118799,11 +118866,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories: *697 - repository: *679 + organization: *680 + repositories: *699 + repository: *681 requester: nullable: true sender: *4 @@ -118879,11 +118946,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories: *697 - repository: *679 + organization: *680 + repositories: *699 + repository: *681 requester: nullable: true sender: *4 @@ -118959,10 +119026,10 @@ x-webhooks: type: string enum: - added - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories_added: &698 + organization: *680 + repositories_added: &700 description: An array of repository objects, which were added to the installation. type: array @@ -119008,15 +119075,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *679 - repository_selection: &699 + repository: *681 + repository_selection: &701 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *696 + requester: *698 sender: *4 required: - action @@ -119095,10 +119162,10 @@ x-webhooks: type: string enum: - removed - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories_added: *698 + organization: *680 + repositories_added: *700 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -119125,9 +119192,9 @@ x-webhooks: - name - full_name - private - repository: *679 - repository_selection: *699 - requester: *696 + repository: *681 + repository_selection: *701 + requester: *698 sender: *4 required: - action @@ -119206,11 +119273,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories: *697 - repository: *679 + organization: *680 + repositories: *699 + repository: *681 requester: nullable: true sender: *4 @@ -119388,10 +119455,10 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 target_type: type: string @@ -119470,11 +119537,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories: *697 - repository: *679 + organization: *680 + repositories: *699 + repository: *681 requester: nullable: true sender: *4 @@ -119726,8 +119793,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -120550,7 +120617,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -120883,8 +120950,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -120964,7 +121031,7 @@ x-webhooks: type: string enum: - deleted - comment: &700 + comment: &702 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -121129,8 +121196,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -121949,7 +122016,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -122284,8 +122351,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -122365,7 +122432,7 @@ x-webhooks: type: string enum: - edited - changes: &728 + changes: &730 description: The changes to the comment. type: object properties: @@ -122377,9 +122444,9 @@ x-webhooks: type: string required: - from - comment: *700 - enterprise: *676 - installation: *677 + comment: *702 + enterprise: *678 + installation: *679 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -123201,7 +123268,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -123534,8 +123601,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -123617,10 +123684,10 @@ x-webhooks: type: string enum: - assigned - assignee: *696 - enterprise: *676 - installation: *677 - issue: &703 + assignee: *698 + enterprise: *678 + installation: *679 + issue: &705 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -124438,7 +124505,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -124539,8 +124606,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -124620,8 +124687,8 @@ x-webhooks: type: string enum: - closed - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -125444,7 +125511,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -125680,8 +125747,8 @@ x-webhooks: required: - state - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -125760,8 +125827,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -126575,7 +126642,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -126675,8 +126742,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -126755,8 +126822,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -127592,7 +127659,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -127671,7 +127738,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &701 + milestone: &703 title: Milestone description: A collection of related issues and pull requests. type: object @@ -127809,8 +127876,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -127909,8 +127976,8 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128725,7 +128792,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -128829,9 +128896,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *695 - organization: *678 - repository: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -128911,8 +128978,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129726,7 +129793,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -129830,9 +129897,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *695 - organization: *678 - repository: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -129912,8 +129979,8 @@ x-webhooks: type: string enum: - locked - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -130751,7 +130818,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -130832,8 +130899,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -130912,8 +130979,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131748,7 +131815,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -131826,9 +131893,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *701 - organization: *678 - repository: *679 + milestone: *703 + organization: *680 + repository: *681 sender: *4 required: - action @@ -132802,7 +132869,7 @@ x-webhooks: required: - login - id - type: *195 + type: *196 required: - id - number @@ -133271,8 +133338,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134090,7 +134157,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -134190,8 +134257,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -134271,9 +134338,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *676 - installation: *677 - issue: &702 + enterprise: *678 + installation: *679 + issue: &704 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135085,7 +135152,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -135185,8 +135252,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -135265,8 +135332,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136183,9 +136250,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *195 - organization: *678 - repository: *679 + type: *196 + organization: *680 + repository: *681 sender: *4 required: - action @@ -137080,7 +137147,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -137648,11 +137715,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *676 - installation: *677 - issue: *702 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *704 + organization: *680 + repository: *681 sender: *4 required: - action @@ -137732,12 +137799,12 @@ x-webhooks: type: string enum: - typed - enterprise: *676 - installation: *677 - issue: *703 - type: *195 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *705 + type: *196 + organization: *680 + repository: *681 sender: *4 required: - action @@ -137818,7 +137885,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &731 + assignee: &733 title: User type: object nullable: true @@ -137888,11 +137955,11 @@ x-webhooks: required: - login - id - enterprise: *676 - installation: *677 - issue: *703 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *705 + organization: *680 + repository: *681 sender: *4 required: - action @@ -137971,12 +138038,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *676 - installation: *677 - issue: *703 - label: *695 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *705 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -138056,8 +138123,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138896,7 +138963,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -138974,8 +139041,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139055,11 +139122,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *676 - installation: *677 - issue: *702 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *704 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139138,12 +139205,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *676 - installation: *677 - issue: *703 - type: *195 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *705 + type: *196 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139223,11 +139290,11 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - label: *695 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139305,11 +139372,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - label: *695 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139419,11 +139486,11 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - label: *695 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139505,9 +139572,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *676 - installation: *677 - marketplace_purchase: &704 + enterprise: *678 + installation: *679 + marketplace_purchase: &706 title: Marketplace Purchase type: object required: @@ -139590,8 +139657,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *678 - previous_marketplace_purchase: &705 + organization: *680 + previous_marketplace_purchase: &707 title: Marketplace Purchase type: object properties: @@ -139671,7 +139738,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -139751,10 +139818,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *676 - installation: *677 - marketplace_purchase: *704 - organization: *678 + enterprise: *678 + installation: *679 + marketplace_purchase: *706 + organization: *680 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -139837,7 +139904,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -139919,10 +139986,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *676 - installation: *677 - marketplace_purchase: *704 - organization: *678 + enterprise: *678 + installation: *679 + marketplace_purchase: *706 + organization: *680 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -140004,7 +140071,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -140085,8 +140152,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 marketplace_purchase: title: Marketplace Purchase type: object @@ -140168,9 +140235,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *678 - previous_marketplace_purchase: *705 - repository: *679 + organization: *680 + previous_marketplace_purchase: *707 + repository: *681 sender: *4 required: - action @@ -140250,12 +140317,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *676 - installation: *677 - marketplace_purchase: *704 - organization: *678 - previous_marketplace_purchase: *705 - repository: *679 + enterprise: *678 + installation: *679 + marketplace_purchase: *706 + organization: *680 + previous_marketplace_purchase: *707 + repository: *681 sender: *4 required: - action @@ -140357,11 +140424,11 @@ x-webhooks: type: string required: - to - enterprise: *676 - installation: *677 - member: *696 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + member: *698 + organization: *680 + repository: *681 sender: *4 required: - action @@ -140461,11 +140528,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *676 - installation: *677 - member: *696 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + member: *698 + organization: *680 + repository: *681 sender: *4 required: - action @@ -140544,11 +140611,11 @@ x-webhooks: type: string enum: - removed - enterprise: *676 - installation: *677 - member: *696 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + member: *698 + organization: *680 + repository: *681 sender: *4 required: - action @@ -140626,11 +140693,11 @@ x-webhooks: type: string enum: - added - enterprise: *676 - installation: *677 - member: *696 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + member: *698 + organization: *680 + repository: *681 scope: description: The scope of the membership. Currently, can only be `team`. @@ -140706,7 +140773,7 @@ x-webhooks: required: - login - id - team: &706 + team: &708 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -140896,11 +140963,11 @@ x-webhooks: type: string enum: - removed - enterprise: *676 - installation: *677 - member: *696 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + member: *698 + organization: *680 + repository: *681 scope: description: The scope of the membership. Currently, can only be `team`. @@ -140977,7 +141044,7 @@ x-webhooks: required: - login - id - team: *706 + team: *708 required: - action - scope @@ -141059,8 +141126,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *677 - merge_group: &708 + installation: *679 + merge_group: &710 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -141079,15 +141146,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *707 + head_commit: *709 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141173,10 +141240,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *677 - merge_group: *708 - organization: *678 - repository: *679 + installation: *679 + merge_group: *710 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141249,7 +141316,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 + enterprise: *678 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -141358,16 +141425,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *677 - organization: *678 + installation: *679 + organization: *680 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: *709 - required: *710 + properties: *711 + required: *712 nullable: true sender: *4 required: @@ -141448,11 +141515,11 @@ x-webhooks: type: string enum: - closed - enterprise: *676 - installation: *677 - milestone: *701 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + milestone: *703 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141531,9 +141598,9 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - milestone: &711 + enterprise: *678 + installation: *679 + milestone: &713 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141670,8 +141737,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141750,11 +141817,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - milestone: *701 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + milestone: *703 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141864,11 +141931,11 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - milestone: *701 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + milestone: *703 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141948,11 +142015,11 @@ x-webhooks: type: string enum: - opened - enterprise: *676 - installation: *677 - milestone: *711 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + milestone: *713 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142031,11 +142098,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *696 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + blocked_user: *698 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142114,11 +142181,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *696 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + blocked_user: *698 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142197,9 +142264,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - membership: &712 + enterprise: *678 + installation: *679 + membership: &714 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -142306,8 +142373,8 @@ x-webhooks: - role - organization_url - user - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142385,11 +142452,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *676 - installation: *677 - membership: *712 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + membership: *714 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142468,8 +142535,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -142585,10 +142652,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 - user: *696 + user: *698 required: - action - invitation @@ -142666,11 +142733,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *676 - installation: *677 - membership: *712 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + membership: *714 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142757,11 +142824,11 @@ x-webhooks: properties: from: type: string - enterprise: *676 - installation: *677 - membership: *712 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + membership: *714 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142837,9 +142904,9 @@ x-webhooks: type: string enum: - published - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 package: description: Information about the package. type: object @@ -143338,7 +143405,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &713 + items: &715 title: Ruby Gems metadata type: object properties: @@ -143433,7 +143500,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -143509,9 +143576,9 @@ x-webhooks: type: string enum: - updated - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 package: description: Information about the package. type: object @@ -143864,7 +143931,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *713 + items: *715 source_url: type: string format: uri @@ -143934,7 +144001,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -144111,12 +144178,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *676 + enterprise: *678 id: type: integer - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - id @@ -144193,7 +144260,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &714 + personal_access_token_request: &716 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -144339,10 +144406,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *676 - organization: *678 + enterprise: *678 + organization: *680 sender: *4 - installation: *677 + installation: *679 required: - action - personal_access_token_request @@ -144419,11 +144486,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *714 - enterprise: *676 - organization: *678 + personal_access_token_request: *716 + enterprise: *678 + organization: *680 sender: *4 - installation: *677 + installation: *679 required: - action - personal_access_token_request @@ -144499,11 +144566,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *714 - enterprise: *676 - organization: *678 + personal_access_token_request: *716 + enterprise: *678 + organization: *680 sender: *4 - installation: *677 + installation: *679 required: - action - personal_access_token_request @@ -144578,11 +144645,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *714 - organization: *678 - enterprise: *676 + personal_access_token_request: *716 + organization: *680 + enterprise: *678 sender: *4 - installation: *677 + installation: *679 required: - action - personal_access_token_request @@ -144687,7 +144754,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *715 + last_response: *717 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -144719,8 +144786,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 zen: description: Random string of GitHub zen. @@ -144965,10 +145032,10 @@ x-webhooks: - from required: - note - enterprise: *676 - installation: *677 - organization: *678 - project_card: &716 + enterprise: *678 + installation: *679 + organization: *680 + project_card: &718 title: Project Card type: object properties: @@ -145087,7 +145154,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -145168,11 +145235,11 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - project_card: *716 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project_card: *718 + repository: *681 sender: *4 required: - action @@ -145252,9 +145319,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 project_card: title: Project Card type: object @@ -145382,8 +145449,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: *709 - required: *710 + properties: *711 + required: *712 nullable: true sender: *4 required: @@ -145477,11 +145544,11 @@ x-webhooks: - from required: - note - enterprise: *676 - installation: *677 - organization: *678 - project_card: *716 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project_card: *718 + repository: *681 sender: *4 required: - action @@ -145575,9 +145642,9 @@ x-webhooks: - from required: - column_id - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 project_card: allOf: - title: Project Card @@ -145767,7 +145834,7 @@ x-webhooks: type: string required: - after_id - repository: *679 + repository: *681 sender: *4 required: - action @@ -145847,10 +145914,10 @@ x-webhooks: type: string enum: - closed - enterprise: *676 - installation: *677 - organization: *678 - project: &718 + enterprise: *678 + installation: *679 + organization: *680 + project: &720 title: Project type: object properties: @@ -145974,7 +146041,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -146054,10 +146121,10 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - project_column: &717 + enterprise: *678 + installation: *679 + organization: *680 + project_column: &719 title: Project Column type: object properties: @@ -146096,7 +146163,7 @@ x-webhooks: - name - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -146175,18 +146242,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - project_column: *717 + enterprise: *678 + installation: *679 + organization: *680 + project_column: *719 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: *709 - required: *710 + properties: *711 + required: *712 nullable: true sender: *4 required: @@ -146276,11 +146343,11 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - organization: *678 - project_column: *717 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project_column: *719 + repository: *681 sender: *4 required: - action @@ -146360,11 +146427,11 @@ x-webhooks: type: string enum: - moved - enterprise: *676 - installation: *677 - organization: *678 - project_column: *717 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project_column: *719 + repository: *681 sender: *4 required: - action @@ -146444,11 +146511,11 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - project: *718 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project: *720 + repository: *681 sender: *4 required: - action @@ -146528,18 +146595,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - project: *718 + enterprise: *678 + installation: *679 + organization: *680 + project: *720 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: *709 - required: *710 + properties: *711 + required: *712 nullable: true sender: *4 required: @@ -146641,11 +146708,11 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - organization: *678 - project: *718 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project: *720 + repository: *681 sender: *4 required: - action @@ -146724,11 +146791,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *676 - installation: *677 - organization: *678 - project: *718 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project: *720 + repository: *681 sender: *4 required: - action @@ -146809,9 +146876,9 @@ x-webhooks: type: string enum: - closed - installation: *677 - organization: *678 - projects_v2: &719 + installation: *679 + organization: *680 + projects_v2: &721 title: Projects v2 Project description: A projects v2 project type: object @@ -146954,9 +147021,9 @@ x-webhooks: type: string enum: - created - installation: *677 - organization: *678 - projects_v2: *719 + installation: *679 + organization: *680 + projects_v2: *721 sender: *4 required: - action @@ -147037,9 +147104,9 @@ x-webhooks: type: string enum: - deleted - installation: *677 - organization: *678 - projects_v2: *719 + installation: *679 + organization: *680 + projects_v2: *721 sender: *4 required: - action @@ -147156,9 +147223,9 @@ x-webhooks: type: string to: type: string - installation: *677 - organization: *678 - projects_v2: *719 + installation: *679 + organization: *680 + projects_v2: *721 sender: *4 required: - action @@ -147241,7 +147308,7 @@ x-webhooks: type: string enum: - archived - changes: &723 + changes: &725 type: object properties: archived_at: @@ -147255,9 +147322,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *677 - organization: *678 - projects_v2_item: &720 + installation: *679 + organization: *680 + projects_v2_item: &722 title: Projects v2 Item description: An item belonging to a project type: object @@ -147391,9 +147458,9 @@ x-webhooks: nullable: true to: type: string - installation: *677 - organization: *678 - projects_v2_item: *720 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147475,9 +147542,9 @@ x-webhooks: type: string enum: - created - installation: *677 - organization: *678 - projects_v2_item: *720 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147558,9 +147625,9 @@ x-webhooks: type: string enum: - deleted - installation: *677 - organization: *678 - projects_v2_item: *720 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147666,7 +147733,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &721 + - &723 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -147684,7 +147751,7 @@ x-webhooks: required: - id - name - - &722 + - &724 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -147707,8 +147774,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *721 - - *722 + - *723 + - *724 required: - field_value - type: object @@ -147724,9 +147791,9 @@ x-webhooks: nullable: true required: - body - installation: *677 - organization: *678 - projects_v2_item: *720 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147821,9 +147888,9 @@ x-webhooks: to: type: string nullable: true - installation: *677 - organization: *678 - projects_v2_item: *720 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147906,10 +147973,10 @@ x-webhooks: type: string enum: - restored - changes: *723 - installation: *677 - organization: *678 - projects_v2_item: *720 + changes: *725 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147991,9 +148058,9 @@ x-webhooks: type: string enum: - reopened - installation: *677 - organization: *678 - projects_v2: *719 + installation: *679 + organization: *680 + projects_v2: *721 sender: *4 required: - action @@ -148074,9 +148141,9 @@ x-webhooks: type: string enum: - created - installation: *677 - organization: *678 - projects_v2_status_update: &724 + installation: *679 + organization: *680 + projects_v2_status_update: &726 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -148203,9 +148270,9 @@ x-webhooks: type: string enum: - deleted - installation: *677 - organization: *678 - projects_v2_status_update: *724 + installation: *679 + organization: *680 + projects_v2_status_update: *726 sender: *4 required: - action @@ -148341,9 +148408,9 @@ x-webhooks: type: string format: date nullable: true - installation: *677 - organization: *678 - projects_v2_status_update: *724 + installation: *679 + organization: *680 + projects_v2_status_update: *726 sender: *4 required: - action @@ -148414,10 +148481,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - repository @@ -148494,13 +148561,13 @@ x-webhooks: type: string enum: - assigned - assignee: *696 - enterprise: *676 - installation: *677 - number: &725 + assignee: *698 + enterprise: *678 + installation: *679 + number: &727 description: The pull request number. type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -150783,7 +150850,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -150865,11 +150932,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -153147,7 +153214,7 @@ x-webhooks: - draft reason: type: string - repository: *679 + repository: *681 sender: *4 required: - action @@ -153229,11 +153296,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -155511,7 +155578,7 @@ x-webhooks: - draft reason: type: string - repository: *679 + repository: *681 sender: *4 required: - action @@ -155593,13 +155660,13 @@ x-webhooks: type: string enum: - closed - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: &726 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: &728 allOf: - - *526 + - *547 - type: object properties: allow_auto_merge: @@ -155661,7 +155728,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *679 + repository: *681 sender: *4 required: - action @@ -155742,12 +155809,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: *726 - repository: *679 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: *728 + repository: *681 sender: *4 required: - action @@ -155827,11 +155894,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *676 - milestone: *509 - number: *725 - organization: *678 - pull_request: &727 + enterprise: *678 + milestone: *530 + number: *727 + organization: *680 + pull_request: &729 title: Pull Request type: object properties: @@ -158094,7 +158161,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -158173,11 +158240,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -160459,7 +160526,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *679 + repository: *681 sender: *4 required: - action @@ -160583,12 +160650,12 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: *726 - repository: *679 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: *728 + repository: *681 sender: *4 required: - action @@ -160668,11 +160735,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -162939,7 +163006,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -163019,11 +163086,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *676 - installation: *677 - label: *695 - number: *725 - organization: *678 + enterprise: *678 + installation: *679 + label: *697 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -165305,7 +165372,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -165386,10 +165453,10 @@ x-webhooks: type: string enum: - locked - enterprise: *676 - installation: *677 - number: *725 - organization: *678 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -167669,7 +167736,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -167749,12 +167816,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *676 - milestone: *509 - number: *725 - organization: *678 - pull_request: *727 - repository: *679 + enterprise: *678 + milestone: *530 + number: *727 + organization: *680 + pull_request: *729 + repository: *681 sender: *4 required: - action @@ -167833,12 +167900,12 @@ x-webhooks: type: string enum: - opened - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: *726 - repository: *679 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: *728 + repository: *681 sender: *4 required: - action @@ -167919,12 +167986,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: *726 - repository: *679 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: *728 + repository: *681 sender: *4 required: - action @@ -168004,12 +168071,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: *726 - repository: *679 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: *728 + repository: *681 sender: *4 required: - action @@ -168375,9 +168442,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: type: object properties: @@ -170547,7 +170614,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -170627,7 +170694,7 @@ x-webhooks: type: string enum: - deleted - comment: &729 + comment: &731 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -170912,9 +170979,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: type: object properties: @@ -173072,7 +173139,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -173152,11 +173219,11 @@ x-webhooks: type: string enum: - edited - changes: *728 - comment: *729 - enterprise: *676 - installation: *677 - organization: *678 + changes: *730 + comment: *731 + enterprise: *678 + installation: *679 + organization: *680 pull_request: type: object properties: @@ -175317,7 +175384,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -175398,9 +175465,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: title: Simple Pull Request type: object @@ -177573,7 +177640,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 + repository: *681 review: description: The review that was affected. type: object @@ -177816,9 +177883,9 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: title: Simple Pull Request type: object @@ -179872,8 +179939,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 - review: &730 + repository: *681 + review: &732 description: The review that was affected. type: object properties: @@ -180102,12 +180169,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: description: The pull request number. type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -182390,7 +182457,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_reviewer: title: User type: object @@ -182474,12 +182541,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: description: The pull request number. type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -184769,7 +184836,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_team: title: Team description: Groups of organization members that gives permissions @@ -184961,12 +185028,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: description: The pull request number. type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -187251,7 +187318,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_reviewer: title: User type: object @@ -187336,12 +187403,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: description: The pull request number. type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -189617,7 +189684,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_team: title: Team description: Groups of organization members that gives permissions @@ -189798,9 +189865,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: title: Simple Pull Request type: object @@ -191975,8 +192042,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 - review: *730 + repository: *681 + review: *732 sender: *4 required: - action @@ -192056,9 +192123,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: title: Simple Pull Request type: object @@ -194128,7 +194195,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 + repository: *681 sender: *4 thread: type: object @@ -194511,9 +194578,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: title: Simple Pull Request type: object @@ -196569,7 +196636,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 + repository: *681 sender: *4 thread: type: object @@ -196955,10 +197022,10 @@ x-webhooks: type: string before: type: string - enterprise: *676 - installation: *677 - number: *725 - organization: *678 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -199229,7 +199296,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -199311,11 +199378,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *731 - enterprise: *676 - installation: *677 - number: *725 - organization: *678 + assignee: *733 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -201598,7 +201665,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -201677,11 +201744,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *676 - installation: *677 - label: *695 - number: *725 - organization: *678 + enterprise: *678 + installation: *679 + label: *697 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -203954,7 +204021,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -204035,10 +204102,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *676 - installation: *677 - number: *725 - organization: *678 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -206303,7 +206370,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -206503,7 +206570,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *676 + enterprise: *678 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -206595,8 +206662,8 @@ x-webhooks: - url - author - committer - installation: *677 - organization: *678 + installation: *679 + organization: *680 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -207171,9 +207238,9 @@ x-webhooks: type: string enum: - published - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 registry_package: type: object properties: @@ -207619,7 +207686,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *713 + items: *715 summary: type: string tag_name: @@ -207673,7 +207740,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -207751,9 +207818,9 @@ x-webhooks: type: string enum: - updated - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 registry_package: type: object properties: @@ -208061,7 +208128,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *713 + items: *715 summary: type: string tag_name: @@ -208110,7 +208177,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -208187,10 +208254,10 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - release: &732 + enterprise: *678 + installation: *679 + organization: *680 + release: &734 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -208503,7 +208570,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *679 + repository: *681 sender: *4 required: - action @@ -208580,11 +208647,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - release: *732 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + release: *734 + repository: *681 sender: *4 required: - action @@ -208701,11 +208768,11 @@ x-webhooks: type: boolean required: - to - enterprise: *676 - installation: *677 - organization: *678 - release: *732 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + release: *734 + repository: *681 sender: *4 required: - action @@ -208783,9 +208850,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -209102,7 +209169,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *679 + repository: *681 sender: *4 required: - action @@ -209178,10 +209245,10 @@ x-webhooks: type: string enum: - published - enterprise: *676 - installation: *677 - organization: *678 - release: &733 + enterprise: *678 + installation: *679 + organization: *680 + release: &735 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -209495,7 +209562,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *679 + repository: *681 sender: *4 required: - action @@ -209571,11 +209638,11 @@ x-webhooks: type: string enum: - released - enterprise: *676 - installation: *677 - organization: *678 - release: *732 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + release: *734 + repository: *681 sender: *4 required: - action @@ -209651,11 +209718,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *676 - installation: *677 - organization: *678 - release: *733 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + release: *735 + repository: *681 sender: *4 required: - action @@ -209731,11 +209798,11 @@ x-webhooks: type: string enum: - published - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - repository_advisory: *600 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + repository_advisory: *602 sender: *4 required: - action @@ -209811,11 +209878,11 @@ x-webhooks: type: string enum: - reported - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - repository_advisory: *600 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + repository_advisory: *602 sender: *4 required: - action @@ -209891,10 +209958,10 @@ x-webhooks: type: string enum: - archived - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -209971,10 +210038,10 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210052,10 +210119,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210139,10 +210206,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210254,10 +210321,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210329,10 +210396,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 status: type: string @@ -210413,10 +210480,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210493,10 +210560,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210590,10 +210657,10 @@ x-webhooks: - name required: - repository - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210673,11 +210740,11 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - repository_ruleset: *247 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + repository_ruleset: *267 sender: *4 required: - action @@ -210755,11 +210822,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - repository_ruleset: *247 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + repository_ruleset: *267 sender: *4 required: - action @@ -210837,11 +210904,11 @@ x-webhooks: type: string enum: - edited - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - repository_ruleset: *247 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + repository_ruleset: *267 changes: type: object properties: @@ -210860,16 +210927,16 @@ x-webhooks: properties: added: type: array - items: *241 + items: *242 deleted: type: array - items: *241 + items: *242 updated: type: array items: type: object properties: - condition: *241 + condition: *242 changes: type: object properties: @@ -210902,16 +210969,16 @@ x-webhooks: properties: added: type: array - items: *246 + items: *567 deleted: type: array - items: *246 + items: *567 updated: type: array items: type: object properties: - rule: *246 + rule: *567 changes: type: object properties: @@ -211145,10 +211212,10 @@ x-webhooks: - from required: - owner - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -211226,10 +211293,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -211307,7 +211374,7 @@ x-webhooks: type: string enum: - create - alert: &734 + alert: &736 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -211428,10 +211495,10 @@ x-webhooks: type: string enum: - open - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -211637,10 +211704,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -211718,11 +211785,11 @@ x-webhooks: type: string enum: - reopen - alert: *734 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + alert: *736 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -211921,10 +211988,10 @@ x-webhooks: enum: - fixed - open - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212002,7 +212069,7 @@ x-webhooks: type: string enum: - created - alert: &735 + alert: &737 type: object properties: number: *54 @@ -212113,10 +212180,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212197,11 +212264,11 @@ x-webhooks: type: string enum: - created - alert: *735 - installation: *677 - location: *736 - organization: *678 - repository: *679 + alert: *737 + installation: *679 + location: *738 + organization: *680 + repository: *681 sender: *4 required: - location @@ -212439,11 +212506,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *735 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + alert: *737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212521,11 +212588,11 @@ x-webhooks: type: string enum: - reopened - alert: *735 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + alert: *737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212603,11 +212670,11 @@ x-webhooks: type: string enum: - resolved - alert: *735 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + alert: *737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212685,11 +212752,11 @@ x-webhooks: type: string enum: - validated - alert: *735 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + alert: *737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212815,10 +212882,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *679 - enterprise: *676 - installation: *677 - organization: *678 + repository: *681 + enterprise: *678 + installation: *679 + organization: *680 sender: *4 required: - action @@ -212896,11 +212963,11 @@ x-webhooks: type: string enum: - published - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - security_advisory: &737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + security_advisory: &739 description: The details of the security advisory, including summary, description, and severity. type: object @@ -213083,11 +213150,11 @@ x-webhooks: type: string enum: - updated - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - security_advisory: *737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + security_advisory: *739 sender: *4 required: - action @@ -213160,10 +213227,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -213347,11 +213414,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *240 - enterprise: *676 - installation: *677 - organization: *678 - repository: *294 + security_and_analysis: *241 + enterprise: *678 + installation: *679 + organization: *680 + repository: *315 sender: *4 required: - changes @@ -213429,12 +213496,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: &738 + sponsorship: &740 type: object properties: created_at: @@ -213735,12 +213802,12 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: *738 + sponsorship: *740 required: - action - sponsorship @@ -213828,12 +213895,12 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: *738 + sponsorship: *740 required: - action - changes @@ -213910,17 +213977,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &739 + effective_date: &741 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: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: *738 + sponsorship: *740 required: - action - sponsorship @@ -213994,7 +214061,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &740 + changes: &742 type: object properties: tier: @@ -214038,13 +214105,13 @@ x-webhooks: - from required: - tier - effective_date: *739 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + effective_date: *741 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: *738 + sponsorship: *740 required: - action - changes @@ -214121,13 +214188,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *740 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + changes: *742 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: *738 + sponsorship: *740 required: - action - changes @@ -214201,10 +214268,10 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -214287,10 +214354,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -214710,15 +214777,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *676 + enterprise: *678 id: description: The unique identifier of the status. type: integer - installation: *677 + installation: *679 name: type: string - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 sha: description: The Commit SHA. @@ -214833,9 +214900,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -214925,9 +214992,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -215017,9 +215084,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -215109,9 +215176,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -215188,12 +215255,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - team: &741 + team: &743 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -215383,9 +215450,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 repository: title: Repository description: A git repository @@ -215843,7 +215910,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -215919,9 +215986,9 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 repository: title: Repository description: A git repository @@ -216379,7 +216446,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -216456,9 +216523,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 repository: title: Repository description: A git repository @@ -216916,7 +216983,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -217060,9 +217127,9 @@ x-webhooks: - from required: - permissions - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 repository: title: Repository description: A git repository @@ -217520,7 +217587,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - changes @@ -217598,9 +217665,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 repository: title: Repository description: A git repository @@ -218058,7 +218125,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -218134,10 +218201,10 @@ x-webhooks: type: string enum: - started - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -218210,16 +218277,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *676 + enterprise: *678 inputs: type: object nullable: true additionalProperties: true - installation: *677 - organization: *678 + installation: *679 + organization: *680 ref: type: string - repository: *679 + repository: *681 sender: *4 workflow: type: string @@ -218301,10 +218368,10 @@ x-webhooks: type: string enum: - completed - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 workflow_job: allOf: @@ -218541,7 +218608,7 @@ x-webhooks: type: string required: - conclusion - deployment: *441 + deployment: *462 required: - action - repository @@ -218620,10 +218687,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 workflow_job: allOf: @@ -218883,7 +218950,7 @@ x-webhooks: required: - status - steps - deployment: *441 + deployment: *462 required: - action - repository @@ -218962,10 +219029,10 @@ x-webhooks: type: string enum: - queued - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 workflow_job: type: object @@ -219100,7 +219167,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *441 + deployment: *462 required: - action - repository @@ -219179,10 +219246,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 workflow_job: type: object @@ -219318,7 +219385,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *441 + deployment: *462 required: - action - repository @@ -219398,12 +219465,12 @@ x-webhooks: type: string enum: - completed - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - workflow: *691 + workflow: *693 workflow_run: title: Workflow Run type: object @@ -220402,12 +220469,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - workflow: *691 + workflow: *693 workflow_run: title: Workflow Run type: object @@ -221391,12 +221458,12 @@ x-webhooks: type: string enum: - requested - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - workflow: *691 + workflow: *693 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 a869badd45..8252d3075c 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -16407,7 +16407,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -16818,6 +16825,18 @@ ], "default": "disabled" }, + "code_scanning_options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -17058,7 +17077,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -17514,7 +17540,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -17713,6 +17746,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -17755,6 +17791,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -17903,7 +17942,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -18514,7 +18560,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -19325,7 +19378,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -19523,6 +19583,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -71517,7 +71580,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -71935,6 +72005,18 @@ ], "default": "disabled" }, + "code_scanning_options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -72215,7 +72297,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -72408,6 +72497,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -72563,7 +72655,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -72762,6 +72861,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -72804,6 +72906,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -73215,7 +73320,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -73408,6 +73520,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -73868,7 +73983,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -74061,6 +74183,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "disabled", "secret_scanning_push_protection": "disabled", @@ -74542,7 +74667,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -74740,6 +74872,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -120136,7 +120271,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -120339,7 +120479,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -120444,7 +120589,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -120779,7 +120929,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -120915,7 +121070,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -130726,83 +130886,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -135252,83 +135335,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -235438,7 +235444,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -337094,7 +337107,7 @@ "/repos/{owner}/{repo}/issues/{issue_number}/sub_issues": { "get": { "summary": "List sub-issues", - "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\n\n- **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", "tags": [ "issues" ], 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 bb3ae6d66d..8e27ded4dd 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -851,7 +851,7 @@ paths: - subscriptions_url - type - url - type: &260 + type: &281 type: string description: The type of credit the user is receiving. enum: @@ -1017,7 +1017,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &602 + - &604 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1573,7 +1573,7 @@ paths: schema: type: integer default: 30 - - &173 + - &174 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1589,7 +1589,7 @@ paths: application/json: schema: type: array - items: &174 + items: &175 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1669,7 +1669,7 @@ paths: - installation_id - repository_id examples: - default: &175 + default: &176 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1797,7 +1797,7 @@ paths: description: Response content: application/json: - schema: &176 + schema: &177 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1911,7 +1911,7 @@ paths: - request - response examples: - default: &177 + default: &178 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2841,7 +2841,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &238 + properties: &239 id: description: Unique identifier of the repository example: 42 @@ -3279,7 +3279,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &239 + required: &240 - archive_url - assignees_url - blobs_url @@ -7091,6 +7091,11 @@ paths: type: object description: Feature options for code scanning nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default @@ -7386,6 +7391,15 @@ paths: - disabled - not_set default: disabled + code_scanning_options: &145 + type: object + description: Security Configuration feature options for code scanning + nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -7571,7 +7585,7 @@ paths: description: Response content: application/json: - schema: &146 + schema: &147 type: array description: A list of default code security configurations items: @@ -7587,7 +7601,7 @@ paths: default configuration: *43 examples: - default: &147 + default: &148 value: - default_for_new_repos: public configuration: @@ -7606,6 +7620,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: enabled @@ -7640,6 +7656,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: disabled @@ -7914,7 +7932,7 @@ paths: - *42 - *45 responses: - '204': &148 + '204': &149 description: A header with no content is returned. '400': *14 '403': *29 @@ -8041,7 +8059,7 @@ paths: default: value: default_for_new_repos: all - configuration: &145 + configuration: &146 value: id: 1325 target_type: organization @@ -8058,6 +8076,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: enabled secret_scanning_push_protection: disabled @@ -8124,7 +8144,7 @@ paths: application/json: schema: type: array - items: &149 + items: &150 type: object description: Repositories associated with a code security configuration and attachment status @@ -8425,7 +8445,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &150 + repository: &151 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -8519,7 +8539,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *42 - - &155 + - &156 name: state in: query description: |- @@ -8528,7 +8548,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &156 + - &157 name: severity in: query description: |- @@ -8537,7 +8557,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &157 + - &158 name: ecosystem in: query description: |- @@ -8546,14 +8566,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &158 + - &159 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &159 + - &160 name: epss_percentage in: query description: |- @@ -8565,7 +8585,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &160 + - &161 name: has in: query description: |- @@ -8579,7 +8599,7 @@ paths: type: string enum: - patch - - &161 + - &162 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -8589,7 +8609,7 @@ paths: enum: - development - runtime - - &162 + - &163 name: sort in: query description: |- @@ -8607,7 +8627,7 @@ paths: - *48 - *40 - *41 - - &163 + - &164 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -8620,7 +8640,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &164 + - &165 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -8640,7 +8660,7 @@ paths: application/json: schema: type: array - items: &165 + items: &166 type: object description: A Dependabot alert. properties: @@ -8706,7 +8726,7 @@ paths: - unknown - direct - transitive - security_advisory: &433 + security_advisory: &454 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -8968,7 +8988,7 @@ paths: format: date-time readOnly: true nullable: true - auto_dismissed_at: &434 + auto_dismissed_at: &455 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -8994,7 +9014,7 @@ paths: - repository additionalProperties: false examples: - default: &166 + default: &167 value: - number: 2 state: dismissed @@ -9341,7 +9361,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *42 - - &250 + - &271 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9352,7 +9372,7 @@ paths: enum: - open - resolved - - &251 + - &272 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9362,7 +9382,7 @@ paths: required: false schema: type: string - - &252 + - &273 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9371,7 +9391,7 @@ paths: required: false schema: type: string - - &253 + - &274 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -9387,7 +9407,7 @@ paths: - *17 - *40 - *41 - - &254 + - &275 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9396,7 +9416,7 @@ paths: required: false schema: type: string - - &255 + - &276 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9405,7 +9425,7 @@ paths: schema: type: boolean default: false - - &256 + - &277 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9414,7 +9434,7 @@ paths: schema: type: boolean default: false - - &257 + - &278 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -9430,7 +9450,7 @@ paths: application/json: schema: type: array - items: &258 + items: &279 type: object properties: number: *54 @@ -9449,14 +9469,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &580 + state: &582 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &581 + resolution: &583 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -9563,8 +9583,8 @@ paths: pull request. ' - oneOf: &582 - - &584 + oneOf: &584 + - &586 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -9616,7 +9636,7 @@ paths: - blob_url - commit_sha - commit_url - - &585 + - &587 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -9671,7 +9691,7 @@ paths: - page_url - commit_sha - commit_url - - &586 + - &588 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -9685,7 +9705,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &587 + - &589 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -9699,7 +9719,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &588 + - &590 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -9713,7 +9733,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &589 + - &591 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -9727,7 +9747,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &590 + - &592 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -9741,7 +9761,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &591 + - &593 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -9755,7 +9775,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &592 + - &594 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -9769,7 +9789,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &593 + - &595 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -9783,7 +9803,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &594 + - &596 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -9797,7 +9817,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &595 + - &597 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -9811,7 +9831,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &596 + - &598 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -9831,7 +9851,7 @@ paths: description: A boolean value representing whether or not the token in the alert was detected in more than one location. examples: - default: &259 + default: &280 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -10183,7 +10203,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &482 + properties: &503 id: type: integer format: int64 @@ -10295,7 +10315,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &418 + properties: &439 url: type: string format: uri @@ -10365,7 +10385,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &419 + required: &440 - closed_issues - creator - description @@ -10444,7 +10464,7 @@ paths: timeline_url: type: string format: uri - type: &195 + type: &196 title: Issue Type description: The type of issue. type: object @@ -10569,7 +10589,7 @@ paths: - total - completed - percent_completed - required: &483 + required: &504 - assignee - closed_at - comments @@ -10591,7 +10611,7 @@ paths: - author_association - created_at - updated_at - comment: &480 + comment: &501 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11158,7 +11178,7 @@ paths: url: type: string format: uri - user: &625 + user: &627 title: Public User description: Public User type: object @@ -13028,7 +13048,7 @@ paths: - closed - all default: open - - &198 + - &199 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -13079,7 +13099,7 @@ paths: type: array items: *77 examples: - default: &199 + default: &200 value: - id: 1 node_id: MDU6SXNzdWUx @@ -14464,14 +14484,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &283 + - &304 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &284 + - &305 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14542,7 +14562,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &295 + '301': &316 description: Moved permanently content: application/json: @@ -14564,7 +14584,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &512 + - &533 name: all description: If `true`, show notifications marked as read. in: query @@ -14572,7 +14592,7 @@ paths: schema: type: boolean default: false - - &513 + - &534 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14582,7 +14602,7 @@ paths: type: boolean default: false - *67 - - &514 + - &535 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -14618,7 +14638,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &168 + properties: &169 id: type: integer format: int64 @@ -14894,7 +14914,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &240 + security_and_analysis: &241 nullable: true type: object properties: @@ -14968,7 +14988,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &169 + required: &170 - archive_url - assignees_url - blobs_url @@ -15056,7 +15076,7 @@ paths: - url - subscription_url examples: - default: &515 + default: &536 value: - id: '1' repository: @@ -15598,11 +15618,11 @@ paths: application/json: schema: type: array - items: &205 + items: &206 title: Organization Simple description: A GitHub organization. type: object - properties: &152 + properties: &153 login: type: string example: github @@ -15643,7 +15663,7 @@ paths: type: string example: A great organization nullable: true - required: &153 + required: &154 - login - url - id @@ -15657,7 +15677,7 @@ paths: - avatar_url - description examples: - default: &643 + default: &645 value: - login: github id: 1 @@ -15968,7 +15988,7 @@ paths: url: https://docs.github.com/rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization parameters: - *96 - - &669 + - &671 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -15977,7 +15997,7 @@ paths: required: false schema: type: integer - - &670 + - &672 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -15986,7 +16006,7 @@ paths: required: false schema: type: integer - - &671 + - &673 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -15995,7 +16015,7 @@ paths: required: false schema: type: integer - - &672 + - &674 name: hour description: If specified, only return results for a single hour. The value of `hour` is an integer between `0` and `23`. If no `year`, `month`, or @@ -16870,7 +16890,7 @@ paths: type: integer repository_cache_usages: type: array - items: &300 + items: &321 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -17737,7 +17757,7 @@ paths: - all - local_only - selected - selected_actions_url: &306 + selected_actions_url: &327 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -17827,7 +17847,7 @@ paths: type: array items: *60 examples: - default: &637 + default: &639 value: total_count: 1 repositories: @@ -18155,7 +18175,7 @@ paths: description: Response content: application/json: - schema: &310 + schema: &331 type: object properties: default_workflow_permissions: &115 @@ -18206,7 +18226,7 @@ paths: required: false content: application/json: - schema: &311 + schema: &332 type: object properties: default_workflow_permissions: *115 @@ -18695,7 +18715,7 @@ paths: type: array items: *122 examples: - default: &628 + default: &630 value: total_count: 1 repositories: @@ -19337,7 +19357,7 @@ paths: application/json: schema: type: array - items: &312 + items: &333 title: Runner Application description: Runner Application type: object @@ -19362,7 +19382,7 @@ paths: - download_url - filename examples: - default: &313 + default: &334 value: - os: osx architecture: x64 @@ -19448,7 +19468,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &314 + '201': &335 description: Response content: application/json: @@ -19559,7 +19579,7 @@ paths: - token - expires_at examples: - default: &315 + default: &336 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -19598,7 +19618,7 @@ paths: application/json: schema: *126 examples: - default: &316 + default: &337 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -19632,7 +19652,7 @@ paths: application/json: schema: *124 examples: - default: &317 + default: &338 value: id: 23 name: MBP @@ -19858,7 +19878,7 @@ paths: - *96 - *123 responses: - '200': &318 + '200': &339 description: Response content: application/json: @@ -19915,7 +19935,7 @@ paths: parameters: - *96 - *123 - - &319 + - &340 name: name description: The name of a self-hosted runner's custom label. in: path @@ -20045,7 +20065,7 @@ paths: description: Response content: application/json: - schema: &331 + schema: &352 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -20074,7 +20094,7 @@ paths: - key_id - key examples: - default: &332 + default: &353 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -20487,7 +20507,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *96 - - &305 + - &326 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -20994,12 +21014,12 @@ paths: required: - subject_digests examples: - default: &658 + default: &660 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &659 + withPredicateType: &661 value: subject_digests: - sha256:abc123 @@ -21057,7 +21077,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &660 + default: &662 value: attestations_subject_digests: - sha256:abc: @@ -21351,7 +21371,7 @@ paths: bundle_url: type: string examples: - default: &345 + default: &366 value: attestations: - bundle: @@ -21470,7 +21490,7 @@ paths: type: array items: *4 examples: - default: &200 + default: &201 value: - login: octocat id: 1 @@ -21652,7 +21672,7 @@ paths: team_managers: description: The campaign team managers type: array - items: &154 + items: &155 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -21711,7 +21731,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &213 + properties: &214 id: description: Unique identifier of the team type: integer @@ -21767,7 +21787,7 @@ paths: to within LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &214 + required: &215 - id - node_id - url @@ -22266,7 +22286,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *96 - - &371 + - &392 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -22276,7 +22296,7 @@ paths: schema: &142 type: string description: The name of the tool used to generate the code scanning analysis. - - &372 + - &393 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -22299,7 +22319,7 @@ paths: be returned. in: query required: false - schema: &374 + schema: &395 type: string description: State of a code scanning alert. enum: @@ -22322,7 +22342,7 @@ paths: be returned. in: query required: false - schema: &375 + schema: &396 type: string description: Severity of a code scanning alert. enum: @@ -22348,7 +22368,7 @@ paths: updated_at: *139 url: *56 html_url: *57 - instances_url: &376 + instances_url: &397 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -22371,7 +22391,7 @@ paths: required: *21 nullable: true dismissed_at: *141 - dismissed_reason: &377 + dismissed_reason: &398 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -22380,13 +22400,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &378 + dismissed_comment: &399 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &379 + rule: &400 type: object properties: id: @@ -22439,7 +22459,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &380 + tool: &401 type: object properties: name: *142 @@ -22449,15 +22469,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *143 - most_recent_instance: &381 + most_recent_instance: &402 type: object properties: - ref: &373 + ref: &394 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &391 + analysis_key: &412 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -22468,7 +22488,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &392 + category: &413 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -22978,6 +22998,7 @@ paths: - disabled - not_set default: disabled + code_scanning_options: *145 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -23120,7 +23141,7 @@ paths: application/json: schema: *43 examples: - default: *145 + default: *146 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -23148,9 +23169,9 @@ paths: description: Response content: application/json: - schema: *146 + schema: *147 examples: - default: *147 + default: *148 '304': *37 '403': *29 '404': *6 @@ -23202,7 +23223,7 @@ paths: - 32 - 91 responses: - '204': *148 + '204': *149 '400': *14 '403': *29 '404': *6 @@ -23237,7 +23258,7 @@ paths: application/json: schema: *43 examples: - default: *145 + default: *146 '304': *37 '403': *29 '404': *6 @@ -23478,6 +23499,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: disabled secret_scanning_push_protection: disabled @@ -23519,7 +23542,7 @@ paths: - *96 - *45 responses: - '204': *148 + '204': *149 '400': *14 '403': *29 '404': *6 @@ -23657,7 +23680,7 @@ paths: default: value: default_for_new_repos: all - configuration: *145 + configuration: *146 '403': *29 '404': *6 x-github: @@ -23710,13 +23733,13 @@ paths: application/json: schema: type: array - items: *149 + items: *150 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *150 + repository: *151 '403': *29 '404': *6 x-github: @@ -23756,7 +23779,7 @@ paths: type: integer codespaces: type: array - items: &201 + items: &202 type: object title: Codespace description: A codespace. @@ -23786,7 +23809,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &404 + properties: &425 name: type: string description: The name of the machine. @@ -23828,7 +23851,7 @@ paths: - ready - in_progress nullable: true - required: &405 + required: &426 - name - display_name - operating_system @@ -24033,7 +24056,7 @@ paths: - pulls_url - recent_folders examples: - default: &202 + default: &203 value: total_count: 3 codespaces: @@ -24657,7 +24680,7 @@ paths: type: integer secrets: type: array - items: &151 + items: &152 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -24696,7 +24719,7 @@ paths: - updated_at - visibility examples: - default: &406 + default: &427 value: total_count: 2 secrets: @@ -24734,7 +24757,7 @@ paths: description: Response content: application/json: - schema: &407 + schema: &428 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -24763,7 +24786,7 @@ paths: - key_id - key examples: - default: &408 + default: &429 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24793,9 +24816,9 @@ paths: description: Response content: application/json: - schema: *151 + schema: *152 examples: - default: &410 + default: &431 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -25262,7 +25285,7 @@ paths: currently being billed. seats: type: array - items: &204 + items: &205 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -25279,14 +25302,14 @@ paths: title: Organization Simple description: A GitHub organization. type: object - properties: *152 - required: *153 + properties: *153 + required: *154 nullable: true assigning_team: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - *154 + - *155 - title: Enterprise Team description: Group of enterprise owners and/or members type: object @@ -25835,7 +25858,7 @@ paths: application/json: schema: type: array - items: &265 + items: &286 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -26142,7 +26165,7 @@ paths: - date additionalProperties: true examples: - default: &266 + default: &287 value: - date: '2024-06-24' total_active_users: 24 @@ -26244,7 +26267,7 @@ paths: '500': *97 '403': *29 '404': *6 - '422': &267 + '422': &288 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -26272,7 +26295,6 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *96 - - *155 - *156 - *157 - *158 @@ -26280,11 +26302,12 @@ paths: - *160 - *161 - *162 + - *163 - *48 - *40 - *41 - - *163 - *164 + - *165 - *17 responses: '200': @@ -26293,9 +26316,9 @@ paths: application/json: schema: type: array - items: *165 + items: *166 examples: - default: *166 + default: *167 '304': *37 '400': *14 '403': *29 @@ -26339,7 +26362,7 @@ paths: type: integer secrets: type: array - items: &167 + items: &168 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -26416,7 +26439,7 @@ paths: description: Response content: application/json: - schema: &437 + schema: &458 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -26433,7 +26456,7 @@ paths: - key_id - key examples: - default: &438 + default: &459 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26463,7 +26486,7 @@ paths: description: Response content: application/json: - schema: *167 + schema: *168 examples: default: value: @@ -26760,7 +26783,7 @@ paths: application/json: schema: type: array - items: &216 + items: &217 title: Package description: A software package type: object @@ -26810,8 +26833,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *168 - required: *169 + properties: *169 + required: *170 nullable: true created_at: type: string @@ -26830,7 +26853,7 @@ paths: - created_at - updated_at examples: - default: &217 + default: &218 value: - id: 197 name: hello_docker @@ -26997,7 +27020,7 @@ paths: application/json: schema: type: array - items: &192 + items: &193 title: Organization Invitation description: Organization Invitation type: object @@ -27044,7 +27067,7 @@ paths: - invitation_teams_url - node_id examples: - default: &193 + default: &194 value: - id: 1 login: monalisa @@ -27111,7 +27134,7 @@ paths: application/json: schema: type: array - items: &170 + items: &171 title: Org Hook description: Org Hook type: object @@ -27282,9 +27305,9 @@ paths: description: Response content: application/json: - schema: *170 + schema: *171 examples: - default: &171 + default: &172 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -27332,7 +27355,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *96 - - &172 + - &173 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -27345,9 +27368,9 @@ paths: description: Response content: application/json: - schema: *170 + schema: *171 examples: - default: *171 + default: *172 '404': *6 x-github: githubCloudOnly: false @@ -27375,7 +27398,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *96 - - *172 + - *173 requestBody: required: false content: @@ -27420,7 +27443,7 @@ paths: description: Response content: application/json: - schema: *170 + schema: *171 examples: default: value: @@ -27462,7 +27485,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *96 - - *172 + - *173 responses: '204': description: Response @@ -27490,7 +27513,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *96 - - *172 + - *173 responses: '200': description: Response @@ -27521,7 +27544,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *96 - - *172 + - *173 requestBody: required: false content: @@ -27572,9 +27595,9 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *96 - - *172 - - *17 - *173 + - *17 + - *174 responses: '200': description: Response @@ -27582,9 +27605,9 @@ paths: application/json: schema: type: array - items: *174 + items: *175 examples: - default: *175 + default: *176 '400': *14 '422': *15 x-github: @@ -27610,16 +27633,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *96 - - *172 + - *173 - *16 responses: '200': description: Response content: application/json: - schema: *176 + schema: *177 examples: - default: *177 + default: *178 '400': *14 '422': *15 x-github: @@ -27645,7 +27668,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *96 - - *172 + - *173 - *16 responses: '202': *39 @@ -27675,7 +27698,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *96 - - *172 + - *173 responses: '204': description: Response @@ -27698,7 +27721,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *96 - - &182 + - &183 name: actor_type in: path description: The type of the actor @@ -27711,14 +27734,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &183 + - &184 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &178 + - &179 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -27726,7 +27749,7 @@ paths: required: true schema: type: string - - &179 + - &180 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -27820,12 +27843,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *96 - - *178 - *179 + - *180 - *19 - *17 - *48 - - &188 + - &189 name: sort description: The property to sort the results by. in: query @@ -27904,14 +27927,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *96 - - *178 - *179 + - *180 responses: '200': description: Response content: application/json: - schema: &180 + schema: &181 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -27927,7 +27950,7 @@ paths: type: integer format: int64 examples: - default: &181 + default: &182 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -27948,23 +27971,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *96 - - &184 + - &185 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *178 - *179 + - *180 responses: '200': description: Response content: application/json: - schema: *180 + schema: *181 examples: - default: *181 + default: *182 x-github: enabledForGitHubApps: true category: orgs @@ -27983,18 +28006,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *96 - - *178 - *179 - - *182 + - *180 - *183 + - *184 responses: '200': description: Response content: application/json: - schema: *180 + schema: *181 examples: - default: *181 + default: *182 x-github: enabledForGitHubApps: true category: orgs @@ -28012,9 +28035,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *96 - - *178 - *179 - - &185 + - *180 + - &186 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -28027,7 +28050,7 @@ paths: description: Response content: application/json: - schema: &186 + schema: &187 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -28043,7 +28066,7 @@ paths: type: integer format: int64 examples: - default: &187 + default: &188 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -28080,18 +28103,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *96 - - *184 - - *178 - - *179 - *185 + - *179 + - *180 + - *186 responses: '200': description: Response content: application/json: - schema: *186 + schema: *187 examples: - default: *187 + default: *188 x-github: enabledForGitHubApps: true category: orgs @@ -28109,19 +28132,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *96 - - *182 - *183 - - *178 + - *184 - *179 - - *185 + - *180 + - *186 responses: '200': description: Response content: application/json: - schema: *186 + schema: *187 examples: - default: *187 + default: *188 x-github: enabledForGitHubApps: true category: orgs @@ -28139,13 +28162,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *96 - - *184 - - *178 + - *185 - *179 + - *180 - *19 - *17 - *48 - - *188 + - *189 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -28226,7 +28249,7 @@ paths: application/json: schema: *22 examples: - default: &476 + default: &497 value: id: 1 account: @@ -28392,12 +28415,12 @@ paths: application/json: schema: anyOf: - - &190 + - &191 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &189 + limit: &190 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -28422,7 +28445,7 @@ paths: properties: {} additionalProperties: false examples: - default: &191 + default: &192 value: limit: collaborators_only origin: organization @@ -28451,13 +28474,13 @@ paths: required: true content: application/json: - schema: &477 + schema: &498 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *189 + limit: *190 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -28481,9 +28504,9 @@ paths: description: Response content: application/json: - schema: *190 + schema: *191 examples: - default: *191 + default: *192 '422': *15 x-github: githubCloudOnly: false @@ -28559,9 +28582,9 @@ paths: application/json: schema: type: array - items: *192 + items: *193 examples: - default: *193 + default: *194 headers: Link: *58 '404': *6 @@ -28638,7 +28661,7 @@ paths: description: Response content: application/json: - schema: *192 + schema: *193 examples: default: value: @@ -28693,7 +28716,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *96 - - &194 + - &195 name: invitation_id description: The unique identifier of the invitation. in: path @@ -28724,7 +28747,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *96 - - *194 + - *195 - *17 - *19 responses: @@ -28734,9 +28757,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: &215 + default: &216 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -28779,7 +28802,7 @@ paths: application/json: schema: type: array - items: *195 + items: *196 examples: default: value: @@ -28864,9 +28887,9 @@ paths: description: Response content: application/json: - schema: *195 + schema: *196 examples: - default: &196 + default: &197 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -28899,7 +28922,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *96 - - &197 + - &198 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -28952,9 +28975,9 @@ paths: description: Response content: application/json: - schema: *195 + schema: *196 examples: - default: *196 + default: *197 '404': *6 '422': *7 x-github: @@ -28979,7 +29002,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *96 - - *197 + - *198 responses: '204': description: Response @@ -29042,7 +29065,7 @@ paths: - closed - all default: open - - *198 + - *199 - name: type description: Can be the name of an issue type. in: query @@ -29073,7 +29096,7 @@ paths: type: array items: *77 examples: - default: *199 + default: *200 headers: Link: *58 '404': *6 @@ -29133,7 +29156,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '422': *15 @@ -29232,9 +29255,9 @@ paths: type: integer codespaces: type: array - items: *201 + items: *202 examples: - default: *202 + default: *203 '304': *37 '500': *97 '401': *25 @@ -29261,7 +29284,7 @@ paths: parameters: - *96 - *135 - - &203 + - &204 name: codespace_name in: path required: true @@ -29296,15 +29319,15 @@ paths: parameters: - *96 - *135 - - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: &403 + default: &424 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -29484,7 +29507,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *204 + schema: *205 examples: default: value: @@ -29559,7 +29582,7 @@ paths: description: Response content: application/json: - schema: &206 + schema: &207 title: Org Membership description: Org Membership type: object @@ -29603,7 +29626,7 @@ paths: type: string format: uri example: https://api.github.com/orgs/octocat - organization: *205 + organization: *206 user: title: Simple User description: A GitHub user. @@ -29626,7 +29649,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &207 + response-if-user-has-an-active-admin-membership-with-organization: &208 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -29723,9 +29746,9 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: - response-if-user-already-had-membership-with-organization: *207 + response-if-user-already-had-membership-with-organization: *208 '422': *15 '403': *29 x-github: @@ -29796,7 +29819,7 @@ paths: application/json: schema: type: array - items: &208 + items: &209 title: Migration description: A migration. type: object @@ -30125,7 +30148,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -30304,7 +30327,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *96 - - &209 + - &210 name: migration_id description: The unique identifier of the migration. in: path @@ -30331,7 +30354,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -30501,7 +30524,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *96 - - *209 + - *210 responses: '302': description: Response @@ -30523,7 +30546,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *96 - - *209 + - *210 responses: '204': description: Response @@ -30547,8 +30570,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *96 - - *209 - - &642 + - *210 + - &644 name: repo_name description: repo_name parameter in: path @@ -30576,7 +30599,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *96 - - *209 + - *210 - *17 - *19 responses: @@ -30588,7 +30611,7 @@ paths: type: array items: *122 examples: - default: &222 + default: &223 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -30741,7 +30764,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &212 + items: &213 title: Organization Role description: Organization roles type: object @@ -30889,7 +30912,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *96 - - &210 + - &211 name: team_slug description: The slug of the team name. in: path @@ -30921,8 +30944,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *96 - - *210 - - &211 + - *211 + - &212 name: role_id description: The unique identifier of the role. in: path @@ -30958,8 +30981,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *96 - - *210 - *211 + - *212 responses: '204': description: Response @@ -31012,7 +31035,7 @@ paths: parameters: - *96 - *135 - - *211 + - *212 responses: '204': description: Response @@ -31044,7 +31067,7 @@ paths: parameters: - *96 - *135 - - *211 + - *212 responses: '204': description: Response @@ -31073,13 +31096,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *96 - - *211 + - *212 responses: '200': description: Response content: application/json: - schema: *212 + schema: *213 examples: default: value: @@ -31130,7 +31153,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *96 - - *211 + - *212 - *17 - *19 responses: @@ -31208,8 +31231,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *213 - required: *214 + properties: *214 + required: *215 nullable: true required: - id @@ -31224,7 +31247,7 @@ paths: - slug - parent examples: - default: *215 + default: *216 headers: Link: *58 '404': @@ -31254,7 +31277,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *96 - - *211 + - *212 - *17 - *19 responses: @@ -31282,13 +31305,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &261 + items: &282 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *213 - required: *214 + properties: *214 + required: *215 name: nullable: true type: string @@ -31383,7 +31406,7 @@ paths: - type - url examples: - default: *200 + default: *201 headers: Link: *58 '404': @@ -31434,7 +31457,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -31576,7 +31599,7 @@ paths: - nuget - container - *96 - - &644 + - &646 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -31612,12 +31635,12 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: *217 + default: *218 '403': *29 '401': *25 - '400': &646 + '400': &648 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -31639,7 +31662,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &218 + - &219 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -31657,7 +31680,7 @@ paths: - docker - nuget - container - - &219 + - &220 name: package_name description: The name of the package. in: path @@ -31670,7 +31693,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *217 examples: default: value: @@ -31722,8 +31745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *218 - *219 + - *220 - *96 responses: '204': @@ -31756,8 +31779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *218 - *219 + - *220 - *96 - name: token description: package token @@ -31790,8 +31813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *218 - *219 + - *220 - *96 - *19 - *17 @@ -31812,7 +31835,7 @@ paths: application/json: schema: type: array - items: &220 + items: &221 title: Package Version description: A version of a software package type: object @@ -31937,10 +31960,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *218 - *219 + - *220 - *96 - - &221 + - &222 name: package_version_id description: Unique identifier of the package version. in: path @@ -31952,7 +31975,7 @@ paths: description: Response content: application/json: - schema: *220 + schema: *221 examples: default: value: @@ -31988,10 +32011,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *218 - *219 + - *220 - *96 - - *221 + - *222 responses: '204': description: Response @@ -32023,10 +32046,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *218 - *219 + - *220 - *96 - - *221 + - *222 responses: '204': description: Response @@ -32056,7 +32079,7 @@ paths: - *96 - *17 - *19 - - &223 + - &224 name: sort description: The property by which to sort the results. in: query @@ -32067,7 +32090,7 @@ paths: - created_at default: created_at - *48 - - &224 + - &225 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -32078,7 +32101,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &225 + - &226 name: repository description: The name of the repository to use to filter the results. in: query @@ -32086,7 +32109,7 @@ paths: schema: type: string example: Hello-World - - &226 + - &227 name: permission description: The permission to use to filter the results. in: query @@ -32094,7 +32117,7 @@ paths: schema: type: string example: issues_read - - &227 + - &228 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -32104,7 +32127,7 @@ paths: schema: type: string format: date-time - - &228 + - &229 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -32114,7 +32137,7 @@ paths: schema: type: string format: date-time - - &229 + - &230 name: token_id description: The ID of the token in: query @@ -32384,7 +32407,7 @@ paths: '422': *15 '404': *6 '403': *29 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32427,7 +32450,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -32453,14 +32476,14 @@ paths: - *96 - *17 - *19 - - *223 - - *48 - *224 + - *48 - *225 - *226 - *227 - *228 - *229 + - *230 responses: '500': *97 '422': *15 @@ -32699,7 +32722,7 @@ paths: responses: '500': *97 '404': *6 - '204': *148 + '204': *149 '403': *29 '422': *15 x-github: @@ -32742,7 +32765,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -32784,7 +32807,7 @@ paths: type: integer configurations: type: array - items: &230 + items: &231 title: Organization private registry description: Private registry configuration for an organization type: object @@ -32806,6 +32829,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with @@ -32889,6 +32917,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -32987,6 +33020,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the @@ -33022,7 +33060,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &231 + org-private-registry-with-selected-visibility: &232 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -33118,9 +33156,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *230 + schema: *231 examples: - default: *231 + default: *232 '404': *6 x-github: githubCloudOnly: false @@ -33164,6 +33202,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -33279,7 +33322,7 @@ paths: application/json: schema: type: array - items: &232 + items: &233 title: Project description: Projects are a way to organize columns and cards of work. @@ -33452,7 +33495,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: default: value: @@ -33490,7 +33533,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &292 + '410': &313 description: Gone content: application/json: @@ -33525,7 +33568,7 @@ paths: application/json: schema: type: array - items: &233 + items: &234 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -33591,7 +33634,7 @@ paths: - property_name - value_type examples: - default: &234 + default: &235 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -33650,7 +33693,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *233 + items: *234 minItems: 1 maxItems: 100 required: @@ -33680,9 +33723,9 @@ paths: application/json: schema: type: array - items: *233 + items: *234 examples: - default: *234 + default: *235 '403': *29 '404': *6 x-github: @@ -33704,7 +33747,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *96 - - &235 + - &236 name: custom_property_name description: The custom property name in: path @@ -33716,9 +33759,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: &236 + default: &237 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -33753,7 +33796,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *96 - - *235 + - *236 requestBody: required: true content: @@ -33822,9 +33865,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *236 + default: *237 '403': *29 '404': *6 x-github: @@ -33848,9 +33891,9 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *96 - - *235 + - *236 responses: - '204': *148 + '204': *149 '403': *29 '404': *6 x-github: @@ -33909,7 +33952,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &237 + items: &238 title: Custom Property Value description: Custom property name and associated value type: object @@ -33996,7 +34039,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *237 + items: *238 required: - repository_names - properties @@ -34049,7 +34092,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -34188,7 +34231,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -34390,7 +34433,7 @@ paths: description: Response content: application/json: - schema: &294 + schema: &315 title: Full Repository description: Full Repository type: object @@ -34667,8 +34710,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *238 - required: *239 + properties: *239 + required: *240 nullable: true temp_clone_token: type: string @@ -34783,7 +34826,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &425 + properties: &446 url: type: string format: uri @@ -34799,12 +34842,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &426 + required: &447 - url - key - name - html_url - security_and_analysis: *240 + security_and_analysis: *241 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -34888,7 +34931,7 @@ paths: - network_count - subscribers_count examples: - default: &296 + default: &317 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -35409,7 +35452,7 @@ paths: - *96 - *17 - *19 - - &565 + - &566 name: targets description: | A comma-separated list of rule targets to filter by. @@ -35427,7 +35470,7 @@ paths: application/json: schema: type: array - items: &247 + items: &267 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -35462,7 +35505,7 @@ paths: source: type: string description: The name of the source - enforcement: &243 + enforcement: &244 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -35475,7 +35518,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &244 + items: &245 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -35540,7 +35583,7 @@ paths: conditions: nullable: true anyOf: - - &241 + - &242 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -35564,7 +35607,7 @@ paths: match. items: type: string - - &245 + - &246 title: Organization ruleset conditions type: object description: |- @@ -35578,7 +35621,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *241 + - *242 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -35612,7 +35655,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *241 + - *242 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -35634,7 +35677,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *241 + - *242 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -35647,7 +35690,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &242 + items: &243 title: Repository ruleset property targeting definition type: object @@ -35680,17 +35723,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *242 + items: *243 required: - repository_property rules: type: array - items: &246 + items: &567 title: Repository Rule type: object description: A repository rule. oneOf: - - &543 + - &247 title: creation description: Only allow users with bypass permission to create matching refs. @@ -35702,7 +35745,7 @@ paths: type: string enum: - creation - - &544 + - &248 title: update description: Only allow users with bypass permission to update matching refs. @@ -35723,7 +35766,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &546 + - &249 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -35735,7 +35778,7 @@ paths: type: string enum: - deletion - - &547 + - &250 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -35747,7 +35790,7 @@ paths: type: string enum: - required_linear_history - - &548 + - &565 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -35825,7 +35868,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &549 + - &251 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -35849,7 +35892,7 @@ paths: type: string required: - required_deployment_environments - - &550 + - &252 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -35861,7 +35904,7 @@ paths: type: string enum: - required_signatures - - &551 + - &253 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -35923,7 +35966,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &552 + - &254 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -35971,7 +36014,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &553 + - &255 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -35983,7 +36026,7 @@ paths: type: string enum: - non_fast_forward - - &554 + - &256 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -36019,7 +36062,7 @@ paths: required: - operator - pattern - - &555 + - &257 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -36055,7 +36098,7 @@ paths: required: - operator - pattern - - &556 + - &258 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -36091,7 +36134,7 @@ paths: required: - operator - pattern - - &557 + - &259 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -36127,7 +36170,7 @@ paths: required: - operator - pattern - - &558 + - &260 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -36163,7 +36206,7 @@ paths: required: - operator - pattern - - &559 + - &261 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -36188,7 +36231,7 @@ paths: type: string required: - restricted_file_paths - - &560 + - &262 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -36212,7 +36255,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &561 + - &263 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -36235,7 +36278,7 @@ paths: type: string required: - restricted_file_extensions - - &562 + - &264 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -36260,7 +36303,7 @@ paths: maximum: 100 required: - max_file_size - - &563 + - &265 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -36310,7 +36353,7 @@ paths: - repository_id required: - workflows - - &564 + - &266 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -36444,16 +36487,40 @@ paths: - push - repository default: branch - enforcement: *243 + enforcement: *244 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *244 - conditions: *245 + items: *245 + conditions: *246 rules: type: array description: An array of rules within the ruleset. - items: *246 + items: &269 + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - *247 + - *248 + - *249 + - *250 + - *251 + - *252 + - *253 + - *254 + - *255 + - *256 + - *257 + - *258 + - *259 + - *260 + - *261 + - *262 + - *263 + - *264 + - *265 + - *266 required: - name - enforcement @@ -36491,9 +36558,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: &248 + default: &268 value: id: 21 name: super cool ruleset @@ -36548,7 +36615,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *96 - - &566 + - &568 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -36563,7 +36630,7 @@ paths: in: query schema: type: string - - &567 + - &569 name: time_period description: |- The time period to filter by. @@ -36579,14 +36646,14 @@ paths: - week - month default: day - - &568 + - &570 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &569 + - &571 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -36606,7 +36673,7 @@ paths: description: Response content: application/json: - schema: &570 + schema: &572 title: Rule Suites description: Response type: array @@ -36661,7 +36728,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &571 + default: &573 value: - id: 21 actor_id: 12 @@ -36705,7 +36772,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *96 - - &572 + - &574 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -36721,7 +36788,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &575 title: Rule Suite description: Response type: object @@ -36820,7 +36887,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &574 + default: &576 value: id: 21 actor_id: 12 @@ -36893,9 +36960,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *248 + default: *268 '404': *6 '500': *97 put: @@ -36939,16 +37006,16 @@ paths: - tag - push - repository - enforcement: *243 + enforcement: *244 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *244 - conditions: *245 + items: *245 + conditions: *246 rules: description: An array of rules within the ruleset. type: array - items: *246 + items: *269 examples: default: value: @@ -36983,9 +37050,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *248 + default: *268 '404': *6 '500': *97 delete: @@ -37042,7 +37109,7 @@ paths: application/json: schema: type: array - items: &249 + items: &270 title: Ruleset version type: object description: The historical version of a ruleset @@ -37066,7 +37133,7 @@ paths: type: string format: date-time examples: - default: &576 + default: &578 value: - version_id: 3 actor: @@ -37119,9 +37186,9 @@ paths: description: Response content: application/json: - schema: &577 + schema: &579 allOf: - - *249 + - *270 - type: object required: - state @@ -37191,14 +37258,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *96 - - *250 - - *251 - - *252 - - *253 + - *271 + - *272 + - *273 + - *274 - *48 - *19 - *17 - - &578 + - &580 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -37208,7 +37275,7 @@ paths: required: false schema: type: string - - &579 + - &581 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -37218,10 +37285,10 @@ paths: required: false schema: type: string - - *254 - - *255 - - *256 - - *257 + - *275 + - *276 + - *277 + - *278 responses: '200': description: Response @@ -37229,9 +37296,9 @@ paths: application/json: schema: type: array - items: *258 + items: *279 examples: - default: *259 + default: *280 headers: Link: *58 '404': *6 @@ -37301,7 +37368,7 @@ paths: application/json: schema: type: array - items: &600 + items: &602 description: A repository security advisory. type: object properties: @@ -37521,7 +37588,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 credits_detailed: type: array nullable: true @@ -37531,7 +37598,7 @@ paths: type: object properties: user: *4 - type: *260 + type: *281 state: type: string description: The state of the user's acceptance of the @@ -37555,7 +37622,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *154 + items: *155 private_fork: readOnly: true nullable: true @@ -37592,7 +37659,7 @@ paths: - private_fork additionalProperties: false examples: - default: &601 + default: &603 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -37979,9 +38046,9 @@ paths: application/json: schema: type: array - items: *261 + items: *282 examples: - default: *215 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38005,7 +38072,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - *96 - - *210 + - *211 responses: '204': description: Response @@ -38031,7 +38098,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *96 - - *210 + - *211 responses: '204': description: Response @@ -38066,7 +38133,7 @@ paths: description: Response content: application/json: - schema: &663 + schema: &665 type: object properties: total_minutes_used: @@ -38136,7 +38203,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &664 + default: &666 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -38172,7 +38239,7 @@ paths: description: Response content: application/json: - schema: &665 + schema: &667 type: object properties: total_gigabytes_bandwidth_used: @@ -38190,7 +38257,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &666 + default: &668 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -38222,7 +38289,7 @@ paths: description: Response content: application/json: - schema: &667 + schema: &669 type: object properties: days_left_in_billing_cycle: @@ -38240,7 +38307,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &668 + default: &670 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -38282,7 +38349,7 @@ paths: type: integer network_configurations: type: array - items: &262 + items: &283 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -38402,9 +38469,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *283 examples: - default: &263 + default: &284 value: id: 123456789ABCDEF name: My network configuration @@ -38433,7 +38500,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *96 - - &264 + - &285 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -38445,9 +38512,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *283 examples: - default: *263 + default: *284 headers: Link: *58 x-github: @@ -38469,7 +38536,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *96 - - *264 + - *285 requestBody: required: true content: @@ -38508,9 +38575,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *283 examples: - default: *263 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38530,7 +38597,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *96 - - *264 + - *285 responses: '204': description: Response @@ -38638,7 +38705,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *96 - - *210 + - *211 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -38670,13 +38737,13 @@ paths: application/json: schema: type: array - items: *265 + items: *286 examples: - default: *266 + default: *287 '500': *97 '403': *29 '404': *6 - '422': *267 + '422': *288 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38704,9 +38771,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 headers: Link: *58 '403': *29 @@ -38800,7 +38867,7 @@ paths: description: Response content: application/json: - schema: &268 + schema: &289 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -38863,8 +38930,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *213 - required: *214 + properties: *214 + required: *215 nullable: true members_count: type: integer @@ -39110,7 +39177,7 @@ paths: - repos_count - organization examples: - default: &269 + default: &290 value: id: 1 node_id: MDQ6VGVhbTE= @@ -39181,15 +39248,15 @@ paths: url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - *96 - - *210 + - *211 responses: '200': description: Response content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '404': *6 x-github: githubCloudOnly: false @@ -39211,7 +39278,7 @@ paths: url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - *96 - - *210 + - *211 requestBody: required: false content: @@ -39273,16 +39340,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '201': description: Response content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '404': *6 '422': *15 '403': *29 @@ -39308,7 +39375,7 @@ paths: url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - *96 - - *210 + - *211 responses: '204': description: Response @@ -39335,7 +39402,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#list-discussions parameters: - *96 - - *210 + - *211 - *48 - *17 - *19 @@ -39352,7 +39419,7 @@ paths: application/json: schema: type: array - items: &270 + items: &291 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -39451,7 +39518,7 @@ paths: - updated_at - url examples: - default: &615 + default: &617 value: - author: login: octocat @@ -39526,7 +39593,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#create-a-discussion parameters: - *96 - - *210 + - *211 requestBody: required: true content: @@ -39560,9 +39627,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: &271 + default: &292 value: author: login: octocat @@ -39635,8 +39702,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#get-a-discussion parameters: - *96 - - *210 - - &272 + - *211 + - &293 name: discussion_number description: The number that identifies the discussion. in: path @@ -39648,9 +39715,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39673,8 +39740,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#update-a-discussion parameters: - *96 - - *210 - - *272 + - *211 + - *293 requestBody: required: false content: @@ -39697,9 +39764,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: &616 + default: &618 value: author: login: octocat @@ -39770,8 +39837,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#delete-a-discussion parameters: - *96 - - *210 - - *272 + - *211 + - *293 responses: '204': description: Response @@ -39798,8 +39865,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments parameters: - *96 - - *210 - - *272 + - *211 + - *293 - *48 - *17 - *19 @@ -39810,7 +39877,7 @@ paths: application/json: schema: type: array - items: &273 + items: &294 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -39882,7 +39949,7 @@ paths: - updated_at - url examples: - default: &617 + default: &619 value: - author: login: octocat @@ -39951,8 +40018,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *96 - - *210 - - *272 + - *211 + - *293 requestBody: required: true content: @@ -39974,9 +40041,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: &274 + default: &295 value: author: login: octocat @@ -40043,9 +40110,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *96 - - *210 - - *272 - - &275 + - *211 + - *293 + - &296 name: comment_number description: The number that identifies the comment. in: path @@ -40057,9 +40124,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *274 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40082,9 +40149,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *96 - - *210 - - *272 - - *275 + - *211 + - *293 + - *296 requestBody: required: true content: @@ -40106,9 +40173,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: &618 + default: &620 value: author: login: octocat @@ -40173,9 +40240,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *96 - - *210 - - *272 - - *275 + - *211 + - *293 + - *296 responses: '204': description: Response @@ -40202,9 +40269,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *96 - - *210 - - *272 - - *275 + - *211 + - *293 + - *296 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -40230,7 +40297,7 @@ paths: application/json: schema: type: array - items: &276 + items: &297 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -40273,7 +40340,7 @@ paths: - content - created_at examples: - default: &278 + default: &299 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -40324,9 +40391,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *96 - - *210 - - *272 - - *275 + - *211 + - *293 + - *296 requestBody: required: true content: @@ -40359,9 +40426,9 @@ paths: team discussion comment content: application/json: - schema: *276 + schema: *297 examples: - default: &277 + default: &298 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -40390,9 +40457,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40416,10 +40483,10 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *96 - - *210 - - *272 - - *275 - - &279 + - *211 + - *293 + - *296 + - &300 name: reaction_id description: The unique identifier of the reaction. in: path @@ -40452,8 +40519,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *96 - - *210 - - *272 + - *211 + - *293 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -40479,9 +40546,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -40508,8 +40575,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *96 - - *210 - - *272 + - *211 + - *293 requestBody: required: true content: @@ -40541,16 +40608,16 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -40574,9 +40641,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *96 - - *210 - - *272 - - *279 + - *211 + - *293 + - *300 responses: '204': description: Response @@ -40601,7 +40668,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -40611,9 +40678,9 @@ paths: application/json: schema: type: array - items: *192 + items: *193 examples: - default: *193 + default: *194 headers: Link: *58 x-github: @@ -40636,7 +40703,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-team-members parameters: - *96 - - *210 + - *211 - name: role description: Filters members returned by their role in the team. in: query @@ -40659,7 +40726,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -40690,14 +40757,14 @@ paths: url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - *96 - - *210 + - *211 - *135 responses: '200': description: Response content: application/json: - schema: &280 + schema: &301 title: Team Membership description: Team Membership type: object @@ -40724,7 +40791,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &619 + response-if-user-is-a-team-maintainer: &621 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -40761,7 +40828,7 @@ paths: url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *96 - - *210 + - *211 - *135 requestBody: required: false @@ -40787,9 +40854,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *301 examples: - response-if-users-membership-with-team-is-now-pending: &620 + response-if-users-membership-with-team-is-now-pending: &622 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -40825,7 +40892,7 @@ paths: url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - *96 - - *210 + - *211 - *135 responses: '204': @@ -40852,7 +40919,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-projects parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -40862,7 +40929,7 @@ paths: application/json: schema: type: array - items: &281 + items: &302 title: Team Project description: A team's access to a project. type: object @@ -40930,7 +40997,7 @@ paths: - updated_at - permissions examples: - default: &621 + default: &623 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -40994,8 +41061,8 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project parameters: - *96 - - *210 - - &282 + - *211 + - &303 name: project_id description: The unique identifier of the project. in: path @@ -41007,9 +41074,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *302 examples: - default: &622 + default: &624 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -41072,8 +41139,8 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions parameters: - *96 - - *210 - - *282 + - *211 + - *303 requestBody: required: false content: @@ -41140,8 +41207,8 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team parameters: - *96 - - *210 - - *282 + - *211 + - *303 responses: '204': description: Response @@ -41169,7 +41236,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -41181,7 +41248,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -41211,15 +41278,15 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *96 - - *210 - - *283 - - *284 + - *211 + - *304 + - *305 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &623 + schema: &625 title: Team Repository description: A team's access to a repository. type: object @@ -41789,9 +41856,9 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *96 - - *210 - - *283 - - *284 + - *211 + - *304 + - *305 requestBody: required: false content: @@ -41837,9 +41904,9 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - *96 - - *210 - - *283 - - *284 + - *211 + - *304 + - *305 responses: '204': description: Response @@ -41864,7 +41931,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -41874,9 +41941,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - response-if-child-teams-exist: &624 + response-if-child-teams-exist: &626 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -42003,7 +42070,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#get-a-project-card parameters: - - &285 + - &306 name: card_id description: The unique identifier of the card. in: path @@ -42015,7 +42082,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &307 title: Project Card description: Project cards represent a scope of work. type: object @@ -42082,7 +42149,7 @@ paths: - created_at - updated_at examples: - default: &287 + default: &308 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -42138,7 +42205,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#update-an-existing-project-card parameters: - - *285 + - *306 requestBody: required: false content: @@ -42165,9 +42232,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 '304': *37 '403': *29 '401': *25 @@ -42194,7 +42261,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#delete-a-project-card parameters: - - *285 + - *306 responses: '204': description: Response @@ -42238,7 +42305,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#move-a-project-card parameters: - - *285 + - *306 requestBody: required: true content: @@ -42349,7 +42416,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#get-a-project-column parameters: - - &288 + - &309 name: column_id description: The unique identifier of the column. in: path @@ -42361,7 +42428,7 @@ paths: description: Response content: application/json: - schema: &289 + schema: &310 title: Project Column description: Project columns contain cards of work. type: object @@ -42407,7 +42474,7 @@ paths: - created_at - updated_at examples: - default: &290 + default: &311 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -42442,7 +42509,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#update-an-existing-project-column parameters: - - *288 + - *309 requestBody: required: true content: @@ -42466,9 +42533,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *310 examples: - default: *290 + default: *311 '304': *37 '403': *29 '401': *25 @@ -42493,7 +42560,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#delete-a-project-column parameters: - - *288 + - *309 responses: '204': description: Response @@ -42522,7 +42589,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#list-project-cards parameters: - - *288 + - *309 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -42543,7 +42610,7 @@ paths: application/json: schema: type: array - items: *286 + items: *307 examples: default: value: @@ -42602,7 +42669,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#create-a-project-card parameters: - - *288 + - *309 requestBody: required: true content: @@ -42642,9 +42709,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 '304': *37 '403': *29 '401': *25 @@ -42700,7 +42767,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#move-a-project-column parameters: - - *288 + - *309 requestBody: required: true content: @@ -42760,15 +42827,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-a-project parameters: - - *282 + - *303 responses: '200': description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: &291 + default: &312 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -42825,7 +42892,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#update-a-project parameters: - - *282 + - *303 requestBody: required: false content: @@ -42871,9 +42938,9 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: *291 + default: *312 '404': description: Not Found if the authenticated user does not have access to the project @@ -42894,7 +42961,7 @@ paths: items: type: string '401': *25 - '410': *292 + '410': *313 '422': *7 x-github: githubCloudOnly: false @@ -42917,7 +42984,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#delete-a-project parameters: - - *282 + - *303 responses: '204': description: Delete Success @@ -42938,7 +43005,7 @@ paths: items: type: string '401': *25 - '410': *292 + '410': *313 '404': *6 x-github: githubCloudOnly: false @@ -42962,7 +43029,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#list-project-collaborators parameters: - - *282 + - *303 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -42989,7 +43056,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -43019,7 +43086,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#add-project-collaborator parameters: - - *282 + - *303 - *135 requestBody: required: false @@ -43072,7 +43139,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *282 + - *303 - *135 responses: '204': @@ -43104,7 +43171,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *282 + - *303 - *135 responses: '200': @@ -43178,7 +43245,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#list-project-columns parameters: - - *282 + - *303 - *17 - *19 responses: @@ -43188,7 +43255,7 @@ paths: application/json: schema: type: array - items: *289 + items: *310 examples: default: value: @@ -43226,7 +43293,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#create-a-project-column parameters: - - *282 + - *303 requestBody: required: true content: @@ -43249,7 +43316,7 @@ paths: description: Response content: application/json: - schema: *289 + schema: *310 examples: default: value: @@ -43314,7 +43381,7 @@ paths: resources: type: object properties: - core: &293 + core: &314 title: Rate Limit type: object properties: @@ -43331,21 +43398,21 @@ paths: - remaining - reset - used - graphql: *293 - search: *293 - code_search: *293 - source_import: *293 - integration_manifest: *293 - code_scanning_upload: *293 - actions_runner_registration: *293 - scim: *293 - dependency_snapshots: *293 - dependency_sbom: *293 - code_scanning_autofix: *293 + graphql: *314 + search: *314 + code_search: *314 + source_import: *314 + integration_manifest: *314 + code_scanning_upload: *314 + actions_runner_registration: *314 + scim: *314 + dependency_snapshots: *314 + dependency_sbom: *314 + code_scanning_autofix: *314 required: - core - search - rate: *293 + rate: *314 required: - rate - resources @@ -43449,14 +43516,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *294 + schema: *315 examples: default-response: summary: Default response @@ -43957,7 +44024,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *295 + '301': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43975,8 +44042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -44223,10 +44290,10 @@ paths: description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 - '307': &297 + default: *317 + '307': &318 description: Temporary Redirect content: application/json: @@ -44255,8 +44322,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -44278,7 +44345,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *297 + '307': *318 '404': *6 '409': *47 x-github: @@ -44302,11 +44369,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 - - &323 + - &344 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -44329,7 +44396,7 @@ paths: type: integer artifacts: type: array - items: &298 + items: &319 title: Artifact description: An artifact type: object @@ -44407,7 +44474,7 @@ paths: - expires_at - updated_at examples: - default: &324 + default: &345 value: total_count: 2 artifacts: @@ -44468,9 +44535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *283 - - *284 - - &299 + - *304 + - *305 + - &320 name: artifact_id description: The unique identifier of the artifact. in: path @@ -44482,7 +44549,7 @@ paths: description: Response content: application/json: - schema: *298 + schema: *319 examples: default: value: @@ -44520,9 +44587,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *283 - - *284 - - *299 + - *304 + - *305 + - *320 responses: '204': description: Response @@ -44546,9 +44613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *283 - - *284 - - *299 + - *304 + - *305 + - *320 - name: archive_format in: path required: true @@ -44562,7 +44629,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44585,14 +44652,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *300 + schema: *321 examples: default: value: @@ -44618,11 +44685,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 - - &301 + - &322 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -44656,7 +44723,7 @@ paths: description: Response content: application/json: - schema: &302 + schema: &323 title: Repository actions caches description: Repository actions caches type: object @@ -44698,7 +44765,7 @@ paths: - total_count - actions_caches examples: - default: &303 + default: &324 value: total_count: 1 actions_caches: @@ -44730,23 +44797,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *283 - - *284 + - *304 + - *305 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *301 + - *322 responses: '200': description: Response content: application/json: - schema: *302 + schema: *323 examples: - default: *303 + default: *324 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44766,8 +44833,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *283 - - *284 + - *304 + - *305 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -44798,9 +44865,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *283 - - *284 - - &304 + - *304 + - *305 + - &325 name: job_id description: The unique identifier of the job. in: path @@ -44812,7 +44879,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &348 title: Job description: Information of a job execution in a workflow run type: object @@ -45119,9 +45186,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *283 - - *284 - *304 + - *305 + - *325 responses: '302': description: Response @@ -45149,9 +45216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *283 - - *284 - *304 + - *305 + - *325 requestBody: required: false content: @@ -45196,8 +45263,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Status response @@ -45247,8 +45314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -45311,8 +45378,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -45330,7 +45397,7 @@ paths: type: integer secrets: type: array - items: &329 + items: &350 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -45350,7 +45417,7 @@ paths: - created_at - updated_at examples: - default: &330 + default: &351 value: total_count: 2 secrets: @@ -45383,9 +45450,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *283 - - *284 + - *304 - *305 + - *326 - *19 responses: '200': @@ -45402,7 +45469,7 @@ paths: type: integer variables: type: array - items: &333 + items: &354 title: Actions Variable type: object properties: @@ -45432,7 +45499,7 @@ paths: - created_at - updated_at examples: - default: &334 + default: &355 value: total_count: 2 variables: @@ -45465,8 +45532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -45475,11 +45542,11 @@ paths: schema: type: object properties: - enabled: &307 + enabled: &328 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *111 - selected_actions_url: *306 + selected_actions_url: *327 required: - enabled examples: @@ -45506,8 +45573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -45518,7 +45585,7 @@ paths: schema: type: object properties: - enabled: *307 + enabled: *328 allowed_actions: *111 required: - enabled @@ -45548,14 +45615,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: &308 + schema: &329 type: object properties: access_level: @@ -45572,7 +45639,7 @@ paths: required: - access_level examples: - default: &309 + default: &330 value: access_level: organization x-github: @@ -45596,15 +45663,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: application/json: - schema: *308 + schema: *329 examples: - default: *309 + default: *330 responses: '204': description: Response @@ -45628,8 +45695,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -45656,8 +45723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -45689,14 +45756,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *310 + schema: *331 examples: default: *117 x-github: @@ -45719,8 +45786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Success response @@ -45731,7 +45798,7 @@ paths: required: true content: application/json: - schema: *311 + schema: *332 examples: default: *117 x-github: @@ -45760,8 +45827,8 @@ paths: in: query schema: type: string - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -45805,8 +45872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -45814,9 +45881,9 @@ paths: application/json: schema: type: array - items: *312 + items: *333 examples: - default: *313 + default: *334 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45838,8 +45905,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -45882,7 +45949,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *314 + '201': *335 '404': *6 '422': *7 '409': *47 @@ -45913,8 +45980,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '201': description: Response @@ -45922,7 +45989,7 @@ paths: application/json: schema: *126 examples: - default: *315 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45950,8 +46017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '201': description: Response @@ -45959,7 +46026,7 @@ paths: application/json: schema: *126 examples: - default: *316 + default: *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45981,8 +46048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 responses: '200': @@ -45991,7 +46058,7 @@ paths: application/json: schema: *124 examples: - default: *317 + default: *338 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46012,8 +46079,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 responses: '204': @@ -46040,8 +46107,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 responses: '200': *128 @@ -46066,8 +46133,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 requestBody: required: true @@ -46116,8 +46183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 requestBody: required: true @@ -46167,11 +46234,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 responses: - '200': *318 + '200': *339 '404': *6 x-github: githubCloudOnly: false @@ -46198,10 +46265,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *123 - - *319 + - *340 responses: '200': *128 '404': *6 @@ -46229,9 +46296,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *283 - - *284 - - &337 + - *304 + - *305 + - &358 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -46239,7 +46306,7 @@ paths: required: false schema: type: string - - &338 + - &359 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -46247,7 +46314,7 @@ paths: required: false schema: type: string - - &339 + - &360 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -46256,7 +46323,7 @@ paths: required: false schema: type: string - - &340 + - &361 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -46283,7 +46350,7 @@ paths: - pending - *17 - *19 - - &341 + - &362 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -46292,7 +46359,7 @@ paths: schema: type: string format: date-time - - &320 + - &341 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -46301,13 +46368,13 @@ paths: schema: type: boolean default: false - - &342 + - &363 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &343 + - &364 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -46330,7 +46397,7 @@ paths: type: integer workflow_runs: type: array - items: &321 + items: &342 title: Workflow Run description: An invocation of a workflow type: object @@ -46425,7 +46492,7 @@ paths: that triggered the run. type: array nullable: true - items: &362 + items: &383 title: Pull Request Minimal type: object properties: @@ -46544,7 +46611,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &366 + properties: &387 id: type: string description: SHA for the commit @@ -46595,7 +46662,7 @@ paths: - name - email nullable: true - required: &367 + required: &388 - id - tree_id - message @@ -46642,7 +46709,7 @@ paths: - workflow_url - pull_requests examples: - default: &344 + default: &365 value: total_count: 1 workflow_runs: @@ -46878,24 +46945,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *283 - - *284 - - &322 + - *304 + - *305 + - &343 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *320 + - *341 responses: '200': description: Response content: application/json: - schema: *321 + schema: *342 examples: - default: &325 + default: &346 value: id: 30433642 name: Build @@ -47136,9 +47203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '204': description: Response @@ -47161,9 +47228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '200': description: Response @@ -47282,9 +47349,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '201': description: Response @@ -47317,12 +47384,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 - *17 - *19 - - *323 + - *344 responses: '200': description: Response @@ -47338,9 +47405,9 @@ paths: type: integer artifacts: type: array - items: *298 + items: *319 examples: - default: *324 + default: *345 headers: Link: *58 x-github: @@ -47364,25 +47431,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *283 - - *284 - - *322 - - &326 + - *304 + - *305 + - *343 + - &347 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *320 + - *341 responses: '200': description: Response content: application/json: - schema: *321 + schema: *342 examples: - default: *325 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47405,10 +47472,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *283 - - *284 - - *322 - - *326 + - *304 + - *305 + - *343 + - *347 - *17 - *19 responses: @@ -47426,9 +47493,9 @@ paths: type: integer jobs: type: array - items: *327 + items: *348 examples: - default: &328 + default: &349 value: total_count: 1 jobs: @@ -47541,10 +47608,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *283 - - *284 - - *322 - - *326 + - *304 + - *305 + - *343 + - *347 responses: '302': description: Response @@ -47572,9 +47639,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '202': description: Response @@ -47607,9 +47674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 requestBody: required: true content: @@ -47676,9 +47743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '202': description: Response @@ -47711,9 +47778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -47743,9 +47810,9 @@ paths: type: integer jobs: type: array - items: *327 + items: *348 examples: - default: *328 + default: *349 headers: Link: *58 x-github: @@ -47770,9 +47837,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '302': description: Response @@ -47799,9 +47866,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '204': description: Response @@ -47828,9 +47895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '200': description: Response @@ -47890,7 +47957,7 @@ paths: items: type: object properties: - type: &446 + type: &467 type: string description: The type of reviewer. enum: @@ -47900,7 +47967,7 @@ paths: reviewer: anyOf: - *4 - - *154 + - *155 required: - environment - wait_timer @@ -47975,9 +48042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 requestBody: required: true content: @@ -48024,7 +48091,7 @@ paths: application/json: schema: type: array - items: &441 + items: &462 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -48130,7 +48197,7 @@ paths: - created_at - updated_at examples: - default: &442 + default: &463 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -48186,9 +48253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 requestBody: required: false content: @@ -48232,9 +48299,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 requestBody: required: false content: @@ -48287,9 +48354,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *283 - - *284 - - *322 + - *304 + - *305 + - *343 responses: '200': description: Response @@ -48426,8 +48493,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -48445,9 +48512,9 @@ paths: type: integer secrets: type: array - items: *329 + items: *350 examples: - default: *330 + default: *351 headers: Link: *58 x-github: @@ -48472,16 +48539,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *331 + schema: *352 examples: - default: *332 + default: *353 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48503,17 +48570,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '200': description: Response content: application/json: - schema: *329 + schema: *350 examples: - default: &459 + default: &480 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -48539,8 +48606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 requestBody: required: true @@ -48598,8 +48665,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '204': @@ -48625,9 +48692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *283 - - *284 + - *304 - *305 + - *326 - *19 responses: '200': @@ -48644,9 +48711,9 @@ paths: type: integer variables: type: array - items: *333 + items: *354 examples: - default: *334 + default: *355 headers: Link: *58 x-github: @@ -48669,8 +48736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -48722,17 +48789,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *283 - - *284 + - *304 + - *305 - *133 responses: '200': description: Response content: application/json: - schema: *333 + schema: *354 examples: - default: &460 + default: &481 value: name: USERNAME value: octocat @@ -48758,8 +48825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *283 - - *284 + - *304 + - *305 - *133 requestBody: required: true @@ -48802,8 +48869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *283 - - *284 + - *304 + - *305 - *133 responses: '204': @@ -48829,8 +48896,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -48848,7 +48915,7 @@ paths: type: integer workflows: type: array - items: &335 + items: &356 title: Workflow description: A GitHub Actions workflow type: object @@ -48955,9 +49022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *283 - - *284 - - &336 + - *304 + - *305 + - &357 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -48972,7 +49039,7 @@ paths: description: Response content: application/json: - schema: *335 + schema: *356 examples: default: value: @@ -49005,9 +49072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *283 - - *284 - - *336 + - *304 + - *305 + - *357 responses: '204': description: Response @@ -49032,9 +49099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *283 - - *284 - - *336 + - *304 + - *305 + - *357 responses: '204': description: Response @@ -49085,9 +49152,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *283 - - *284 - - *336 + - *304 + - *305 + - *357 responses: '204': description: Response @@ -49114,19 +49181,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *283 - - *284 - - *336 - - *337 - - *338 - - *339 - - *340 + - *304 + - *305 + - *357 + - *358 + - *359 + - *360 + - *361 - *17 - *19 + - *362 - *341 - - *320 - - *342 - - *343 + - *363 + - *364 responses: '200': description: Response @@ -49142,9 +49209,9 @@ paths: type: integer workflow_runs: type: array - items: *321 + items: *342 examples: - default: *344 + default: *365 headers: Link: *58 x-github: @@ -49176,9 +49243,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *283 - - *284 - - *336 + - *304 + - *305 + - *357 responses: '200': description: Response @@ -49239,8 +49306,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *283 - - *284 + - *304 + - *305 - *48 - *17 - *40 @@ -49404,8 +49471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -49417,7 +49484,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -49442,8 +49509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *283 - - *284 + - *304 + - *305 - name: assignee in: path required: true @@ -49479,8 +49546,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -49592,8 +49659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *40 - *41 @@ -49647,7 +49714,7 @@ paths: bundle_url: type: string examples: - default: *345 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49667,8 +49734,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -49676,7 +49743,7 @@ paths: application/json: schema: type: array - items: &346 + items: &367 title: Autolink reference description: An autolink reference. type: object @@ -49726,8 +49793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -49766,9 +49833,9 @@ paths: description: response content: application/json: - schema: *346 + schema: *367 examples: - default: &347 + default: &368 value: id: 1 key_prefix: TICKET- @@ -49799,9 +49866,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *283 - - *284 - - &348 + - *304 + - *305 + - &369 name: autolink_id description: The unique identifier of the autolink. in: path @@ -49813,9 +49880,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *367 examples: - default: *347 + default: *368 '404': *6 x-github: githubCloudOnly: false @@ -49835,9 +49902,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *283 - - *284 - - *348 + - *304 + - *305 + - *369 responses: '204': description: Response @@ -49861,8 +49928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response if Dependabot is enabled @@ -49910,8 +49977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -49932,8 +49999,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -49953,8 +50020,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *283 - - *284 + - *304 + - *305 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -49992,7 +50059,7 @@ paths: - url protected: type: boolean - protection: &350 + protection: &371 title: Branch Protection description: Branch Protection type: object @@ -50034,7 +50101,7 @@ paths: required: - contexts - checks - enforce_admins: &353 + enforce_admins: &374 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -50049,7 +50116,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &355 + required_pull_request_reviews: &376 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -50070,7 +50137,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *154 + items: *155 apps: description: The list of apps with review dismissal access. @@ -50099,7 +50166,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *154 + items: *155 apps: description: The list of apps allowed to bypass pull request requirements. @@ -50125,7 +50192,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &352 + restrictions: &373 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -50432,9 +50499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *283 - - *284 - - &351 + - *304 + - *305 + - &372 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -50448,14 +50515,14 @@ paths: description: Response content: application/json: - schema: &361 + schema: &382 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &414 + commit: &435 title: Commit description: Commit type: object @@ -50489,7 +50556,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &349 + properties: &370 name: type: string example: '"Chris Wanstrath"' @@ -50504,7 +50571,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *349 + properties: *370 nullable: true message: type: string @@ -50525,7 +50592,7 @@ paths: required: - sha - url - verification: &466 + verification: &487 title: Verification type: object properties: @@ -50595,7 +50662,7 @@ paths: type: integer files: type: array - items: &429 + items: &450 title: Diff Entry description: Diff Entry type: object @@ -50678,7 +50745,7 @@ paths: - self protected: type: boolean - protection: *350 + protection: *371 protection_url: type: string format: uri @@ -50785,7 +50852,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *295 + '301': *316 '404': *6 x-github: githubCloudOnly: false @@ -50807,15 +50874,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *350 + schema: *371 examples: default: value: @@ -51009,9 +51076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -51266,7 +51333,7 @@ paths: url: type: string format: uri - required_status_checks: &358 + required_status_checks: &379 title: Status Check Policy description: Status Check Policy type: object @@ -51342,7 +51409,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 apps: type: array items: *5 @@ -51360,7 +51427,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 apps: type: array items: *5 @@ -51418,7 +51485,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *352 + restrictions: *373 required_conversation_resolution: type: object properties: @@ -51530,9 +51597,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -51557,17 +51624,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *353 + schema: *374 examples: - default: &354 + default: &375 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -51589,17 +51656,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *353 + schema: *374 examples: - default: *354 + default: *375 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51618,9 +51685,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -51645,17 +51712,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *355 + schema: *376 examples: - default: &356 + default: &377 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -51751,9 +51818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -51851,9 +51918,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *376 examples: - default: *356 + default: *377 '422': *15 x-github: githubCloudOnly: false @@ -51874,9 +51941,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -51903,17 +51970,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *353 + schema: *374 examples: - default: &357 + default: &378 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -51936,17 +52003,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *353 + schema: *374 examples: - default: *357 + default: *378 '404': *6 x-github: githubCloudOnly: false @@ -51966,9 +52033,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -51993,17 +52060,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *358 + schema: *379 examples: - default: &359 + default: &380 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -52029,9 +52096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -52083,9 +52150,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *379 examples: - default: *359 + default: *380 '404': *6 '422': *15 x-github: @@ -52107,9 +52174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -52133,9 +52200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response @@ -52169,9 +52236,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -52238,9 +52305,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -52304,9 +52371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: content: application/json: @@ -52372,15 +52439,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response content: application/json: - schema: *352 + schema: *373 examples: default: value: @@ -52471,9 +52538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '204': description: Response @@ -52496,9 +52563,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response @@ -52508,7 +52575,7 @@ paths: type: array items: *5 examples: - default: &360 + default: &381 value: - id: 1 slug: octoapp @@ -52565,9 +52632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -52601,7 +52668,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52622,9 +52689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -52658,7 +52725,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52679,9 +52746,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -52715,7 +52782,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52737,9 +52804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response @@ -52747,9 +52814,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '404': *6 x-github: githubCloudOnly: false @@ -52769,9 +52836,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -52807,9 +52874,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52830,9 +52897,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: false content: @@ -52868,9 +52935,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52891,9 +52958,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: content: application/json: @@ -52928,9 +52995,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52952,9 +53019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 responses: '200': description: Response @@ -52964,7 +53031,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '404': *6 x-github: githubCloudOnly: false @@ -52988,9 +53055,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -53023,7 +53090,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53048,9 +53115,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -53083,7 +53150,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53108,9 +53175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -53143,7 +53210,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53170,9 +53237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 requestBody: required: true content: @@ -53194,7 +53261,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *382 examples: default: value: @@ -53310,8 +53377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -53590,7 +53657,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &384 title: CheckRun description: A check performed on the code of a given code change type: object @@ -53709,8 +53776,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *362 - deployment: &681 + items: *383 + deployment: &683 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -53990,9 +54057,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *283 - - *284 - - &364 + - *304 + - *305 + - &385 name: check_run_id description: The unique identifier of the check run. in: path @@ -54004,9 +54071,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *384 examples: - default: &365 + default: &386 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -54106,9 +54173,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *283 - - *284 - - *364 + - *304 + - *305 + - *385 requestBody: required: true content: @@ -54348,9 +54415,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *384 examples: - default: *365 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54370,9 +54437,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *283 - - *284 - - *364 + - *304 + - *305 + - *385 - *17 - *19 responses: @@ -54467,9 +54534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *283 - - *284 - - *364 + - *304 + - *305 + - *385 responses: '201': description: Response @@ -54513,8 +54580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -54536,7 +54603,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &368 + schema: &389 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -54600,7 +54667,7 @@ paths: nullable: true pull_requests: type: array - items: *362 + items: *383 nullable: true app: title: GitHub app @@ -54622,12 +54689,12 @@ paths: type: string format: date-time nullable: true - head_commit: &707 + head_commit: &709 title: Simple Commit description: A commit. type: object - properties: *366 - required: *367 + properties: *387 + required: *388 latest_check_runs_count: type: integer check_runs_url: @@ -54655,7 +54722,7 @@ paths: - check_runs_url - pull_requests examples: - default: &369 + default: &390 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -54946,9 +55013,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *368 + schema: *389 examples: - default: *369 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54967,8 +55034,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -55277,9 +55344,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *283 - - *284 - - &370 + - *304 + - *305 + - &391 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -55291,9 +55358,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *389 examples: - default: *369 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55316,17 +55383,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *283 - - *284 - - *370 - - &422 + - *304 + - *305 + - *391 + - &443 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &423 + - &444 name: status description: Returns check runs with the specified `status`. in: query @@ -55365,9 +55432,9 @@ paths: type: integer check_runs: type: array - items: *363 + items: *384 examples: - default: &424 + default: &445 value: total_count: 1 check_runs: @@ -55469,9 +55536,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *283 - - *284 - - *370 + - *304 + - *305 + - *391 responses: '201': description: Response @@ -55504,21 +55571,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *283 - - *284 - - *371 - - *372 + - *304 + - *305 + - *392 + - *393 - *19 - *17 - - &389 + - &410 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *373 - - &390 + schema: *394 + - &411 name: pr description: The number of the pull request for the results you want to list. in: query @@ -55543,13 +55610,13 @@ paths: be returned. in: query required: false - schema: *374 + schema: *395 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *375 + schema: *396 responses: '200': description: Response @@ -55565,7 +55632,7 @@ paths: updated_at: *139 url: *56 html_url: *57 - instances_url: *376 + instances_url: *397 state: *144 fixed_at: *140 dismissed_by: @@ -55576,11 +55643,11 @@ paths: required: *21 nullable: true dismissed_at: *141 - dismissed_reason: *377 - dismissed_comment: *378 - rule: *379 - tool: *380 - most_recent_instance: *381 + dismissed_reason: *398 + dismissed_comment: *399 + rule: *400 + tool: *401 + most_recent_instance: *402 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -55703,7 +55770,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &382 + '403': &403 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -55730,9 +55797,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *283 - - *284 - - &383 + - *304 + - *305 + - &404 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -55746,7 +55813,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &405 type: object properties: number: *54 @@ -55754,7 +55821,7 @@ paths: updated_at: *139 url: *56 html_url: *57 - instances_url: *376 + instances_url: *397 state: *144 fixed_at: *140 dismissed_by: @@ -55765,8 +55832,8 @@ paths: required: *21 nullable: true dismissed_at: *141 - dismissed_reason: *377 - dismissed_comment: *378 + dismissed_reason: *398 + dismissed_comment: *399 rule: type: object properties: @@ -55820,8 +55887,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *380 - most_recent_instance: *381 + tool: *401 + most_recent_instance: *402 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -55917,7 +55984,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -55937,9 +56004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 requestBody: required: true content: @@ -55954,8 +56021,8 @@ paths: enum: - open - dismissed - dismissed_reason: *377 - dismissed_comment: *378 + dismissed_reason: *398 + dismissed_comment: *399 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -55974,7 +56041,7 @@ paths: description: Response content: application/json: - schema: *384 + schema: *405 examples: default: value: @@ -56050,7 +56117,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &388 + '403': &409 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -56077,15 +56144,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 responses: '200': description: Response content: application/json: - schema: &385 + schema: &406 type: object properties: status: @@ -56111,13 +56178,13 @@ paths: - description - started_at examples: - default: &386 + default: &407 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &387 + '400': &408 description: Bad Request content: application/json: @@ -56128,7 +56195,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56153,29 +56220,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 responses: '200': description: OK content: application/json: - schema: *385 + schema: *406 examples: - default: *386 + default: *407 '202': description: Accepted content: application/json: - schema: *385 + schema: *406 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *387 + '400': *408 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -56207,9 +56274,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 requestBody: required: false content: @@ -56254,8 +56321,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *387 - '403': *388 + '400': *408 + '403': *409 '404': *6 '422': description: Unprocessable Entity @@ -56279,13 +56346,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 - *19 - *17 - - *389 - - *390 + - *410 + - *411 responses: '200': description: Response @@ -56293,7 +56360,7 @@ paths: application/json: schema: type: array - items: *381 + items: *402 examples: default: value: @@ -56332,7 +56399,7 @@ paths: end_column: 50 classifications: - source - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56366,25 +56433,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *283 - - *284 - - *371 - - *372 + - *304 + - *305 + - *392 + - *393 - *19 - *17 - - *390 + - *411 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *373 + schema: *394 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &393 + schema: &414 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -56405,23 +56472,23 @@ paths: application/json: schema: type: array - items: &394 + items: &415 type: object properties: - ref: *373 - commit_sha: &402 + ref: *394 + commit_sha: &423 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *391 + analysis_key: *412 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *392 + category: *413 error: type: string example: error reading field xyz @@ -56445,8 +56512,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *393 - tool: *380 + sarif_id: *414 + tool: *401 deletable: type: boolean warning: @@ -56507,7 +56574,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56543,8 +56610,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56557,7 +56624,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *415 examples: response: summary: application/json response @@ -56611,7 +56678,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *382 + '403': *403 '404': *6 '422': description: Response if analysis could not be processed @@ -56698,8 +56765,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56752,7 +56819,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *388 + '403': *409 '404': *6 '503': *65 x-github: @@ -56774,8 +56841,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -56783,7 +56850,7 @@ paths: application/json: schema: type: array - items: &395 + items: &416 title: CodeQL Database description: A CodeQL database. type: object @@ -56894,7 +56961,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56923,8 +56990,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: language in: path description: The language of the CodeQL database. @@ -56936,7 +57003,7 @@ paths: description: Response content: application/json: - schema: *395 + schema: *416 examples: default: value: @@ -56968,9 +57035,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &431 + '302': &452 description: Found - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56992,8 +57059,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *283 - - *284 + - *304 + - *305 - name: language in: path description: The language of the CodeQL database. @@ -57003,7 +57070,7 @@ paths: responses: '204': description: Response - '403': *388 + '403': *409 '404': *6 '503': *65 x-github: @@ -57031,8 +57098,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -57041,7 +57108,7 @@ paths: type: object additionalProperties: false properties: - language: &396 + language: &417 type: string description: The language targeted by the CodeQL query enum: @@ -57120,7 +57187,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &400 + schema: &421 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -57130,7 +57197,7 @@ paths: description: The ID of the variant analysis. controller_repo: *53 actor: *4 - query_language: *396 + query_language: *417 query_pack_url: type: string description: The download url for the query pack. @@ -57177,7 +57244,7 @@ paths: items: type: object properties: - repository: &397 + repository: &418 title: Repository Identifier description: Repository Identifier type: object @@ -57213,7 +57280,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &401 + analysis_status: &422 type: string description: The new status of the CodeQL variant analysis repository task. @@ -57245,7 +57312,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &398 + access_mismatch_repos: &419 type: object properties: repository_count: @@ -57259,7 +57326,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *397 + items: *418 required: - repository_count - repositories @@ -57281,8 +57348,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *398 - over_limit_repos: *398 + no_codeql_db_repos: *419 + over_limit_repos: *419 required: - access_mismatch_repos - not_found_repos @@ -57298,7 +57365,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &399 + value: &420 summary: Default response value: id: 1 @@ -57450,10 +57517,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *399 + value: *420 repository_lists: summary: Response for a successful variant analysis submission - value: *399 + value: *420 '404': *6 '422': description: Unable to process variant analysis submission @@ -57481,8 +57548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *283 - - *284 + - *304 + - *305 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -57494,9 +57561,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *421 examples: - default: *399 + default: *420 '404': *6 '503': *65 x-github: @@ -57519,7 +57586,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *283 + - *304 - name: repo in: path description: The name of the controller repository. @@ -57554,7 +57621,7 @@ paths: type: object properties: repository: *53 - analysis_status: *401 + analysis_status: *422 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -57679,8 +57746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -57765,7 +57832,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -57786,8 +57853,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -57879,7 +57946,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *388 + '403': *409 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -57950,8 +58017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -57959,7 +58026,7 @@ paths: schema: type: object properties: - commit_sha: *402 + commit_sha: *423 ref: type: string description: |- @@ -58017,7 +58084,7 @@ paths: schema: type: object properties: - id: *393 + id: *414 url: type: string description: The REST API URL for checking the status of the upload. @@ -58031,7 +58098,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *388 + '403': *409 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -58054,8 +58121,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *283 - - *284 + - *304 + - *305 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -58101,7 +58168,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *382 + '403': *403 '404': description: Not Found if the sarif id does not match any upload '503': *65 @@ -58126,8 +58193,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -58183,7 +58250,7 @@ paths: html_url: https://github.com/organizations/octo-org/settings/security_products/configurations/edit/1325 created_at: '2024-05-01T00:00:00Z' updated_at: '2024-05-01T00:00:00Z' - '204': *148 + '204': *149 '304': *37 '403': *29 '404': *6 @@ -58208,8 +58275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *283 - - *284 + - *304 + - *305 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -58329,8 +58396,8 @@ paths: parameters: - *17 - *19 - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -58346,7 +58413,7 @@ paths: type: integer codespaces: type: array - items: *201 + items: *202 examples: default: value: @@ -58644,8 +58711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -58708,17 +58775,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '400': *14 '401': *25 '403': *29 @@ -58747,8 +58814,8 @@ paths: parameters: - *17 - *19 - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -58812,8 +58879,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -58848,14 +58915,14 @@ paths: type: integer machines: type: array - items: &631 + items: &633 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *404 - required: *405 + properties: *425 + required: *426 examples: - default: &632 + default: &634 value: total_count: 2 machines: @@ -58895,8 +58962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *283 - - *284 + - *304 + - *305 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -58980,8 +59047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *283 - - *284 + - *304 + - *305 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -59047,8 +59114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -59066,7 +59133,7 @@ paths: type: integer secrets: type: array - items: &409 + items: &430 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -59086,7 +59153,7 @@ paths: - created_at - updated_at examples: - default: *406 + default: *427 headers: Link: *58 x-github: @@ -59109,16 +59176,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *407 + schema: *428 examples: - default: *408 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -59138,17 +59205,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '200': description: Response content: application/json: - schema: *409 + schema: *430 examples: - default: *410 + default: *431 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59168,8 +59235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 requestBody: required: true @@ -59222,8 +59289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '204': @@ -59252,8 +59319,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *283 - - *284 + - *304 + - *305 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -59295,7 +59362,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &411 + properties: &432 login: type: string example: octocat @@ -59388,7 +59455,7 @@ paths: user_view_type: type: string example: public - required: &412 + required: &433 - avatar_url - events_url - followers_url @@ -59462,8 +59529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *283 - - *284 + - *304 + - *305 - *135 responses: '204': @@ -59510,8 +59577,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *283 - - *284 + - *304 + - *305 - *135 requestBody: required: false @@ -59538,7 +59605,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &479 + schema: &500 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -59767,8 +59834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *283 - - *284 + - *304 + - *305 - *135 responses: '204': @@ -59800,8 +59867,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *283 - - *284 + - *304 + - *305 - *135 responses: '200': @@ -59822,8 +59889,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *411 - required: *412 + properties: *432 + required: *433 nullable: true required: - permission @@ -59878,8 +59945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -59889,7 +59956,7 @@ paths: application/json: schema: type: array - items: &413 + items: &434 title: Commit Comment description: Commit Comment type: object @@ -59947,7 +60014,7 @@ paths: - created_at - updated_at examples: - default: &416 + default: &437 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -60006,17 +60073,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '200': description: Response content: application/json: - schema: *413 + schema: *434 examples: - default: &417 + default: &438 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -60073,8 +60140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -60097,7 +60164,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *434 examples: default: value: @@ -60148,8 +60215,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '204': @@ -60171,8 +60238,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -60199,9 +60266,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -60222,8 +60289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -60256,16 +60323,16 @@ paths: description: Reaction exists content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Reaction created content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '422': *15 x-github: githubCloudOnly: false @@ -60287,10 +60354,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *283 - - *284 + - *304 + - *305 - *76 - - *279 + - *300 responses: '204': description: Response @@ -60339,8 +60406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *283 - - *284 + - *304 + - *305 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -60396,9 +60463,9 @@ paths: application/json: schema: type: array - items: *414 + items: *435 examples: - default: &530 + default: &551 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -60492,9 +60559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *283 - - *284 - - &415 + - *304 + - *305 + - &436 name: commit_sha description: The SHA of the commit. in: path @@ -60566,9 +60633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *283 - - *284 - - *415 + - *304 + - *305 + - *436 - *17 - *19 responses: @@ -60578,9 +60645,9 @@ paths: application/json: schema: type: array - items: *413 + items: *434 examples: - default: *416 + default: *437 headers: Link: *58 x-github: @@ -60608,9 +60675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *283 - - *284 - - *415 + - *304 + - *305 + - *436 requestBody: required: true content: @@ -60645,9 +60712,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *434 examples: - default: *417 + default: *438 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -60675,9 +60742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *283 - - *284 - - *415 + - *304 + - *305 + - *436 - *17 - *19 responses: @@ -60687,7 +60754,7 @@ paths: application/json: schema: type: array - items: &521 + items: &542 title: Pull Request Simple description: Pull Request Simple type: object @@ -60793,8 +60860,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *418 - required: *419 + properties: *439 + required: *440 nullable: true active_lock_reason: type: string @@ -60839,7 +60906,7 @@ paths: nullable: true requested_teams: type: array - items: *154 + items: *155 nullable: true head: type: object @@ -60890,7 +60957,7 @@ paths: _links: type: object properties: - comments: &420 + comments: &441 title: Link description: Hypermedia Link type: object @@ -60899,13 +60966,13 @@ paths: type: string required: - href - commits: *420 - statuses: *420 - html: *420 - issue: *420 - review_comments: *420 - review_comment: *420 - self: *420 + commits: *441 + statuses: *441 + html: *441 + issue: *441 + review_comments: *441 + review_comment: *441 + self: *441 required: - comments - commits @@ -60916,7 +60983,7 @@ paths: - review_comment - self author_association: *63 - auto_merge: &523 + auto_merge: &544 title: Auto merge description: The status of auto merging a pull request. type: object @@ -60979,7 +61046,7 @@ paths: - author_association - auto_merge examples: - default: &522 + default: &543 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -61516,11 +61583,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *283 - - *284 + - *304 + - *305 - *19 - *17 - - &421 + - &442 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -61535,9 +61602,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *435 examples: - default: &508 + default: &529 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -61650,11 +61717,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *283 - - *284 - - *421 - - *422 - - *423 + - *304 + - *305 + - *442 + - *443 + - *444 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -61688,9 +61755,9 @@ paths: type: integer check_runs: type: array - items: *363 + items: *384 examples: - default: *424 + default: *445 headers: Link: *58 x-github: @@ -61715,9 +61782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *283 - - *284 - - *421 + - *304 + - *305 + - *442 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -61725,7 +61792,7 @@ paths: schema: type: integer example: 1 - - *422 + - *443 - *17 - *19 responses: @@ -61743,7 +61810,7 @@ paths: type: integer check_suites: type: array - items: *368 + items: *389 examples: default: value: @@ -61943,9 +62010,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *283 - - *284 - - *421 + - *304 + - *305 + - *442 - *17 - *19 responses: @@ -62143,9 +62210,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *283 - - *284 - - *421 + - *304 + - *305 + - *442 - *17 - *19 responses: @@ -62155,7 +62222,7 @@ paths: application/json: schema: type: array - items: &605 + items: &607 title: Status description: The status of a commit. type: object @@ -62236,7 +62303,7 @@ paths: site_admin: false headers: Link: *58 - '301': *295 + '301': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62264,8 +62331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -62294,20 +62361,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *425 - required: *426 + properties: *446 + required: *447 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &427 + properties: &448 url: type: string format: uri html_url: type: string format: uri - required: &428 + required: &449 - url - html_url nullable: true @@ -62321,26 +62388,26 @@ paths: contributing: title: Community Health File type: object - properties: *427 - required: *428 + properties: *448 + required: *449 nullable: true readme: title: Community Health File type: object - properties: *427 - required: *428 + properties: *448 + required: *449 nullable: true issue_template: title: Community Health File type: object - properties: *427 - required: *428 + properties: *448 + required: *449 nullable: true pull_request_template: title: Community Health File type: object - properties: *427 - required: *428 + properties: *448 + required: *449 nullable: true required: - code_of_conduct @@ -62467,8 +62534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *283 - - *284 + - *304 + - *305 - *19 - *17 - name: basehead @@ -62511,8 +62578,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *414 - merge_base_commit: *414 + base_commit: *435 + merge_base_commit: *435 status: type: string enum: @@ -62532,10 +62599,10 @@ paths: example: 6 commits: type: array - items: *414 + items: *435 files: type: array - items: *429 + items: *450 required: - url - html_url @@ -62821,8 +62888,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *283 - - *284 + - *304 + - *305 - name: path description: path parameter in: path @@ -62965,7 +63032,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &430 + response-if-content-is-a-file: &451 summary: Response if content is a file value: type: file @@ -63097,7 +63164,7 @@ paths: - size - type - url - - &535 + - &556 title: Content File description: Content File type: object @@ -63298,7 +63365,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *430 + response-if-content-is-a-file: *451 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -63367,7 +63434,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *431 + '302': *452 '304': *37 x-github: githubCloudOnly: false @@ -63390,8 +63457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *283 - - *284 + - *304 + - *305 - name: path description: path parameter in: path @@ -63484,7 +63551,7 @@ paths: description: Response content: application/json: - schema: &432 + schema: &453 title: File Commit description: File Commit type: object @@ -63636,7 +63703,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *453 examples: example-for-creating-a-file: value: @@ -63690,7 +63757,7 @@ paths: schema: oneOf: - *3 - - &461 + - &482 description: Repository rule violation was detected type: object properties: @@ -63711,7 +63778,7 @@ paths: items: type: object properties: - placeholder_id: &597 + placeholder_id: &599 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -63743,8 +63810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *283 - - *284 + - *304 + - *305 - name: path description: path parameter in: path @@ -63805,7 +63872,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *453 examples: default: value: @@ -63860,8 +63927,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *283 - - *284 + - *304 + - *305 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -63984,22 +64051,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *283 - - *284 - - *155 + - *304 + - *305 - *156 - *157 - *158 + - *159 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *159 - *160 - *161 - *162 + - *163 - *48 - name: page description: "**Closing down notice**. Page number of the results to fetch. @@ -64019,8 +64086,8 @@ paths: default: 30 - *40 - *41 - - *163 - *164 + - *165 responses: '200': description: Response @@ -64028,7 +64095,7 @@ paths: application/json: schema: type: array - items: &435 + items: &456 type: object description: A Dependabot alert. properties: @@ -64074,7 +64141,7 @@ paths: - unknown - direct - transitive - security_advisory: *433 + security_advisory: *454 security_vulnerability: *52 url: *56 html_url: *57 @@ -64105,7 +64172,7 @@ paths: nullable: true maxLength: 280 fixed_at: *140 - auto_dismissed_at: *434 + auto_dismissed_at: *455 required: - number - state @@ -64335,9 +64402,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *283 - - *284 - - &436 + - *304 + - *305 + - &457 name: alert_number in: path description: |- @@ -64352,7 +64419,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *456 examples: default: value: @@ -64465,9 +64532,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *283 - - *284 - - *436 + - *304 + - *305 + - *457 requestBody: required: true content: @@ -64512,7 +64579,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *456 examples: default: value: @@ -64641,8 +64708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -64660,7 +64727,7 @@ paths: type: integer secrets: type: array - items: &439 + items: &460 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -64713,16 +64780,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *437 + schema: *458 examples: - default: *438 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64742,15 +64809,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '200': description: Response content: application/json: - schema: *439 + schema: *460 examples: default: value: @@ -64776,8 +64843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 requestBody: required: true @@ -64830,8 +64897,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *283 - - *284 + - *304 + - *305 - *130 responses: '204': @@ -64854,8 +64921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *283 - - *284 + - *304 + - *305 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -65015,8 +65082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -65255,8 +65322,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -65331,7 +65398,7 @@ paths: - version - url additionalProperties: false - metadata: &440 + metadata: &461 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -65364,7 +65431,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *440 + metadata: *461 resolved: type: object description: A collection of resolved package dependencies. @@ -65377,7 +65444,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *440 + metadata: *461 relationship: type: string description: A notation of whether a dependency is requested @@ -65506,8 +65573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *283 - - *284 + - *304 + - *305 - name: sha description: The SHA recorded at creation time. in: query @@ -65547,9 +65614,9 @@ paths: application/json: schema: type: array - items: *441 + items: *462 examples: - default: *442 + default: *463 headers: Link: *58 x-github: @@ -65615,8 +65682,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -65697,7 +65764,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *462 examples: simple-example: summary: Simple example @@ -65770,9 +65837,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *283 - - *284 - - &443 + - *304 + - *305 + - &464 name: deployment_id description: deployment_id parameter in: path @@ -65784,7 +65851,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *462 examples: default: value: @@ -65849,9 +65916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *283 - - *284 - - *443 + - *304 + - *305 + - *464 responses: '204': description: Response @@ -65873,9 +65940,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *283 - - *284 - - *443 + - *304 + - *305 + - *464 - *17 - *19 responses: @@ -65885,7 +65952,7 @@ paths: application/json: schema: type: array - items: &444 + items: &465 title: Deployment Status description: The status of a deployment. type: object @@ -66046,9 +66113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *283 - - *284 - - *443 + - *304 + - *305 + - *464 requestBody: required: true content: @@ -66123,9 +66190,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *465 examples: - default: &445 + default: &466 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -66181,9 +66248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *283 - - *284 - - *443 + - *304 + - *305 + - *464 - name: status_id in: path required: true @@ -66194,9 +66261,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *465 examples: - default: *445 + default: *466 '404': *6 x-github: githubCloudOnly: false @@ -66221,8 +66288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -66279,8 +66346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -66297,7 +66364,7 @@ paths: type: integer environments: type: array - items: &447 + items: &468 title: Environment description: Details of a deployment environment type: object @@ -66349,7 +66416,7 @@ paths: type: type: string example: wait_timer - wait_timer: &449 + wait_timer: &470 type: integer example: 30 description: The amount of time to delay a job after @@ -66386,11 +66453,11 @@ paths: items: type: object properties: - type: *446 + type: *467 reviewer: anyOf: - *4 - - *154 + - *155 required: - id - node_id @@ -66410,7 +66477,7 @@ paths: - id - node_id - type - deployment_branch_policy: &450 + deployment_branch_policy: &471 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -66526,9 +66593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *283 - - *284 - - &448 + - *304 + - *305 + - &469 name: environment_name in: path required: true @@ -66541,9 +66608,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *468 examples: - default: &451 + default: &472 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -66627,9 +66694,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 requestBody: required: false content: @@ -66638,7 +66705,7 @@ paths: type: object nullable: true properties: - wait_timer: *449 + wait_timer: *470 prevent_self_review: type: boolean example: false @@ -66655,13 +66722,13 @@ paths: items: type: object properties: - type: *446 + type: *467 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *450 + deployment_branch_policy: *471 additionalProperties: false examples: default: @@ -66681,9 +66748,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *468 examples: - default: *451 + default: *472 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -66707,9 +66774,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 responses: '204': description: Default response @@ -66734,9 +66801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *17 - *19 responses: @@ -66754,7 +66821,7 @@ paths: example: 2 branch_policies: type: array - items: &452 + items: &473 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -66811,9 +66878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 requestBody: required: true content: @@ -66859,9 +66926,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *473 examples: - example-wildcard: &453 + example-wildcard: &474 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -66903,10 +66970,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *283 - - *284 - - *448 - - &454 + - *304 + - *305 + - *469 + - &475 name: branch_policy_id in: path required: true @@ -66918,9 +66985,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *473 examples: - default: *453 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66939,10 +67006,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *283 - - *284 - - *448 - - *454 + - *304 + - *305 + - *469 + - *475 requestBody: required: true content: @@ -66970,9 +67037,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *473 examples: - default: *453 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66991,10 +67058,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *283 - - *284 - - *448 - - *454 + - *304 + - *305 + - *469 + - *475 responses: '204': description: Response @@ -67019,9 +67086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *448 - - *284 - - *283 + - *469 + - *305 + - *304 responses: '200': description: List of deployment protection rules @@ -67037,7 +67104,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &455 + items: &476 title: Deployment protection rule description: Deployment protection rule type: object @@ -67056,7 +67123,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &456 + app: &477 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -67155,9 +67222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *448 - - *284 - - *283 + - *469 + - *305 + - *304 requestBody: content: application/json: @@ -67178,9 +67245,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *455 + schema: *476 examples: - default: &457 + default: &478 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -67215,9 +67282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *448 - - *284 - - *283 + - *469 + - *305 + - *304 - *19 - *17 responses: @@ -67236,7 +67303,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *456 + items: *477 examples: default: value: @@ -67271,10 +67338,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *283 - - *284 - - *448 - - &458 + - *304 + - *305 + - *469 + - &479 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -67286,9 +67353,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *476 examples: - default: *457 + default: *478 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67309,10 +67376,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *448 - - *284 - - *283 - - *458 + - *469 + - *305 + - *304 + - *479 responses: '204': description: Response @@ -67338,9 +67405,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *17 - *19 responses: @@ -67358,9 +67425,9 @@ paths: type: integer secrets: type: array - items: *329 + items: *350 examples: - default: *330 + default: *351 headers: Link: *58 x-github: @@ -67385,17 +67452,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 responses: '200': description: Response content: application/json: - schema: *331 + schema: *352 examples: - default: *332 + default: *353 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67417,18 +67484,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *130 responses: '200': description: Response content: application/json: - schema: *329 + schema: *350 examples: - default: *459 + default: *480 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67450,9 +67517,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *130 requestBody: required: true @@ -67510,9 +67577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *130 responses: '204': @@ -67538,10 +67605,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *283 - - *284 - - *448 + - *304 - *305 + - *469 + - *326 - *19 responses: '200': @@ -67558,9 +67625,9 @@ paths: type: integer variables: type: array - items: *333 + items: *354 examples: - default: *334 + default: *355 headers: Link: *58 x-github: @@ -67583,9 +67650,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 requestBody: required: true content: @@ -67637,18 +67704,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *283 - - *284 - - *448 + - *304 + - *305 + - *469 - *133 responses: '200': description: Response content: application/json: - schema: *333 + schema: *354 examples: - default: *460 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67669,10 +67736,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *283 - - *284 + - *304 + - *305 - *133 - - *448 + - *469 requestBody: required: true content: @@ -67714,10 +67781,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *283 - - *284 + - *304 + - *305 - *133 - - *448 + - *469 responses: '204': description: Response @@ -67739,8 +67806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -67817,8 +67884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *283 - - *284 + - *304 + - *305 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -67977,8 +68044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -68010,9 +68077,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 + default: *317 '400': *14 '422': *15 '403': *29 @@ -68033,8 +68100,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -68094,7 +68161,7 @@ paths: schema: oneOf: - *100 - - *461 + - *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68119,8 +68186,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *283 - - *284 + - *304 + - *305 - name: file_sha in: path required: true @@ -68219,8 +68286,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -68329,7 +68396,7 @@ paths: description: Response content: application/json: - schema: &462 + schema: &483 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -68543,15 +68610,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *283 - - *284 - - *415 + - *304 + - *305 + - *436 responses: '200': description: Response content: application/json: - schema: *462 + schema: *483 examples: default: value: @@ -68607,9 +68674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *283 - - *284 - - &463 + - *304 + - *305 + - &484 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -68626,7 +68693,7 @@ paths: application/json: schema: type: array - items: &464 + items: &485 title: Git Reference description: Git references within a repository type: object @@ -68701,17 +68768,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *283 - - *284 - - *463 + - *304 + - *305 + - *484 responses: '200': description: Response content: application/json: - schema: *464 + schema: *485 examples: - default: &465 + default: &486 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -68740,8 +68807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -68770,9 +68837,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *485 examples: - default: *465 + default: *486 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -68798,9 +68865,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *283 - - *284 - - *463 + - *304 + - *305 + - *484 requestBody: required: true content: @@ -68829,9 +68896,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *485 examples: - default: *465 + default: *486 '422': *15 '409': *47 x-github: @@ -68849,9 +68916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *283 - - *284 - - *463 + - *304 + - *305 + - *484 responses: '204': description: Response @@ -68906,8 +68973,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -68974,7 +69041,7 @@ paths: description: Response content: application/json: - schema: &467 + schema: &488 title: Git Tag description: Metadata for a Git tag type: object @@ -69025,7 +69092,7 @@ paths: - sha - type - url - verification: *466 + verification: *487 required: - sha - url @@ -69035,7 +69102,7 @@ paths: - tag - message examples: - default: &468 + default: &489 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -69108,8 +69175,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *283 - - *284 + - *304 + - *305 - name: tag_sha in: path required: true @@ -69120,9 +69187,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *488 examples: - default: *468 + default: *489 '404': *6 '409': *47 x-github: @@ -69146,8 +69213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -69220,7 +69287,7 @@ paths: description: Response content: application/json: - schema: &469 + schema: &490 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -69316,8 +69383,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *283 - - *284 + - *304 + - *305 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -69340,7 +69407,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *490 examples: default-response: summary: Default response @@ -69399,8 +69466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -69410,7 +69477,7 @@ paths: application/json: schema: type: array - items: &470 + items: &491 title: Webhook description: Webhooks for repositories. type: object @@ -69464,7 +69531,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &715 + last_response: &717 title: Hook Response type: object properties: @@ -69538,8 +69605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -69591,9 +69658,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *491 examples: - default: &471 + default: &492 value: type: Repository id: 12345678 @@ -69641,17 +69708,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 responses: '200': description: Response content: application/json: - schema: *470 + schema: *491 examples: - default: *471 + default: *492 '404': *6 x-github: githubCloudOnly: false @@ -69671,9 +69738,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 requestBody: required: true content: @@ -69718,9 +69785,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *491 examples: - default: *471 + default: *492 '422': *15 '404': *6 x-github: @@ -69741,9 +69808,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 responses: '204': description: Response @@ -69767,9 +69834,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 responses: '200': description: Response @@ -69796,9 +69863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 requestBody: required: false content: @@ -69842,11 +69909,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *283 - - *284 - - *172 - - *17 + - *304 + - *305 - *173 + - *17 + - *174 responses: '200': description: Response @@ -69854,9 +69921,9 @@ paths: application/json: schema: type: array - items: *174 + items: *175 examples: - default: *175 + default: *176 '400': *14 '422': *15 x-github: @@ -69875,18 +69942,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 - *16 responses: '200': description: Response content: application/json: - schema: *176 + schema: *177 examples: - default: *177 + default: *178 '400': *14 '422': *15 x-github: @@ -69905,9 +69972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 - *16 responses: '202': *39 @@ -69930,9 +69997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 responses: '204': description: Response @@ -69957,9 +70024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *283 - - *284 - - *172 + - *304 + - *305 + - *173 responses: '204': description: Response @@ -70017,14 +70084,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: &472 + schema: &493 title: Import description: A repository import from an external source. type: object @@ -70123,7 +70190,7 @@ paths: - html_url - authors_url examples: - default: &475 + default: &496 value: vcs: subversion use_lfs: true @@ -70139,7 +70206,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &473 + '503': &494 description: Unavailable due to service under maintenance. content: application/json: @@ -70168,8 +70235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -70217,7 +70284,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *493 examples: default: value: @@ -70242,7 +70309,7 @@ paths: type: string '422': *15 '404': *6 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70270,8 +70337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -70320,7 +70387,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *493 examples: example-1: summary: Example 1 @@ -70368,7 +70435,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70391,12 +70458,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70422,9 +70489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *283 - - *284 - - &655 + - *304 + - *305 + - &657 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -70438,7 +70505,7 @@ paths: application/json: schema: type: array - items: &474 + items: &495 title: Porter Author description: Porter Author type: object @@ -70492,7 +70559,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70517,8 +70584,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *283 - - *284 + - *304 + - *305 - name: author_id in: path required: true @@ -70548,7 +70615,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *495 examples: default: value: @@ -70561,7 +70628,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70585,8 +70652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -70627,7 +70694,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70655,8 +70722,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -70683,11 +70750,11 @@ paths: description: Response content: application/json: - schema: *472 + schema: *493 examples: - default: *475 + default: *496 '422': *15 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70710,8 +70777,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -70719,8 +70786,8 @@ paths: application/json: schema: *22 examples: - default: *476 - '301': *295 + default: *497 + '301': *316 '404': *6 x-github: githubCloudOnly: false @@ -70740,8 +70807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -70749,12 +70816,12 @@ paths: application/json: schema: anyOf: - - *190 + - *191 - type: object properties: {} additionalProperties: false examples: - default: &478 + default: &499 value: limit: collaborators_only origin: repository @@ -70779,13 +70846,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: application/json: - schema: *477 + schema: *498 examples: default: summary: Example request body @@ -70797,9 +70864,9 @@ paths: description: Response content: application/json: - schema: *190 + schema: *191 examples: - default: *478 + default: *499 '409': description: Response x-github: @@ -70821,8 +70888,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -70845,8 +70912,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -70856,9 +70923,9 @@ paths: application/json: schema: type: array - items: *479 + items: *500 examples: - default: &648 + default: &650 value: - id: 1 repository: @@ -70989,9 +71056,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *283 - - *284 - - *194 + - *304 + - *305 + - *195 requestBody: required: false content: @@ -71020,7 +71087,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *500 examples: default: value: @@ -71151,9 +71218,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *283 - - *284 - - *194 + - *304 + - *305 + - *195 responses: '204': description: Response @@ -71184,8 +71251,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *283 - - *284 + - *304 + - *305 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -71233,7 +71300,7 @@ paths: required: false schema: type: string - - *198 + - *199 - name: sort description: What to sort results by. in: query @@ -71258,7 +71325,7 @@ paths: type: array items: *77 examples: - default: &490 + default: &511 value: - id: 1 node_id: MDU6SXNzdWUx @@ -71406,7 +71473,7 @@ paths: state_reason: completed headers: Link: *58 - '301': *295 + '301': *316 '422': *15 '404': *6 x-github: @@ -71435,8 +71502,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -71520,7 +71587,7 @@ paths: application/json: schema: *77 examples: - default: &485 + default: &506 value: id: 1 node_id: MDU6SXNzdWUx @@ -71676,7 +71743,7 @@ paths: '422': *15 '503': *65 '404': *6 - '410': *292 + '410': *313 x-github: triggersNotification: true githubCloudOnly: false @@ -71704,8 +71771,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *87 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -71726,9 +71793,9 @@ paths: application/json: schema: type: array - items: *480 + items: *501 examples: - default: &487 + default: &508 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71786,17 +71853,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '200': description: Response content: application/json: - schema: *480 + schema: *501 examples: - default: &481 + default: &502 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71850,8 +71917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -71874,9 +71941,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *501 examples: - default: *481 + default: *502 '422': *15 x-github: githubCloudOnly: false @@ -71894,8 +71961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '204': @@ -71916,8 +71983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71944,9 +72011,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -71967,8 +72034,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -72001,16 +72068,16 @@ paths: description: Reaction exists content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Reaction created content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '422': *15 x-github: githubCloudOnly: false @@ -72032,10 +72099,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *283 - - *284 + - *304 + - *305 - *76 - - *279 + - *300 responses: '204': description: Response @@ -72055,8 +72122,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -72066,7 +72133,7 @@ paths: application/json: schema: type: array - items: &484 + items: &505 title: Issue Event description: Issue Event type: object @@ -72109,8 +72176,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *482 - required: *483 + properties: *503 + required: *504 nullable: true label: title: Issue Event Label @@ -72154,7 +72221,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *154 + requested_team: *155 dismissed_review: title: Issue Event Dismissed Review type: object @@ -72417,8 +72484,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *283 - - *284 + - *304 + - *305 - name: event_id in: path required: true @@ -72429,7 +72496,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *505 examples: default: value: @@ -72622,7 +72689,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *292 + '410': *313 '403': *29 x-github: githubCloudOnly: false @@ -72656,9 +72723,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *283 - - *284 - - &486 + - *304 + - *305 + - &507 name: issue_number description: The number that identifies the issue. in: path @@ -72672,10 +72739,10 @@ paths: application/json: schema: *77 examples: - default: *485 - '301': *295 + default: *506 + '301': *316 '404': *6 - '410': *292 + '410': *313 '304': *37 x-github: githubCloudOnly: false @@ -72700,9 +72767,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: false content: @@ -72808,13 +72875,13 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 '422': *15 '503': *65 '403': *29 - '301': *295 + '301': *316 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72832,9 +72899,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: false content: @@ -72862,7 +72929,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72878,9 +72945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: content: application/json: @@ -72907,7 +72974,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72929,9 +72996,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - name: assignee in: path required: true @@ -72971,9 +73038,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - *67 - *17 - *19 @@ -72984,13 +73051,13 @@ paths: application/json: schema: type: array - items: *480 + items: *501 examples: - default: *487 + default: *508 headers: Link: *58 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73019,9 +73086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: true content: @@ -73043,16 +73110,16 @@ paths: description: Response content: application/json: - schema: *480 + schema: *501 examples: - default: *481 + default: *502 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *292 + '410': *313 '422': *15 '404': *6 x-github: @@ -73072,9 +73139,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - *17 - *19 responses: @@ -73088,7 +73155,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &491 + - &512 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -73142,7 +73209,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &492 + - &513 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -73278,7 +73345,7 @@ paths: - performed_via_github_app - assignee - assigner - - &493 + - &514 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -73329,7 +73396,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &494 + - &515 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -73380,7 +73447,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &495 + - &516 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -73434,7 +73501,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &496 + - &517 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -73468,7 +73535,7 @@ paths: properties: *61 required: *62 review_requester: *4 - requested_team: *154 + requested_team: *155 requested_reviewer: *4 required: - review_requester @@ -73481,7 +73548,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &497 + - &518 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -73515,7 +73582,7 @@ paths: properties: *61 required: *62 review_requester: *4 - requested_team: *154 + requested_team: *155 requested_reviewer: *4 required: - review_requester @@ -73528,7 +73595,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &498 + - &519 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -73588,7 +73655,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &499 + - &520 title: Locked Issue Event description: Locked Issue Event type: object @@ -73636,7 +73703,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &500 + - &521 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -73702,7 +73769,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &501 + - &522 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -73768,7 +73835,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &502 + - &523 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -73834,7 +73901,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &503 + - &524 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -73925,7 +73992,7 @@ paths: color: red headers: Link: *58 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73942,9 +74009,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - *17 - *19 responses: @@ -73954,7 +74021,7 @@ paths: application/json: schema: type: array - items: &488 + items: &509 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -74001,7 +74068,7 @@ paths: - color - default examples: - default: &489 + default: &510 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -74019,9 +74086,9 @@ paths: default: false headers: Link: *58 - '301': *295 + '301': *316 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74038,9 +74105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: false content: @@ -74099,12 +74166,12 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 - '301': *295 + default: *510 + '301': *316 '404': *6 - '410': *292 + '410': *313 '422': *15 x-github: githubCloudOnly: false @@ -74121,9 +74188,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: false content: @@ -74183,12 +74250,12 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 - '301': *295 + default: *510 + '301': *316 '404': *6 - '410': *292 + '410': *313 '422': *15 x-github: githubCloudOnly: false @@ -74205,15 +74272,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 responses: '204': description: Response - '301': *295 + '301': *316 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74232,9 +74299,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - name: name in: path required: true @@ -74247,7 +74314,7 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: default: value: @@ -74258,9 +74325,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *295 + '301': *316 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74280,9 +74347,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: false content: @@ -74310,7 +74377,7 @@ paths: '204': description: Response '403': *29 - '410': *292 + '410': *313 '404': *6 '422': *15 x-github: @@ -74328,9 +74395,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 responses: '204': description: Response @@ -74352,9 +74419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -74380,13 +74447,13 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74404,9 +74471,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: true content: @@ -74438,16 +74505,16 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '422': *15 x-github: githubCloudOnly: false @@ -74469,10 +74536,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *283 - - *284 - - *486 - - *279 + - *304 + - *305 + - *507 + - *300 responses: '204': description: Response @@ -74501,9 +74568,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: true content: @@ -74527,7 +74594,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -74547,11 +74614,11 @@ paths: description: |- You can use the REST API to list the sub-issues on an issue. - This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + This endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#media-types). - - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. - - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. - - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`. - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. tags: - issues @@ -74560,9 +74627,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - *17 - *19 responses: @@ -74574,11 +74641,11 @@ paths: type: array items: *77 examples: - default: *490 + default: *511 headers: Link: *58 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74606,9 +74673,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: true content: @@ -74637,14 +74704,14 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *292 + '410': *313 '422': *15 '404': *6 x-github: @@ -74664,9 +74731,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 requestBody: required: true content: @@ -74699,7 +74766,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 '403': *29 '404': *6 '422': *7 @@ -74721,9 +74788,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *283 - - *284 - - *486 + - *304 + - *305 + - *507 - *17 - *19 responses: @@ -74738,19 +74805,19 @@ paths: description: Timeline Event type: object anyOf: - - *491 - - *492 - - *493 - - *494 - - *495 - - *496 - - *497 - - *498 - - *499 - - *500 - - *501 - - *502 - - *503 + - *512 + - *513 + - *514 + - *515 + - *516 + - *517 + - *518 + - *519 + - *520 + - *521 + - *522 + - *523 + - *524 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -75055,7 +75122,7 @@ paths: type: string comments: type: array - items: &524 + items: &545 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -75264,7 +75331,7 @@ paths: type: string comments: type: array - items: *413 + items: *434 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -75553,7 +75620,7 @@ paths: headers: Link: *58 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75570,8 +75637,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -75581,7 +75648,7 @@ paths: application/json: schema: type: array - items: &504 + items: &525 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -75646,8 +75713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -75683,9 +75750,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *525 examples: - default: &505 + default: &526 value: id: 1 key: ssh-rsa AAA... @@ -75719,9 +75786,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *283 - - *284 - - &506 + - *304 + - *305 + - &527 name: key_id description: The unique identifier of the key. in: path @@ -75733,9 +75800,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *525 examples: - default: *505 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -75753,9 +75820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *283 - - *284 - - *506 + - *304 + - *305 + - *527 responses: '204': description: Response @@ -75775,8 +75842,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -75786,9 +75853,9 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 + default: *510 headers: Link: *58 '404': *6 @@ -75809,8 +75876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -75846,9 +75913,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: - default: &507 + default: &528 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -75880,8 +75947,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *283 - - *284 + - *304 + - *305 - name: name in: path required: true @@ -75892,9 +75959,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: - default: *507 + default: *528 '404': *6 x-github: githubCloudOnly: false @@ -75911,8 +75978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *283 - - *284 + - *304 + - *305 - name: name in: path required: true @@ -75951,7 +76018,7 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: default: value: @@ -75977,8 +76044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *283 - - *284 + - *304 + - *305 - name: name in: path required: true @@ -76004,8 +76071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -76044,9 +76111,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *283 - - *284 - - *389 + - *304 + - *305 + - *410 responses: '200': description: Response @@ -76191,8 +76258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -76257,8 +76324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -76292,9 +76359,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *414 + schema: *435 examples: - default: *508 + default: *529 '204': description: Response when already merged '404': @@ -76319,8 +76386,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *283 - - *284 + - *304 + - *305 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -76361,12 +76428,12 @@ paths: application/json: schema: type: array - items: &509 + items: &530 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *418 - required: *419 + properties: *439 + required: *440 examples: default: value: @@ -76422,8 +76489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -76463,9 +76530,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *530 examples: - default: &510 + default: &531 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -76524,9 +76591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *283 - - *284 - - &511 + - *304 + - *305 + - &532 name: milestone_number description: The number that identifies the milestone. in: path @@ -76538,9 +76605,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *530 examples: - default: *510 + default: *531 '404': *6 x-github: githubCloudOnly: false @@ -76557,9 +76624,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *283 - - *284 - - *511 + - *304 + - *305 + - *532 requestBody: required: false content: @@ -76597,9 +76664,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *530 examples: - default: *510 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76615,9 +76682,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *283 - - *284 - - *511 + - *304 + - *305 + - *532 responses: '204': description: Response @@ -76638,9 +76705,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *283 - - *284 - - *511 + - *304 + - *305 + - *532 - *17 - *19 responses: @@ -76650,9 +76717,9 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 + default: *510 headers: Link: *58 x-github: @@ -76671,12 +76738,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *283 - - *284 - - *512 - - *513 + - *304 + - *305 + - *533 + - *534 - *67 - - *514 + - *535 - *17 - *19 responses: @@ -76688,7 +76755,7 @@ paths: type: array items: *90 examples: - default: *515 + default: *536 headers: Link: *58 x-github: @@ -76712,8 +76779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -76771,14 +76838,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: &516 + schema: &537 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -76903,7 +76970,7 @@ paths: - custom_404 - public examples: - default: &517 + default: &538 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -76944,8 +77011,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -76999,9 +77066,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *537 examples: - default: *517 + default: *538 '422': *15 '409': *47 x-github: @@ -77024,8 +77091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -77124,8 +77191,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -77151,8 +77218,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -77162,7 +77229,7 @@ paths: application/json: schema: type: array - items: &518 + items: &539 title: Page Build description: Page Build type: object @@ -77256,8 +77323,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *283 - - *284 + - *304 + - *305 responses: '201': description: Response @@ -77302,16 +77369,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *518 + schema: *539 examples: - default: &519 + default: &540 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -77359,8 +77426,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *283 - - *284 + - *304 + - *305 - name: build_id in: path required: true @@ -77371,9 +77438,9 @@ paths: description: Response content: application/json: - schema: *518 + schema: *539 examples: - default: *519 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77393,8 +77460,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -77499,9 +77566,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *283 - - *284 - - &520 + - *304 + - *305 + - &541 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -77559,11 +77626,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *283 - - *284 - - *520 + - *304 + - *305 + - *541 responses: - '204': *148 + '204': *149 '404': *6 x-github: githubCloudOnly: false @@ -77588,8 +77655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -77847,8 +77914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Private vulnerability reporting status @@ -77885,10 +77952,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: - '204': *148 + '204': *149 '422': *14 x-github: githubCloudOnly: false @@ -77907,10 +77974,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: - '204': *148 + '204': *149 '422': *14 x-github: githubCloudOnly: false @@ -77931,8 +77998,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-repository-projects parameters: - - *283 - - *284 + - *304 + - *305 - name: state description: Indicates the state of the projects to return. in: query @@ -77953,7 +78020,7 @@ paths: application/json: schema: type: array - items: *232 + items: *233 examples: default: value: @@ -77993,7 +78060,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *292 + '410': *313 '422': *7 x-github: githubCloudOnly: false @@ -78016,8 +78083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#create-a-repository-project parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -78043,13 +78110,13 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: - default: *291 + default: *312 '401': *25 '403': *29 '404': *6 - '410': *292 + '410': *313 '422': *7 x-github: githubCloudOnly: false @@ -78072,8 +78139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -78081,7 +78148,7 @@ paths: application/json: schema: type: array - items: *237 + items: *238 examples: default: value: @@ -78112,8 +78179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -78125,7 +78192,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *237 + items: *238 required: - properties examples: @@ -78175,8 +78242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *283 - - *284 + - *304 + - *305 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -78236,9 +78303,9 @@ paths: application/json: schema: type: array - items: *521 + items: *542 examples: - default: *522 + default: *543 headers: Link: *58 '304': *37 @@ -78270,8 +78337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -78336,7 +78403,7 @@ paths: description: Response content: application/json: - schema: &526 + schema: &547 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -78447,8 +78514,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *418 - required: *419 + properties: *439 + required: *440 nullable: true active_lock_reason: type: string @@ -78493,7 +78560,7 @@ paths: nullable: true requested_teams: type: array - items: *261 + items: *282 nullable: true head: type: object @@ -78532,14 +78599,14 @@ paths: _links: type: object properties: - comments: *420 - commits: *420 - statuses: *420 - html: *420 - issue: *420 - review_comments: *420 - review_comment: *420 - self: *420 + comments: *441 + commits: *441 + statuses: *441 + html: *441 + issue: *441 + review_comments: *441 + review_comment: *441 + self: *441 required: - comments - commits @@ -78550,7 +78617,7 @@ paths: - review_comment - self author_association: *63 - auto_merge: *523 + auto_merge: *544 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -78642,7 +78709,7 @@ paths: - merged_by - review_comments examples: - default: &527 + default: &548 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79169,8 +79236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: sort in: query required: false @@ -79199,9 +79266,9 @@ paths: application/json: schema: type: array - items: *524 + items: *545 examples: - default: &529 + default: &550 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79278,17 +79345,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '200': description: Response content: application/json: - schema: *524 + schema: *545 examples: - default: &525 + default: &546 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79363,8 +79430,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -79387,9 +79454,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: - default: *525 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79405,8 +79472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *283 - - *284 + - *304 + - *305 - *76 responses: '204': @@ -79428,8 +79495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -79456,9 +79523,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -79479,8 +79546,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *283 - - *284 + - *304 + - *305 - *76 requestBody: required: true @@ -79513,16 +79580,16 @@ paths: description: Reaction exists content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Reaction created content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '422': *15 x-github: githubCloudOnly: false @@ -79544,10 +79611,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *283 - - *284 + - *304 + - *305 - *76 - - *279 + - *300 responses: '204': description: Response @@ -79590,9 +79657,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *283 - - *284 - - &528 + - *304 + - *305 + - &549 name: pull_number description: The number that identifies the pull request. in: path @@ -79605,9 +79672,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *526 + schema: *547 examples: - default: *527 + default: *548 '304': *37 '404': *6 '406': @@ -79642,9 +79709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: false content: @@ -79686,9 +79753,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *547 examples: - default: *527 + default: *548 '422': *15 '403': *29 x-github: @@ -79710,9 +79777,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: true content: @@ -79772,17 +79839,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '401': *25 '403': *29 '404': *6 @@ -79812,9 +79879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 - *87 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -79835,9 +79902,9 @@ paths: application/json: schema: type: array - items: *524 + items: *545 examples: - default: *529 + default: *550 headers: Link: *58 x-github: @@ -79870,9 +79937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: true content: @@ -79977,7 +80044,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: example-for-a-multi-line-comment: value: @@ -80065,9 +80132,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 - *76 requestBody: required: true @@ -80090,7 +80157,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: default: value: @@ -80176,9 +80243,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 - *17 - *19 responses: @@ -80188,9 +80255,9 @@ paths: application/json: schema: type: array - items: *414 + items: *435 examples: - default: *530 + default: *551 headers: Link: *58 x-github: @@ -80220,9 +80287,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 - *17 - *19 responses: @@ -80232,7 +80299,7 @@ paths: application/json: schema: type: array - items: *429 + items: *450 examples: default: value: @@ -80270,9 +80337,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 responses: '204': description: Response if pull request has been merged @@ -80295,9 +80362,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: false content: @@ -80408,9 +80475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 responses: '200': description: Response @@ -80426,7 +80493,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 required: - users - teams @@ -80485,9 +80552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: false content: @@ -80524,7 +80591,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *542 examples: default: value: @@ -81060,9 +81127,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: true content: @@ -81096,7 +81163,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *542 examples: default: value: @@ -81601,9 +81668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 - *17 - *19 responses: @@ -81613,7 +81680,7 @@ paths: application/json: schema: type: array - items: &531 + items: &552 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -81764,9 +81831,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: false content: @@ -81852,9 +81919,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: &533 + default: &554 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81917,10 +81984,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 - - &532 + - *304 + - *305 + - *549 + - &553 name: review_id description: The unique identifier of the review. in: path @@ -81932,9 +81999,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: &534 + default: &555 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81993,10 +82060,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 - - *532 + - *304 + - *305 + - *549 + - *553 requestBody: required: true content: @@ -82019,7 +82086,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: default: value: @@ -82081,18 +82148,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 - - *532 + - *304 + - *305 + - *549 + - *553 responses: '200': description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: *533 + default: *554 '422': *7 '404': *6 x-github: @@ -82119,10 +82186,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *283 - - *284 - - *528 - - *532 + - *304 + - *305 + - *549 + - *553 - *17 - *19 responses: @@ -82205,9 +82272,9 @@ paths: _links: type: object properties: - self: *420 - html: *420 - pull_request: *420 + self: *441 + html: *441 + pull_request: *441 required: - self - html @@ -82357,10 +82424,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 - - *532 + - *304 + - *305 + - *549 + - *553 requestBody: required: true content: @@ -82388,7 +82455,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: default: value: @@ -82451,10 +82518,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *283 - - *284 - - *528 - - *532 + - *304 + - *305 + - *549 + - *553 requestBody: required: true content: @@ -82489,9 +82556,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: *534 + default: *555 '404': *6 '422': *7 '403': *29 @@ -82513,9 +82580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *283 - - *284 - - *528 + - *304 + - *305 + - *549 requestBody: required: false content: @@ -82578,8 +82645,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *283 - - *284 + - *304 + - *305 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -82592,9 +82659,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *556 examples: - default: &536 + default: &557 value: type: file encoding: base64 @@ -82636,8 +82703,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *283 - - *284 + - *304 + - *305 - name: dir description: The alternate path to look for a README file in: path @@ -82657,9 +82724,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *556 examples: - default: *536 + default: *557 '404': *6 '422': *15 x-github: @@ -82681,8 +82748,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -82692,7 +82759,7 @@ paths: application/json: schema: type: array - items: &537 + items: &558 title: Release description: A release. type: object @@ -82759,7 +82826,7 @@ paths: author: *4 assets: type: array - items: &538 + items: &559 title: Release Asset description: Data related to a release. type: object @@ -82946,8 +83013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -83023,9 +83090,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *558 examples: - default: &541 + default: &562 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -83130,9 +83197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *283 - - *284 - - &539 + - *304 + - *305 + - &560 name: asset_id description: The unique identifier of the asset. in: path @@ -83144,9 +83211,9 @@ paths: description: Response content: application/json: - schema: *538 + schema: *559 examples: - default: &540 + default: &561 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -83181,7 +83248,7 @@ paths: type: User site_admin: false '404': *6 - '302': *431 + '302': *452 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83197,9 +83264,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *283 - - *284 - - *539 + - *304 + - *305 + - *560 requestBody: required: false content: @@ -83227,9 +83294,9 @@ paths: description: Response content: application/json: - schema: *538 + schema: *559 examples: - default: *540 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83245,9 +83312,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *283 - - *284 - - *539 + - *304 + - *305 + - *560 responses: '204': description: Response @@ -83271,8 +83338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -83357,16 +83424,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response content: application/json: - schema: *537 + schema: *558 examples: - default: *541 + default: *562 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83383,8 +83450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *283 - - *284 + - *304 + - *305 - name: tag description: tag parameter in: path @@ -83397,9 +83464,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *558 examples: - default: *541 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -83421,9 +83488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *283 - - *284 - - &542 + - *304 + - *305 + - &563 name: release_id description: The unique identifier of the release. in: path @@ -83437,9 +83504,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *537 + schema: *558 examples: - default: *541 + default: *562 '401': description: Unauthorized x-github: @@ -83457,9 +83524,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 requestBody: required: false content: @@ -83523,9 +83590,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *558 examples: - default: *541 + default: *562 '404': description: Not Found if the discussion category name is invalid content: @@ -83546,9 +83613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 responses: '204': description: Response @@ -83568,9 +83635,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 - *17 - *19 responses: @@ -83580,7 +83647,7 @@ paths: application/json: schema: type: array - items: *538 + items: *559 examples: default: value: @@ -83661,9 +83728,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 - name: name in: query required: true @@ -83689,7 +83756,7 @@ paths: description: Response for successful upload content: application/json: - schema: *538 + schema: *559 examples: response-for-successful-upload: value: @@ -83744,9 +83811,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -83770,9 +83837,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -83793,9 +83860,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *283 - - *284 - - *542 + - *304 + - *305 + - *563 requestBody: required: true content: @@ -83825,16 +83892,16 @@ paths: description: Reaction exists content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '201': description: Reaction created content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '422': *15 x-github: githubCloudOnly: false @@ -83856,10 +83923,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *283 - - *284 - - *542 - - *279 + - *304 + - *305 + - *563 + - *300 responses: '204': description: Response @@ -83883,9 +83950,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *283 - - *284 - - *351 + - *304 + - *305 + - *372 - *17 - *19 responses: @@ -83901,8 +83968,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *543 - - &545 + - *247 + - &564 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83922,65 +83989,65 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *544 - - *545 + - *248 + - *564 - allOf: - - *546 - - *545 + - *249 + - *564 - allOf: - - *547 - - *545 + - *250 + - *564 - allOf: - - *548 - - *545 + - *565 + - *564 - allOf: - - *549 - - *545 + - *251 + - *564 - allOf: - - *550 - - *545 + - *252 + - *564 - allOf: - - *551 - - *545 + - *253 + - *564 - allOf: - - *552 - - *545 + - *254 + - *564 - allOf: - - *553 - - *545 + - *255 + - *564 - allOf: - - *554 - - *545 + - *256 + - *564 - allOf: - - *555 - - *545 + - *257 + - *564 - allOf: - - *556 - - *545 + - *258 + - *564 - allOf: - - *557 - - *545 + - *259 + - *564 - allOf: - - *558 - - *545 + - *260 + - *564 - allOf: - - *559 - - *545 + - *261 + - *564 - allOf: - - *560 - - *545 + - *262 + - *564 - allOf: - - *561 - - *545 + - *263 + - *564 - allOf: - - *562 - - *545 + - *264 + - *564 - allOf: - - *563 - - *545 + - *265 + - *564 - allOf: + - *266 - *564 - - *545 examples: default: value: @@ -84019,8 +84086,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 - name: includes_parents @@ -84031,7 +84098,7 @@ paths: schema: type: boolean default: true - - *565 + - *566 responses: '200': description: Response @@ -84039,7 +84106,7 @@ paths: application/json: schema: type: array - items: *247 + items: *267 examples: default: value: @@ -84086,8 +84153,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 requestBody: description: Request body required: true @@ -84107,16 +84174,16 @@ paths: - tag - push default: branch - enforcement: *243 + enforcement: *244 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *244 - conditions: *241 + items: *245 + conditions: *242 rules: type: array description: An array of rules within the ruleset. - items: *246 + items: *567 required: - name - enforcement @@ -84147,9 +84214,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: &575 + default: &577 value: id: 42 name: super cool ruleset @@ -84196,12 +84263,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *283 - - *284 - - *566 - - *567 + - *304 + - *305 - *568 - *569 + - *570 + - *571 - *17 - *19 responses: @@ -84209,9 +84276,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *572 examples: - default: *571 + default: *573 '404': *6 '500': *97 x-github: @@ -84232,17 +84299,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *283 - - *284 - - *572 + - *304 + - *305 + - *574 responses: '200': description: Response content: application/json: - schema: *573 + schema: *575 examples: - default: *574 + default: *576 '404': *6 '500': *97 x-github: @@ -84270,8 +84337,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84291,9 +84358,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *575 + default: *577 '404': *6 '500': *97 put: @@ -84311,8 +84378,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84337,16 +84404,16 @@ paths: - branch - tag - push - enforcement: *243 + enforcement: *244 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *244 - conditions: *241 + items: *245 + conditions: *242 rules: description: An array of rules within the ruleset. type: array - items: *246 + items: *567 examples: default: value: @@ -84374,9 +84441,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *575 + default: *577 '404': *6 '500': *97 delete: @@ -84394,8 +84461,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84418,8 +84485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 - name: ruleset_id @@ -84435,9 +84502,9 @@ paths: application/json: schema: type: array - items: *249 + items: *270 examples: - default: *576 + default: *578 '404': *6 '500': *97 x-github: @@ -84456,8 +84523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84475,7 +84542,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *579 examples: default: value: @@ -84530,21 +84597,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *283 - - *284 - - *250 - - *251 - - *252 - - *253 + - *304 + - *305 + - *271 + - *272 + - *273 + - *274 - *48 - *19 - *17 - - *578 - - *579 - - *254 - - *255 - - *256 - - *257 + - *580 + - *581 + - *275 + - *276 + - *277 + - *278 responses: '200': description: Response @@ -84552,7 +84619,7 @@ paths: application/json: schema: type: array - items: &583 + items: &585 type: object properties: number: *54 @@ -84571,8 +84638,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *580 - resolution: *581 + state: *582 + resolution: *583 resolved_at: type: string format: date-time @@ -84668,7 +84735,7 @@ paths: pull request. ' - oneOf: *582 + oneOf: *584 nullable: true has_more_locations: type: boolean @@ -84818,16 +84885,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *283 - - *284 - - *383 - - *257 + - *304 + - *305 + - *404 + - *278 responses: '200': description: Response content: application/json: - schema: *583 + schema: *585 examples: default: value: @@ -84879,9 +84946,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 requestBody: required: true content: @@ -84889,8 +84956,8 @@ paths: schema: type: object properties: - state: *580 - resolution: *581 + state: *582 + resolution: *583 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -84908,7 +84975,7 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: default: value: @@ -84983,9 +85050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *283 - - *284 - - *383 + - *304 + - *305 + - *404 - *19 - *17 responses: @@ -84996,7 +85063,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &736 + items: &738 type: object properties: type: @@ -85022,8 +85089,6 @@ paths: example: commit details: oneOf: - - *584 - - *585 - *586 - *587 - *588 @@ -85035,6 +85100,8 @@ paths: - *594 - *595 - *596 + - *597 + - *598 examples: default: value: @@ -85120,8 +85187,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -85129,14 +85196,14 @@ paths: schema: type: object properties: - reason: &598 + reason: &600 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *597 + placeholder_id: *599 required: - reason - placeholder_id @@ -85153,7 +85220,7 @@ paths: schema: type: object properties: - reason: *598 + reason: *600 expire_at: type: string format: date-time @@ -85196,8 +85263,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -85212,7 +85279,7 @@ paths: properties: incremental_scans: type: array - items: &599 + items: &601 description: Information on a single scan performed by secret scanning on the repository type: object @@ -85238,15 +85305,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *599 + items: *601 backfill_scans: type: array - items: *599 + items: *601 custom_pattern_backfill_scans: type: array items: allOf: - - *599 + - *601 - type: object properties: pattern_name: @@ -85316,8 +85383,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *283 - - *284 + - *304 + - *305 - *48 - name: sort description: The property to sort the results by. @@ -85361,9 +85428,9 @@ paths: application/json: schema: type: array - items: *600 + items: *602 examples: - default: *601 + default: *603 '400': *14 '404': *6 x-github: @@ -85386,8 +85453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -85460,7 +85527,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 required: - login - type @@ -85547,9 +85614,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *602 examples: - default: &603 + default: &605 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -85782,8 +85849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -85887,7 +85954,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *602 examples: default: value: @@ -86034,17 +86101,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *283 - - *284 - - *602 + - *304 + - *305 + - *604 responses: '200': description: Response content: application/json: - schema: *600 + schema: *602 examples: - default: *603 + default: *605 '403': *29 '404': *6 x-github: @@ -86068,9 +86135,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *283 - - *284 - - *602 + - *304 + - *305 + - *604 requestBody: required: true content: @@ -86143,7 +86210,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 required: - login - type @@ -86229,10 +86296,10 @@ paths: description: Response content: application/json: - schema: *600 + schema: *602 examples: - default: *603 - add_credit: *603 + default: *605 + add_credit: *605 '403': *29 '404': *6 '422': @@ -86270,9 +86337,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *283 - - *284 - - *602 + - *304 + - *305 + - *604 responses: '202': *39 '400': *14 @@ -86299,17 +86366,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *283 - - *284 - - *602 + - *304 + - *305 + - *604 responses: '202': description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 + default: *317 '400': *14 '422': *15 '403': *29 @@ -86335,8 +86402,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -86435,8 +86502,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -86445,7 +86512,7 @@ paths: application/json: schema: type: array - items: &604 + items: &606 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -86458,7 +86525,7 @@ paths: - 1124 - -435 '202': *39 - '204': *148 + '204': *149 '422': description: Repository contains more than 10,000 commits x-github: @@ -86478,8 +86545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -86528,7 +86595,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86555,8 +86622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -86630,7 +86697,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86652,8 +86719,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -86807,8 +86874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -86818,7 +86885,7 @@ paths: application/json: schema: type: array - items: *604 + items: *606 examples: default: value: @@ -86831,7 +86898,7 @@ paths: - - 0 - 2 - 21 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86851,8 +86918,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *283 - - *284 + - *304 + - *305 - name: sha in: path required: true @@ -86906,7 +86973,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: default: value: @@ -86960,8 +87027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -86973,7 +87040,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -86993,14 +87060,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &606 + schema: &608 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -87068,8 +87135,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: false content: @@ -87095,7 +87162,7 @@ paths: description: Response content: application/json: - schema: *606 + schema: *608 examples: default: value: @@ -87122,8 +87189,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -87143,8 +87210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -87223,8 +87290,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -87232,7 +87299,7 @@ paths: application/json: schema: type: array - items: &607 + items: &609 title: Tag protection description: Tag protection type: object @@ -87284,8 +87351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -87308,7 +87375,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: default: value: @@ -87339,8 +87406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -87377,8 +87444,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *283 - - *284 + - *304 + - *305 - name: ref in: path required: true @@ -87414,8 +87481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -87425,9 +87492,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 headers: Link: *58 '404': *6 @@ -87447,8 +87514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *283 - - *284 + - *304 + - *305 - *19 - *17 responses: @@ -87456,7 +87523,7 @@ paths: description: Response content: application/json: - schema: &608 + schema: &610 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -87468,7 +87535,7 @@ paths: required: - names examples: - default: &609 + default: &611 value: names: - octocat @@ -87491,8 +87558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -87523,9 +87590,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: *609 + default: *611 '404': *6 '422': *7 x-github: @@ -87546,9 +87613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *283 - - *284 - - &610 + - *304 + - *305 + - &612 name: per description: The time frame to display results for. in: query @@ -87577,7 +87644,7 @@ paths: example: 128 clones: type: array - items: &611 + items: &613 title: Traffic type: object properties: @@ -87664,8 +87731,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -87755,8 +87822,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -87816,9 +87883,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *283 - - *284 - - *610 + - *304 + - *305 + - *612 responses: '200': description: Response @@ -87837,7 +87904,7 @@ paths: example: 3782 views: type: array - items: *611 + items: *613 required: - uniques - count @@ -87914,8 +87981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *283 - - *284 + - *304 + - *305 requestBody: required: true content: @@ -88189,8 +88256,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -88213,8 +88280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -88236,8 +88303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -88263,8 +88330,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *283 - - *284 + - *304 + - *305 - name: ref in: path required: true @@ -88356,9 +88423,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 + default: *317 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -88606,7 +88673,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &612 + text_matches: &614 title: Search Result Text Matches type: array items: @@ -88768,7 +88835,7 @@ paths: enum: - author-date - committer-date - - &613 + - &615 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 @@ -88839,7 +88906,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *349 + properties: *370 nullable: true comment_count: type: integer @@ -88859,7 +88926,7 @@ paths: url: type: string format: uri - verification: *466 + verification: *487 required: - author - committer @@ -88878,7 +88945,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *349 + properties: *370 nullable: true parents: type: array @@ -88896,7 +88963,7 @@ paths: type: number node_id: type: string - text_matches: *612 + text_matches: *614 required: - sha - node_id @@ -89078,7 +89145,7 @@ paths: - interactions - created - updated - - *613 + - *615 - *17 - *19 - name: advanced_search @@ -89205,8 +89272,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *418 - required: *419 + properties: *439 + required: *440 nullable: true comments: type: integer @@ -89220,7 +89287,7 @@ paths: type: string format: date-time nullable: true - text_matches: *612 + text_matches: *614 pull_request: type: object properties: @@ -89264,7 +89331,7 @@ paths: timeline_url: type: string format: uri - type: *195 + type: *196 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -89448,7 +89515,7 @@ paths: enum: - created - updated - - *613 + - *615 - *17 - *19 responses: @@ -89492,7 +89559,7 @@ paths: nullable: true score: type: number - text_matches: *612 + text_matches: *614 required: - id - node_id @@ -89577,7 +89644,7 @@ paths: - forks - help-wanted-issues - updated - - *613 + - *615 - *17 - *19 responses: @@ -89816,7 +89883,7 @@ paths: - admin - pull - push - text_matches: *612 + text_matches: *614 temp_clone_token: type: string allow_merge_commit: @@ -90116,7 +90183,7 @@ paths: type: string format: uri nullable: true - text_matches: *612 + text_matches: *614 related: type: array nullable: true @@ -90307,7 +90374,7 @@ paths: - followers - repositories - joined - - *613 + - *615 - *17 - *19 responses: @@ -90411,7 +90478,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *612 + text_matches: *614 blog: type: string nullable: true @@ -90490,7 +90557,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &614 + - &616 name: team_id description: The unique identifier of the team. in: path @@ -90502,9 +90569,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '404': *6 x-github: githubCloudOnly: false @@ -90531,7 +90598,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *614 + - *616 requestBody: required: true content: @@ -90594,16 +90661,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '201': description: Response content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '404': *6 '422': *15 '403': *29 @@ -90631,7 +90698,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *614 + - *616 responses: '204': description: Response @@ -90662,7 +90729,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *614 + - *616 - *48 - *17 - *19 @@ -90673,9 +90740,9 @@ paths: application/json: schema: type: array - items: *270 + items: *291 examples: - default: *615 + default: *617 headers: Link: *58 x-github: @@ -90704,7 +90771,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *614 + - *616 requestBody: required: true content: @@ -90738,9 +90805,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 x-github: triggersNotification: true githubCloudOnly: false @@ -90767,16 +90834,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *614 - - *272 + - *616 + - *293 responses: '200': description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90801,8 +90868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *614 - - *272 + - *616 + - *293 requestBody: required: false content: @@ -90825,9 +90892,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *616 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90852,8 +90919,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *614 - - *272 + - *616 + - *293 responses: '204': description: Response @@ -90882,8 +90949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *614 - - *272 + - *616 + - *293 - *48 - *17 - *19 @@ -90894,9 +90961,9 @@ paths: application/json: schema: type: array - items: *273 + items: *294 examples: - default: *617 + default: *619 headers: Link: *58 x-github: @@ -90925,8 +90992,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *614 - - *272 + - *616 + - *293 requestBody: required: true content: @@ -90948,9 +91015,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *274 + default: *295 x-github: triggersNotification: true githubCloudOnly: false @@ -90977,17 +91044,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *614 - - *272 - - *275 + - *616 + - *293 + - *296 responses: '200': description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *274 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91012,9 +91079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *614 - - *272 - - *275 + - *616 + - *293 + - *296 requestBody: required: true content: @@ -91036,9 +91103,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *618 + default: *620 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91063,9 +91130,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *614 - - *272 - - *275 + - *616 + - *293 + - *296 responses: '204': description: Response @@ -91094,9 +91161,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *614 - - *272 - - *275 + - *616 + - *293 + - *296 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -91122,9 +91189,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -91153,9 +91220,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *614 - - *272 - - *275 + - *616 + - *293 + - *296 requestBody: required: true content: @@ -91187,9 +91254,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91215,8 +91282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *614 - - *272 + - *616 + - *293 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -91242,9 +91309,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -91273,8 +91340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *614 - - *272 + - *616 + - *293 requestBody: required: true content: @@ -91306,9 +91373,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -91332,7 +91399,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *614 + - *616 - *17 - *19 responses: @@ -91342,9 +91409,9 @@ paths: application/json: schema: type: array - items: *192 + items: *193 examples: - default: *193 + default: *194 headers: Link: *58 x-github: @@ -91370,7 +91437,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *614 + - *616 - name: role description: Filters members returned by their role in the team. in: query @@ -91393,7 +91460,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -91421,7 +91488,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *614 + - *616 - *135 responses: '204': @@ -91458,7 +91525,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *614 + - *616 - *135 responses: '204': @@ -91498,7 +91565,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *614 + - *616 - *135 responses: '204': @@ -91535,16 +91602,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *614 + - *616 - *135 responses: '200': description: Response content: application/json: - schema: *280 + schema: *301 examples: - response-if-user-is-a-team-maintainer: *619 + response-if-user-is-a-team-maintainer: *621 '404': *6 x-github: githubCloudOnly: false @@ -91577,7 +91644,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *614 + - *616 - *135 requestBody: required: false @@ -91603,9 +91670,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *301 examples: - response-if-users-membership-with-team-is-now-pending: *620 + response-if-users-membership-with-team-is-now-pending: *622 '403': description: Forbidden if team synchronization is set up '422': @@ -91639,7 +91706,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *614 + - *616 - *135 responses: '204': @@ -91668,7 +91735,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *614 + - *616 - *17 - *19 responses: @@ -91678,9 +91745,9 @@ paths: application/json: schema: type: array - items: *281 + items: *302 examples: - default: *621 + default: *623 headers: Link: *58 '404': *6 @@ -91706,16 +91773,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *614 - - *282 + - *616 + - *303 responses: '200': description: Response content: application/json: - schema: *281 + schema: *302 examples: - default: *622 + default: *624 '404': description: Not Found if project is not managed by this team x-github: @@ -91739,8 +91806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *614 - - *282 + - *616 + - *303 requestBody: required: false content: @@ -91807,8 +91874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *614 - - *282 + - *616 + - *303 responses: '204': description: Response @@ -91835,7 +91902,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *614 + - *616 - *17 - *19 responses: @@ -91847,7 +91914,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '404': *6 @@ -91877,15 +91944,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *614 - - *283 - - *284 + - *616 + - *304 + - *305 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *623 + schema: *625 examples: alternative-response-with-extra-repository-information: value: @@ -92036,9 +92103,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *614 - - *283 - - *284 + - *616 + - *304 + - *305 requestBody: required: false content: @@ -92088,9 +92155,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *614 - - *283 - - *284 + - *616 + - *304 + - *305 responses: '204': description: Response @@ -92115,7 +92182,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *614 + - *616 - *17 - *19 responses: @@ -92125,9 +92192,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - response-if-child-teams-exist: *624 + response-if-child-teams-exist: *626 headers: Link: *58 '404': *6 @@ -92160,7 +92227,7 @@ paths: application/json: schema: oneOf: - - &626 + - &628 title: Private User description: Private User type: object @@ -92363,7 +92430,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *625 + - *627 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -92516,7 +92583,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *628 examples: default: value: @@ -92595,7 +92662,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '304': *37 '404': *6 '403': *29 @@ -92719,9 +92786,9 @@ paths: type: integer codespaces: type: array - items: *201 + items: *202 examples: - default: *202 + default: *203 '304': *37 '500': *97 '401': *25 @@ -92860,17 +92927,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '401': *25 '403': *29 '404': *6 @@ -92914,7 +92981,7 @@ paths: type: integer secrets: type: array - items: &627 + items: &629 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -92954,7 +93021,7 @@ paths: - visibility - selected_repositories_url examples: - default: *406 + default: *427 headers: Link: *58 x-github: @@ -93030,7 +93097,7 @@ paths: description: Response content: application/json: - schema: *627 + schema: *629 examples: default: value: @@ -93176,7 +93243,7 @@ paths: type: array items: *122 examples: - default: *628 + default: *630 '401': *25 '403': *29 '404': *6 @@ -93320,15 +93387,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '304': *37 '500': *97 '401': *25 @@ -93354,7 +93421,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 requestBody: required: false content: @@ -93384,9 +93451,9 @@ paths: description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '401': *25 '403': *29 '404': *6 @@ -93408,7 +93475,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 responses: '202': *39 '304': *37 @@ -93437,13 +93504,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 responses: '202': description: Response content: application/json: - schema: &629 + schema: &631 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -93484,7 +93551,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &630 + default: &632 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -93516,7 +93583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *203 + - *204 - name: export_id in: path required: true @@ -93529,9 +93596,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *631 examples: - default: *630 + default: *632 '404': *6 x-github: githubCloudOnly: false @@ -93552,7 +93619,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *203 + - *204 responses: '200': description: Response @@ -93568,9 +93635,9 @@ paths: type: integer machines: type: array - items: *631 + items: *633 examples: - default: *632 + default: *634 '304': *37 '500': *97 '401': *25 @@ -93599,7 +93666,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *203 + - *204 requestBody: required: true content: @@ -93649,13 +93716,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *294 + repository: *315 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *404 - required: *405 + properties: *425 + required: *426 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -94429,15 +94496,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '304': *37 '500': *97 '400': *14 @@ -94469,15 +94536,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *203 + - *204 responses: '200': description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '500': *97 '401': *25 '403': *29 @@ -94507,9 +94574,9 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: &645 + default: &647 value: - id: 197 name: hello_docker @@ -94610,7 +94677,7 @@ paths: application/json: schema: type: array - items: &633 + items: &635 title: Email description: Email type: object @@ -94675,9 +94742,9 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: - default: &647 + default: &649 value: - email: octocat@github.com verified: true @@ -94752,7 +94819,7 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: default: value: @@ -94862,7 +94929,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '304': *37 @@ -94895,7 +94962,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '304': *37 @@ -95008,7 +95075,7 @@ paths: application/json: schema: type: array - items: &634 + items: &636 title: GPG Key description: A unique encryption key type: object @@ -95139,7 +95206,7 @@ paths: - subkeys - revoked examples: - default: &661 + default: &663 value: - id: 3 name: Octocat's GPG Key @@ -95224,9 +95291,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *636 examples: - default: &635 + default: &637 value: id: 3 name: Octocat's GPG Key @@ -95283,7 +95350,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &636 + - &638 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -95295,9 +95362,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *636 examples: - default: *635 + default: *637 '404': *6 '304': *37 '403': *29 @@ -95320,7 +95387,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *636 + - *638 responses: '204': description: Response @@ -95511,7 +95578,7 @@ paths: type: array items: *60 examples: - default: *637 + default: *639 headers: Link: *58 '404': *6 @@ -95596,12 +95663,12 @@ paths: application/json: schema: anyOf: - - *190 + - *191 - type: object properties: {} additionalProperties: false examples: - default: *191 + default: *192 '204': description: Response when there are no restrictions x-github: @@ -95625,7 +95692,7 @@ paths: required: true content: application/json: - schema: *477 + schema: *498 examples: default: value: @@ -95636,7 +95703,7 @@ paths: description: Response content: application/json: - schema: *190 + schema: *191 examples: default: value: @@ -95717,7 +95784,7 @@ paths: - closed - all default: open - - *198 + - *199 - name: sort description: What to sort results by. in: query @@ -95742,7 +95809,7 @@ paths: type: array items: *77 examples: - default: *199 + default: *200 headers: Link: *58 '404': *6 @@ -95775,7 +95842,7 @@ paths: application/json: schema: type: array - items: &638 + items: &640 title: Key description: Key type: object @@ -95872,9 +95939,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *640 examples: - default: &639 + default: &641 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95907,15 +95974,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *506 + - *527 responses: '200': description: Response content: application/json: - schema: *638 + schema: *640 examples: - default: *639 + default: *641 '404': *6 '304': *37 '403': *29 @@ -95938,7 +96005,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *506 + - *527 responses: '204': description: Response @@ -95971,7 +96038,7 @@ paths: application/json: schema: type: array - items: &640 + items: &642 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -96039,7 +96106,7 @@ paths: - account - plan examples: - default: &641 + default: &643 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -96101,9 +96168,9 @@ paths: application/json: schema: type: array - items: *640 + items: *642 examples: - default: *641 + default: *643 headers: Link: *58 '304': *37 @@ -96143,7 +96210,7 @@ paths: application/json: schema: type: array - items: *206 + items: *207 examples: default: value: @@ -96251,7 +96318,7 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: default: value: @@ -96334,7 +96401,7 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: default: value: @@ -96402,7 +96469,7 @@ paths: application/json: schema: type: array - items: *208 + items: *209 examples: default: value: @@ -96655,7 +96722,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -96835,7 +96902,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *209 + - *210 - name: exclude in: query required: false @@ -96848,7 +96915,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -97042,7 +97109,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *209 + - *210 responses: '302': description: Response @@ -97068,7 +97135,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *209 + - *210 responses: '204': description: Response @@ -97097,8 +97164,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *209 - - *642 + - *210 + - *644 responses: '204': description: Response @@ -97122,7 +97189,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *209 + - *210 - *17 - *19 responses: @@ -97134,7 +97201,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '404': *6 @@ -97169,9 +97236,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *643 + default: *645 headers: Link: *58 '304': *37 @@ -97213,7 +97280,7 @@ paths: - docker - nuget - container - - *644 + - *646 - *19 - *17 responses: @@ -97223,10 +97290,10 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: *645 - '400': *646 + default: *647 + '400': *648 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97246,16 +97313,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *218 - *219 + - *220 responses: '200': description: Response content: application/json: - schema: *216 + schema: *217 examples: - default: &662 + default: &664 value: id: 40201 name: octo-name @@ -97368,8 +97435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *218 - *219 + - *220 responses: '204': description: Response @@ -97399,8 +97466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *218 - *219 + - *220 - name: token description: package token schema: @@ -97432,8 +97499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *218 - *219 + - *220 - *19 - *17 - name: state @@ -97453,7 +97520,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -97502,15 +97569,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *218 - *219 - - *221 + - *220 + - *222 responses: '200': description: Response content: application/json: - schema: *220 + schema: *221 examples: default: value: @@ -97546,9 +97613,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *218 - *219 - - *221 + - *220 + - *222 responses: '204': description: Response @@ -97578,9 +97645,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *218 - *219 - - *221 + - *220 + - *222 responses: '204': description: Response @@ -97636,7 +97703,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: default: value: @@ -97708,9 +97775,9 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: - default: *647 + default: *649 headers: Link: *58 '304': *37 @@ -97823,7 +97890,7 @@ paths: type: array items: *60 examples: - default: &654 + default: &656 summary: Default response value: - id: 1296269 @@ -98127,9 +98194,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 + default: *317 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -98167,9 +98234,9 @@ paths: application/json: schema: type: array - items: *479 + items: *500 examples: - default: *648 + default: *650 headers: Link: *58 '304': *37 @@ -98192,7 +98259,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *194 + - *195 responses: '204': description: Response @@ -98215,7 +98282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *194 + - *195 responses: '204': description: Response @@ -98248,7 +98315,7 @@ paths: application/json: schema: type: array - items: &649 + items: &651 title: Social account description: Social media account type: object @@ -98263,7 +98330,7 @@ paths: - provider - url examples: - default: &650 + default: &652 value: - provider: twitter url: https://twitter.com/github @@ -98325,9 +98392,9 @@ paths: application/json: schema: type: array - items: *649 + items: *651 examples: - default: *650 + default: *652 '422': *15 '304': *37 '404': *6 @@ -98414,7 +98481,7 @@ paths: application/json: schema: type: array - items: &651 + items: &653 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -98434,7 +98501,7 @@ paths: - title - created_at examples: - default: &673 + default: &675 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98500,9 +98567,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: &652 + default: &654 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98533,7 +98600,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: - - &653 + - &655 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -98545,9 +98612,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: *652 + default: *654 '404': *6 '304': *37 '403': *29 @@ -98570,7 +98637,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: - - *653 + - *655 responses: '204': description: Response @@ -98599,7 +98666,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &674 + - &676 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 @@ -98624,11 +98691,11 @@ paths: type: array items: *60 examples: - default-response: *654 + default-response: *656 application/vnd.github.v3.star+json: schema: type: array - items: &675 + items: &677 title: Starred Repository description: Starred Repository type: object @@ -98784,8 +98851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response if this repository is starred by you @@ -98813,8 +98880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -98838,8 +98905,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *283 - - *284 + - *304 + - *305 responses: '204': description: Response @@ -98874,7 +98941,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '304': *37 @@ -98911,7 +98978,7 @@ paths: application/json: schema: type: array - items: *268 + items: *289 examples: default: value: @@ -98997,10 +99064,10 @@ paths: application/json: schema: oneOf: - - *626 - - *625 + - *628 + - *627 examples: - default-response: &656 + default-response: &658 summary: Default response value: login: octocat @@ -99035,7 +99102,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &657 + response-with-git-hub-plan-information: &659 summary: Response with GitHub plan information value: login: octocat @@ -99095,7 +99162,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *655 + - *657 - *17 responses: '200': @@ -99106,7 +99173,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: example: ; rel="next" @@ -99144,11 +99211,11 @@ paths: application/json: schema: oneOf: - - *626 - - *625 + - *628 + - *627 examples: - default-response: *656 - response-with-git-hub-plan-information: *657 + default-response: *658 + response-with-git-hub-plan-information: *659 '404': *6 x-github: githubCloudOnly: false @@ -99197,8 +99264,8 @@ paths: required: - subject_digests examples: - default: *658 - withPredicateType: *659 + default: *660 + withPredicateType: *661 responses: '200': description: Response @@ -99251,7 +99318,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *660 + default: *662 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99453,7 +99520,7 @@ paths: bundle_url: type: string examples: - default: *345 + default: *366 '201': description: Response content: @@ -99492,9 +99559,9 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: *645 + default: *647 '403': *29 '401': *25 x-github: @@ -99777,7 +99844,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -99808,7 +99875,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -99898,9 +99965,9 @@ paths: application/json: schema: type: array - items: *634 + items: *636 examples: - default: *661 + default: *663 headers: Link: *58 x-github: @@ -100004,7 +100071,7 @@ paths: application/json: schema: *22 examples: - default: *476 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100083,9 +100150,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *643 + default: *645 headers: Link: *58 x-github: @@ -100124,7 +100191,7 @@ paths: - docker - nuget - container - - *644 + - *646 - *135 - *19 - *17 @@ -100135,12 +100202,12 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: *645 + default: *647 '403': *29 '401': *25 - '400': *646 + '400': *648 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100160,17 +100227,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *218 - *219 + - *220 - *135 responses: '200': description: Response content: application/json: - schema: *216 + schema: *217 examples: - default: *662 + default: *664 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100191,8 +100258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *218 - *219 + - *220 - *135 responses: '204': @@ -100225,8 +100292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *218 - *219 + - *220 - *135 - name: token description: package token @@ -100259,8 +100326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *218 - *219 + - *220 - *135 responses: '200': @@ -100269,7 +100336,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -100327,16 +100394,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *218 - *219 - - *221 + - *220 + - *222 - *135 responses: '200': description: Response content: application/json: - schema: *220 + schema: *221 examples: default: value: @@ -100371,10 +100438,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *218 - *219 + - *220 - *135 - - *221 + - *222 responses: '204': description: Response @@ -100406,10 +100473,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *218 - *219 + - *220 - *135 - - *221 + - *222 responses: '204': description: Response @@ -100456,7 +100523,7 @@ paths: application/json: schema: type: array - items: *232 + items: *233 examples: default: value: @@ -100739,7 +100806,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -100769,9 +100836,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: - default: *664 + default: *666 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100799,9 +100866,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *667 examples: - default: *666 + default: *668 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100829,9 +100896,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *669 examples: - default: *668 + default: *670 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100852,10 +100919,10 @@ paths: url: https://docs.github.com/rest/billing/enhanced-billing#get-billing-usage-report-for-a-user parameters: - *135 - - *669 - - *670 - *671 - *672 + - *673 + - *674 responses: '200': description: Response when getting a billing usage report @@ -100954,9 +101021,9 @@ paths: application/json: schema: type: array - items: *649 + items: *651 examples: - default: *650 + default: *652 headers: Link: *58 x-github: @@ -100986,9 +101053,9 @@ paths: application/json: schema: type: array - items: *651 + items: *653 examples: - default: *673 + default: *675 headers: Link: *58 x-github: @@ -101013,7 +101080,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *135 - - *674 + - *676 - *48 - *17 - *19 @@ -101025,11 +101092,11 @@ paths: schema: anyOf: - type: array - items: *675 + items: *677 - type: array items: *60 examples: - default-response: *654 + default-response: *656 headers: Link: *58 x-github: @@ -101060,7 +101127,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -101188,7 +101255,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &676 + enterprise: &678 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -101246,7 +101313,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &677 + installation: &679 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -101265,7 +101332,7 @@ x-webhooks: required: - id - node_id - organization: &678 + organization: &680 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -101325,13 +101392,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &679 + repository: &681 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: &709 + properties: &711 id: description: Unique identifier of the repository example: 42 @@ -102014,7 +102081,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &710 + required: &712 - archive_url - assignees_url - blobs_url @@ -102165,10 +102232,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -102244,11 +102311,11 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - rule: &680 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + rule: &682 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) @@ -102471,11 +102538,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - rule: *680 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + rule: *682 sender: *4 required: - action @@ -102658,11 +102725,11 @@ x-webhooks: - everyone required: - from - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - rule: *680 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + rule: *682 sender: *4 required: - action @@ -102746,7 +102813,7 @@ x-webhooks: type: string enum: - completed - check_run: &682 + check_run: &684 title: CheckRun description: A check performed on the code of a given code change type: object @@ -102799,7 +102866,7 @@ x-webhooks: type: string pull_requests: type: array - items: *362 + items: *383 repository: *122 status: example: completed @@ -102837,7 +102904,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *681 + deployment: *683 details_url: example: https://example.com type: string @@ -102887,7 +102954,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *362 + items: *383 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -102922,9 +102989,9 @@ x-webhooks: - output - app - pull_requests - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - check_run @@ -103317,10 +103384,10 @@ x-webhooks: type: string enum: - created - check_run: *682 - installation: *677 - organization: *678 - repository: *679 + check_run: *684 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - check_run @@ -103716,10 +103783,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *682 - installation: *677 - organization: *678 - repository: *679 + check_run: *684 + installation: *679 + organization: *680 + repository: *681 requested_action: description: The action requested by the user. type: object @@ -104124,10 +104191,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *682 - installation: *677 - organization: *678 - repository: *679 + check_run: *684 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - check_run @@ -105104,10 +105171,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -105777,10 +105844,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -106444,10 +106511,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -106610,7 +106677,7 @@ x-webhooks: required: - login - id - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -106755,20 +106822,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &683 + commit_oid: &685 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: *676 - installation: *677 - organization: *678 - ref: &684 + enterprise: *678 + installation: *679 + organization: *680 + ref: &686 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: *679 + repository: *681 sender: *4 required: - action @@ -106930,7 +106997,7 @@ x-webhooks: required: - login - id - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -107160,12 +107227,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *683 - enterprise: *676 - installation: *677 - organization: *678 - ref: *684 - repository: *679 + commit_oid: *685 + enterprise: *678 + installation: *679 + organization: *680 + ref: *686 + repository: *681 sender: *4 required: - action @@ -107260,7 +107327,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107428,12 +107495,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *683 - enterprise: *676 - installation: *677 - organization: *678 - ref: *684 - repository: *679 + commit_oid: *685 + enterprise: *678 + installation: *679 + organization: *680 + ref: *686 + repository: *681 sender: *4 required: - action @@ -107596,7 +107663,7 @@ x-webhooks: required: - login - id - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -107762,12 +107829,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *683 - enterprise: *676 - installation: *677 - organization: *678 - ref: *684 - repository: *679 + commit_oid: *685 + enterprise: *678 + installation: *679 + organization: *680 + ref: *686 + repository: *681 sender: *4 required: - action @@ -107864,7 +107931,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108032,16 +108099,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 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: *679 + repository: *681 sender: *4 required: - action @@ -108135,7 +108202,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *378 + dismissed_comment: *399 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108275,12 +108342,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *683 - enterprise: *676 - installation: *677 - organization: *678 - ref: *684 - repository: *679 + commit_oid: *685 + enterprise: *678 + installation: *679 + organization: *680 + ref: *686 + repository: *681 sender: *4 required: - action @@ -108537,10 +108604,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -108620,18 +108687,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *678 - pusher_type: &685 + organization: *680 + pusher_type: &687 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &686 + ref: &688 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -108641,7 +108708,7 @@ x-webhooks: enum: - tag - branch - repository: *679 + repository: *681 sender: *4 required: - ref @@ -108723,10 +108790,10 @@ x-webhooks: type: string enum: - created - definition: *233 - enterprise: *676 - installation: *677 - organization: *678 + definition: *234 + enterprise: *678 + installation: *679 + organization: *680 sender: *4 required: - action @@ -108811,9 +108878,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 sender: *4 required: - action @@ -108890,10 +108957,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *233 - enterprise: *676 - installation: *677 - organization: *678 + definition: *234 + enterprise: *678 + installation: *679 + organization: *680 sender: *4 required: - action @@ -108970,10 +109037,10 @@ x-webhooks: type: string enum: - updated - definition: *233 - enterprise: *676 - installation: *677 - organization: *678 + definition: *234 + enterprise: *678 + installation: *679 + organization: *680 sender: *4 required: - action @@ -109050,19 +109117,19 @@ x-webhooks: type: string enum: - updated - enterprise: *676 - installation: *677 - repository: *679 - organization: *678 + enterprise: *678 + installation: *679 + repository: *681 + organization: *680 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *237 + items: *238 old_property_values: type: array description: The old custom property values for the repository. - items: *237 + items: *238 required: - action - repository @@ -109138,18 +109205,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *676 - installation: *677 - organization: *678 - pusher_type: *685 - ref: *686 + enterprise: *678 + installation: *679 + organization: *680 + pusher_type: *687 + ref: *688 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *679 + repository: *681 sender: *4 required: - ref @@ -109233,11 +109300,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109321,11 +109388,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109409,11 +109476,11 @@ x-webhooks: type: string enum: - created - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109495,11 +109562,11 @@ x-webhooks: type: string enum: - dismissed - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109581,11 +109648,11 @@ x-webhooks: type: string enum: - fixed - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109668,11 +109735,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109754,11 +109821,11 @@ x-webhooks: type: string enum: - reopened - alert: *435 - installation: *677 - organization: *678 - enterprise: *676 - repository: *679 + alert: *456 + installation: *679 + organization: *680 + enterprise: *678 + repository: *681 sender: *4 required: - action @@ -109835,9 +109902,9 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - key: &687 + enterprise: *678 + installation: *679 + key: &689 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -109873,8 +109940,8 @@ x-webhooks: - verified - created_at - read_only - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -109951,11 +110018,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - key: *687 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + key: *689 + organization: *680 + repository: *681 sender: *4 required: - action @@ -110516,12 +110583,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - workflow: &691 + workflow: &693 title: Workflow type: object nullable: true @@ -111247,13 +111314,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *441 + deployment: *462 pull_requests: type: array - items: *526 - repository: *679 - organization: *678 - installation: *677 + items: *547 + repository: *681 + organization: *680 + installation: *679 sender: *4 responses: '200': @@ -111324,7 +111391,7 @@ x-webhooks: type: string enum: - approved - approver: &688 + approver: &690 type: object properties: avatar_url: @@ -111367,11 +111434,11 @@ x-webhooks: type: string comment: type: string - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - reviewers: &689 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + reviewers: &691 type: array items: type: object @@ -111450,7 +111517,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &690 + workflow_job_run: &692 type: object properties: conclusion: @@ -112181,18 +112248,18 @@ x-webhooks: type: string enum: - rejected - approver: *688 + approver: *690 comment: type: string - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - reviewers: *689 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + reviewers: *691 sender: *4 since: type: string - workflow_job_run: *690 + workflow_job_run: *692 workflow_job_runs: type: array items: @@ -112896,13 +112963,13 @@ x-webhooks: type: string enum: - requested - enterprise: *676 + enterprise: *678 environment: type: string - installation: *677 - organization: *678 - repository: *679 - requestor: &696 + installation: *679 + organization: *680 + repository: *681 + requestor: &698 title: User type: object nullable: true @@ -114801,12 +114868,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - workflow: *691 + workflow: *693 workflow_run: title: Deployment Workflow Run type: object @@ -115486,7 +115553,7 @@ x-webhooks: type: string enum: - answered - answer: &694 + answer: &696 type: object properties: author_association: @@ -115643,7 +115710,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &692 + discussion: &694 title: Discussion description: A Discussion in a repository. type: object @@ -115929,7 +115996,7 @@ x-webhooks: - id labels: type: array - items: *488 + items: *509 required: - repository_url - category @@ -115951,10 +116018,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116081,11 +116148,11 @@ x-webhooks: - from required: - category - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116168,11 +116235,11 @@ x-webhooks: type: string enum: - closed - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116254,7 +116321,7 @@ x-webhooks: type: string enum: - created - comment: &693 + comment: &695 type: object properties: author_association: @@ -116411,11 +116478,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116498,12 +116565,12 @@ x-webhooks: type: string enum: - deleted - comment: *693 - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + comment: *695 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116598,12 +116665,12 @@ x-webhooks: - from required: - body - comment: *693 - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + comment: *695 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116687,11 +116754,11 @@ x-webhooks: type: string enum: - created - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116773,11 +116840,11 @@ x-webhooks: type: string enum: - deleted - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116877,11 +116944,11 @@ x-webhooks: type: string required: - from - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -116963,10 +117030,10 @@ x-webhooks: type: string enum: - labeled - discussion: *692 - enterprise: *676 - installation: *677 - label: &695 + discussion: *694 + enterprise: *678 + installation: *679 + label: &697 title: Label type: object properties: @@ -116998,8 +117065,8 @@ x-webhooks: - color - default - description - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117082,11 +117149,11 @@ x-webhooks: type: string enum: - locked - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117168,11 +117235,11 @@ x-webhooks: type: string enum: - pinned - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117254,11 +117321,11 @@ x-webhooks: type: string enum: - reopened - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117343,16 +117410,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *692 - new_repository: *679 + new_discussion: *694 + new_repository: *681 required: - new_discussion - new_repository - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117435,10 +117502,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *692 - old_answer: *694 - organization: *678 - repository: *679 + discussion: *694 + old_answer: *696 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117520,12 +117587,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *692 - enterprise: *676 - installation: *677 - label: *695 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117608,11 +117675,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117694,11 +117761,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *692 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + discussion: *694 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117771,7 +117838,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *676 + enterprise: *678 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -118431,9 +118498,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - forkee @@ -118579,9 +118646,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pages: description: The pages that were updated. type: array @@ -118618,7 +118685,7 @@ x-webhooks: - action - sha - html_url - repository: *679 + repository: *681 sender: *4 required: - pages @@ -118694,10 +118761,10 @@ x-webhooks: type: string enum: - created - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories: &697 + organization: *680 + repositories: &699 description: An array of repository objects that the installation can access. type: array @@ -118723,8 +118790,8 @@ x-webhooks: - name - full_name - private - repository: *679 - requester: *696 + repository: *681 + requester: *698 sender: *4 required: - action @@ -118799,11 +118866,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories: *697 - repository: *679 + organization: *680 + repositories: *699 + repository: *681 requester: nullable: true sender: *4 @@ -118879,11 +118946,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories: *697 - repository: *679 + organization: *680 + repositories: *699 + repository: *681 requester: nullable: true sender: *4 @@ -118959,10 +119026,10 @@ x-webhooks: type: string enum: - added - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories_added: &698 + organization: *680 + repositories_added: &700 description: An array of repository objects, which were added to the installation. type: array @@ -119008,15 +119075,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *679 - repository_selection: &699 + repository: *681 + repository_selection: &701 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *696 + requester: *698 sender: *4 required: - action @@ -119095,10 +119162,10 @@ x-webhooks: type: string enum: - removed - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories_added: *698 + organization: *680 + repositories_added: *700 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -119125,9 +119192,9 @@ x-webhooks: - name - full_name - private - repository: *679 - repository_selection: *699 - requester: *696 + repository: *681 + repository_selection: *701 + requester: *698 sender: *4 required: - action @@ -119206,11 +119273,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories: *697 - repository: *679 + organization: *680 + repositories: *699 + repository: *681 requester: nullable: true sender: *4 @@ -119388,10 +119455,10 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 target_type: type: string @@ -119470,11 +119537,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *676 + enterprise: *678 installation: *22 - organization: *678 - repositories: *697 - repository: *679 + organization: *680 + repositories: *699 + repository: *681 requester: nullable: true sender: *4 @@ -119726,8 +119793,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -120550,7 +120617,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -120883,8 +120950,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -120964,7 +121031,7 @@ x-webhooks: type: string enum: - deleted - comment: &700 + comment: &702 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -121129,8 +121196,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -121949,7 +122016,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -122284,8 +122351,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -122365,7 +122432,7 @@ x-webhooks: type: string enum: - edited - changes: &728 + changes: &730 description: The changes to the comment. type: object properties: @@ -122377,9 +122444,9 @@ x-webhooks: type: string required: - from - comment: *700 - enterprise: *676 - installation: *677 + comment: *702 + enterprise: *678 + installation: *679 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -123201,7 +123268,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -123534,8 +123601,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -123617,10 +123684,10 @@ x-webhooks: type: string enum: - assigned - assignee: *696 - enterprise: *676 - installation: *677 - issue: &703 + assignee: *698 + enterprise: *678 + installation: *679 + issue: &705 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -124438,7 +124505,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -124539,8 +124606,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -124620,8 +124687,8 @@ x-webhooks: type: string enum: - closed - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -125444,7 +125511,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -125680,8 +125747,8 @@ x-webhooks: required: - state - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -125760,8 +125827,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -126575,7 +126642,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -126675,8 +126742,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -126755,8 +126822,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -127592,7 +127659,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -127671,7 +127738,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &701 + milestone: &703 title: Milestone description: A collection of related issues and pull requests. type: object @@ -127809,8 +127876,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -127909,8 +127976,8 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128725,7 +128792,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -128829,9 +128896,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *695 - organization: *678 - repository: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -128911,8 +128978,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129726,7 +129793,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -129830,9 +129897,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *695 - organization: *678 - repository: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -129912,8 +129979,8 @@ x-webhooks: type: string enum: - locked - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -130751,7 +130818,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -130832,8 +130899,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -130912,8 +130979,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131748,7 +131815,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -131826,9 +131893,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *701 - organization: *678 - repository: *679 + milestone: *703 + organization: *680 + repository: *681 sender: *4 required: - action @@ -132802,7 +132869,7 @@ x-webhooks: required: - login - id - type: *195 + type: *196 required: - id - number @@ -133271,8 +133338,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -134090,7 +134157,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -134190,8 +134257,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -134271,9 +134338,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *676 - installation: *677 - issue: &702 + enterprise: *678 + installation: *679 + issue: &704 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -135085,7 +135152,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -135185,8 +135252,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -135265,8 +135332,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -136183,9 +136250,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *195 - organization: *678 - repository: *679 + type: *196 + organization: *680 + repository: *681 sender: *4 required: - action @@ -137080,7 +137147,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -137648,11 +137715,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *676 - installation: *677 - issue: *702 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *704 + organization: *680 + repository: *681 sender: *4 required: - action @@ -137732,12 +137799,12 @@ x-webhooks: type: string enum: - typed - enterprise: *676 - installation: *677 - issue: *703 - type: *195 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *705 + type: *196 + organization: *680 + repository: *681 sender: *4 required: - action @@ -137818,7 +137885,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &731 + assignee: &733 title: User type: object nullable: true @@ -137888,11 +137955,11 @@ x-webhooks: required: - login - id - enterprise: *676 - installation: *677 - issue: *703 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *705 + organization: *680 + repository: *681 sender: *4 required: - action @@ -137971,12 +138038,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *676 - installation: *677 - issue: *703 - label: *695 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *705 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -138056,8 +138123,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -138896,7 +138963,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -138974,8 +139041,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139055,11 +139122,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *676 - installation: *677 - issue: *702 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *704 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139138,12 +139205,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *676 - installation: *677 - issue: *703 - type: *195 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + issue: *705 + type: *196 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139223,11 +139290,11 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - label: *695 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139305,11 +139372,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - label: *695 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139419,11 +139486,11 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - label: *695 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + label: *697 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139505,9 +139572,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *676 - installation: *677 - marketplace_purchase: &704 + enterprise: *678 + installation: *679 + marketplace_purchase: &706 title: Marketplace Purchase type: object required: @@ -139590,8 +139657,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *678 - previous_marketplace_purchase: &705 + organization: *680 + previous_marketplace_purchase: &707 title: Marketplace Purchase type: object properties: @@ -139671,7 +139738,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -139751,10 +139818,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *676 - installation: *677 - marketplace_purchase: *704 - organization: *678 + enterprise: *678 + installation: *679 + marketplace_purchase: *706 + organization: *680 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -139837,7 +139904,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -139919,10 +139986,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *676 - installation: *677 - marketplace_purchase: *704 - organization: *678 + enterprise: *678 + installation: *679 + marketplace_purchase: *706 + organization: *680 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -140004,7 +140071,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -140085,8 +140152,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 marketplace_purchase: title: Marketplace Purchase type: object @@ -140168,9 +140235,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *678 - previous_marketplace_purchase: *705 - repository: *679 + organization: *680 + previous_marketplace_purchase: *707 + repository: *681 sender: *4 required: - action @@ -140250,12 +140317,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *676 - installation: *677 - marketplace_purchase: *704 - organization: *678 - previous_marketplace_purchase: *705 - repository: *679 + enterprise: *678 + installation: *679 + marketplace_purchase: *706 + organization: *680 + previous_marketplace_purchase: *707 + repository: *681 sender: *4 required: - action @@ -140357,11 +140424,11 @@ x-webhooks: type: string required: - to - enterprise: *676 - installation: *677 - member: *696 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + member: *698 + organization: *680 + repository: *681 sender: *4 required: - action @@ -140461,11 +140528,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *676 - installation: *677 - member: *696 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + member: *698 + organization: *680 + repository: *681 sender: *4 required: - action @@ -140544,11 +140611,11 @@ x-webhooks: type: string enum: - removed - enterprise: *676 - installation: *677 - member: *696 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + member: *698 + organization: *680 + repository: *681 sender: *4 required: - action @@ -140626,11 +140693,11 @@ x-webhooks: type: string enum: - added - enterprise: *676 - installation: *677 - member: *696 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + member: *698 + organization: *680 + repository: *681 scope: description: The scope of the membership. Currently, can only be `team`. @@ -140706,7 +140773,7 @@ x-webhooks: required: - login - id - team: &706 + team: &708 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -140896,11 +140963,11 @@ x-webhooks: type: string enum: - removed - enterprise: *676 - installation: *677 - member: *696 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + member: *698 + organization: *680 + repository: *681 scope: description: The scope of the membership. Currently, can only be `team`. @@ -140977,7 +141044,7 @@ x-webhooks: required: - login - id - team: *706 + team: *708 required: - action - scope @@ -141059,8 +141126,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *677 - merge_group: &708 + installation: *679 + merge_group: &710 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -141079,15 +141146,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *707 + head_commit: *709 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141173,10 +141240,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *677 - merge_group: *708 - organization: *678 - repository: *679 + installation: *679 + merge_group: *710 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141249,7 +141316,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 + enterprise: *678 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -141358,16 +141425,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *677 - organization: *678 + installation: *679 + organization: *680 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: *709 - required: *710 + properties: *711 + required: *712 nullable: true sender: *4 required: @@ -141448,11 +141515,11 @@ x-webhooks: type: string enum: - closed - enterprise: *676 - installation: *677 - milestone: *701 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + milestone: *703 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141531,9 +141598,9 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - milestone: &711 + enterprise: *678 + installation: *679 + milestone: &713 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141670,8 +141737,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141750,11 +141817,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - milestone: *701 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + milestone: *703 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141864,11 +141931,11 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - milestone: *701 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + milestone: *703 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141948,11 +142015,11 @@ x-webhooks: type: string enum: - opened - enterprise: *676 - installation: *677 - milestone: *711 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + milestone: *713 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142031,11 +142098,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *696 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + blocked_user: *698 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142114,11 +142181,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *696 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + blocked_user: *698 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142197,9 +142264,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - membership: &712 + enterprise: *678 + installation: *679 + membership: &714 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -142306,8 +142373,8 @@ x-webhooks: - role - organization_url - user - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142385,11 +142452,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *676 - installation: *677 - membership: *712 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + membership: *714 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142468,8 +142535,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -142585,10 +142652,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 - user: *696 + user: *698 required: - action - invitation @@ -142666,11 +142733,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *676 - installation: *677 - membership: *712 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + membership: *714 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142757,11 +142824,11 @@ x-webhooks: properties: from: type: string - enterprise: *676 - installation: *677 - membership: *712 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + membership: *714 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142837,9 +142904,9 @@ x-webhooks: type: string enum: - published - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 package: description: Information about the package. type: object @@ -143338,7 +143405,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &713 + items: &715 title: Ruby Gems metadata type: object properties: @@ -143433,7 +143500,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -143509,9 +143576,9 @@ x-webhooks: type: string enum: - updated - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 package: description: Information about the package. type: object @@ -143864,7 +143931,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *713 + items: *715 source_url: type: string format: uri @@ -143934,7 +144001,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -144111,12 +144178,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *676 + enterprise: *678 id: type: integer - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - id @@ -144193,7 +144260,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &714 + personal_access_token_request: &716 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -144339,10 +144406,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *676 - organization: *678 + enterprise: *678 + organization: *680 sender: *4 - installation: *677 + installation: *679 required: - action - personal_access_token_request @@ -144419,11 +144486,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *714 - enterprise: *676 - organization: *678 + personal_access_token_request: *716 + enterprise: *678 + organization: *680 sender: *4 - installation: *677 + installation: *679 required: - action - personal_access_token_request @@ -144499,11 +144566,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *714 - enterprise: *676 - organization: *678 + personal_access_token_request: *716 + enterprise: *678 + organization: *680 sender: *4 - installation: *677 + installation: *679 required: - action - personal_access_token_request @@ -144578,11 +144645,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *714 - organization: *678 - enterprise: *676 + personal_access_token_request: *716 + organization: *680 + enterprise: *678 sender: *4 - installation: *677 + installation: *679 required: - action - personal_access_token_request @@ -144687,7 +144754,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *715 + last_response: *717 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -144719,8 +144786,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 zen: description: Random string of GitHub zen. @@ -144965,10 +145032,10 @@ x-webhooks: - from required: - note - enterprise: *676 - installation: *677 - organization: *678 - project_card: &716 + enterprise: *678 + installation: *679 + organization: *680 + project_card: &718 title: Project Card type: object properties: @@ -145087,7 +145154,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -145168,11 +145235,11 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - project_card: *716 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project_card: *718 + repository: *681 sender: *4 required: - action @@ -145252,9 +145319,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 project_card: title: Project Card type: object @@ -145382,8 +145449,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: *709 - required: *710 + properties: *711 + required: *712 nullable: true sender: *4 required: @@ -145477,11 +145544,11 @@ x-webhooks: - from required: - note - enterprise: *676 - installation: *677 - organization: *678 - project_card: *716 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project_card: *718 + repository: *681 sender: *4 required: - action @@ -145575,9 +145642,9 @@ x-webhooks: - from required: - column_id - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 project_card: allOf: - title: Project Card @@ -145767,7 +145834,7 @@ x-webhooks: type: string required: - after_id - repository: *679 + repository: *681 sender: *4 required: - action @@ -145847,10 +145914,10 @@ x-webhooks: type: string enum: - closed - enterprise: *676 - installation: *677 - organization: *678 - project: &718 + enterprise: *678 + installation: *679 + organization: *680 + project: &720 title: Project type: object properties: @@ -145974,7 +146041,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -146054,10 +146121,10 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - project_column: &717 + enterprise: *678 + installation: *679 + organization: *680 + project_column: &719 title: Project Column type: object properties: @@ -146096,7 +146163,7 @@ x-webhooks: - name - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -146175,18 +146242,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - project_column: *717 + enterprise: *678 + installation: *679 + organization: *680 + project_column: *719 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: *709 - required: *710 + properties: *711 + required: *712 nullable: true sender: *4 required: @@ -146276,11 +146343,11 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - organization: *678 - project_column: *717 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project_column: *719 + repository: *681 sender: *4 required: - action @@ -146360,11 +146427,11 @@ x-webhooks: type: string enum: - moved - enterprise: *676 - installation: *677 - organization: *678 - project_column: *717 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project_column: *719 + repository: *681 sender: *4 required: - action @@ -146444,11 +146511,11 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - project: *718 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project: *720 + repository: *681 sender: *4 required: - action @@ -146528,18 +146595,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - project: *718 + enterprise: *678 + installation: *679 + organization: *680 + project: *720 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: *709 - required: *710 + properties: *711 + required: *712 nullable: true sender: *4 required: @@ -146641,11 +146708,11 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - organization: *678 - project: *718 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project: *720 + repository: *681 sender: *4 required: - action @@ -146724,11 +146791,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *676 - installation: *677 - organization: *678 - project: *718 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + project: *720 + repository: *681 sender: *4 required: - action @@ -146809,9 +146876,9 @@ x-webhooks: type: string enum: - closed - installation: *677 - organization: *678 - projects_v2: &719 + installation: *679 + organization: *680 + projects_v2: &721 title: Projects v2 Project description: A projects v2 project type: object @@ -146954,9 +147021,9 @@ x-webhooks: type: string enum: - created - installation: *677 - organization: *678 - projects_v2: *719 + installation: *679 + organization: *680 + projects_v2: *721 sender: *4 required: - action @@ -147037,9 +147104,9 @@ x-webhooks: type: string enum: - deleted - installation: *677 - organization: *678 - projects_v2: *719 + installation: *679 + organization: *680 + projects_v2: *721 sender: *4 required: - action @@ -147156,9 +147223,9 @@ x-webhooks: type: string to: type: string - installation: *677 - organization: *678 - projects_v2: *719 + installation: *679 + organization: *680 + projects_v2: *721 sender: *4 required: - action @@ -147241,7 +147308,7 @@ x-webhooks: type: string enum: - archived - changes: &723 + changes: &725 type: object properties: archived_at: @@ -147255,9 +147322,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *677 - organization: *678 - projects_v2_item: &720 + installation: *679 + organization: *680 + projects_v2_item: &722 title: Projects v2 Item description: An item belonging to a project type: object @@ -147391,9 +147458,9 @@ x-webhooks: nullable: true to: type: string - installation: *677 - organization: *678 - projects_v2_item: *720 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147475,9 +147542,9 @@ x-webhooks: type: string enum: - created - installation: *677 - organization: *678 - projects_v2_item: *720 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147558,9 +147625,9 @@ x-webhooks: type: string enum: - deleted - installation: *677 - organization: *678 - projects_v2_item: *720 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147666,7 +147733,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &721 + - &723 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -147684,7 +147751,7 @@ x-webhooks: required: - id - name - - &722 + - &724 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -147707,8 +147774,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *721 - - *722 + - *723 + - *724 required: - field_value - type: object @@ -147724,9 +147791,9 @@ x-webhooks: nullable: true required: - body - installation: *677 - organization: *678 - projects_v2_item: *720 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147821,9 +147888,9 @@ x-webhooks: to: type: string nullable: true - installation: *677 - organization: *678 - projects_v2_item: *720 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147906,10 +147973,10 @@ x-webhooks: type: string enum: - restored - changes: *723 - installation: *677 - organization: *678 - projects_v2_item: *720 + changes: *725 + installation: *679 + organization: *680 + projects_v2_item: *722 sender: *4 required: - action @@ -147991,9 +148058,9 @@ x-webhooks: type: string enum: - reopened - installation: *677 - organization: *678 - projects_v2: *719 + installation: *679 + organization: *680 + projects_v2: *721 sender: *4 required: - action @@ -148074,9 +148141,9 @@ x-webhooks: type: string enum: - created - installation: *677 - organization: *678 - projects_v2_status_update: &724 + installation: *679 + organization: *680 + projects_v2_status_update: &726 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -148203,9 +148270,9 @@ x-webhooks: type: string enum: - deleted - installation: *677 - organization: *678 - projects_v2_status_update: *724 + installation: *679 + organization: *680 + projects_v2_status_update: *726 sender: *4 required: - action @@ -148341,9 +148408,9 @@ x-webhooks: type: string format: date nullable: true - installation: *677 - organization: *678 - projects_v2_status_update: *724 + installation: *679 + organization: *680 + projects_v2_status_update: *726 sender: *4 required: - action @@ -148414,10 +148481,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - repository @@ -148494,13 +148561,13 @@ x-webhooks: type: string enum: - assigned - assignee: *696 - enterprise: *676 - installation: *677 - number: &725 + assignee: *698 + enterprise: *678 + installation: *679 + number: &727 description: The pull request number. type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -150783,7 +150850,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -150865,11 +150932,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -153147,7 +153214,7 @@ x-webhooks: - draft reason: type: string - repository: *679 + repository: *681 sender: *4 required: - action @@ -153229,11 +153296,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -155511,7 +155578,7 @@ x-webhooks: - draft reason: type: string - repository: *679 + repository: *681 sender: *4 required: - action @@ -155593,13 +155660,13 @@ x-webhooks: type: string enum: - closed - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: &726 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: &728 allOf: - - *526 + - *547 - type: object properties: allow_auto_merge: @@ -155661,7 +155728,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *679 + repository: *681 sender: *4 required: - action @@ -155742,12 +155809,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: *726 - repository: *679 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: *728 + repository: *681 sender: *4 required: - action @@ -155827,11 +155894,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *676 - milestone: *509 - number: *725 - organization: *678 - pull_request: &727 + enterprise: *678 + milestone: *530 + number: *727 + organization: *680 + pull_request: &729 title: Pull Request type: object properties: @@ -158094,7 +158161,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -158173,11 +158240,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -160459,7 +160526,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *679 + repository: *681 sender: *4 required: - action @@ -160583,12 +160650,12 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: *726 - repository: *679 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: *728 + repository: *681 sender: *4 required: - action @@ -160668,11 +160735,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -162939,7 +163006,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -163019,11 +163086,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *676 - installation: *677 - label: *695 - number: *725 - organization: *678 + enterprise: *678 + installation: *679 + label: *697 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -165305,7 +165372,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -165386,10 +165453,10 @@ x-webhooks: type: string enum: - locked - enterprise: *676 - installation: *677 - number: *725 - organization: *678 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -167669,7 +167736,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -167749,12 +167816,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *676 - milestone: *509 - number: *725 - organization: *678 - pull_request: *727 - repository: *679 + enterprise: *678 + milestone: *530 + number: *727 + organization: *680 + pull_request: *729 + repository: *681 sender: *4 required: - action @@ -167833,12 +167900,12 @@ x-webhooks: type: string enum: - opened - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: *726 - repository: *679 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: *728 + repository: *681 sender: *4 required: - action @@ -167919,12 +167986,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: *726 - repository: *679 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: *728 + repository: *681 sender: *4 required: - action @@ -168004,12 +168071,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *676 - installation: *677 - number: *725 - organization: *678 - pull_request: *726 - repository: *679 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 + pull_request: *728 + repository: *681 sender: *4 required: - action @@ -168375,9 +168442,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: type: object properties: @@ -170547,7 +170614,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -170627,7 +170694,7 @@ x-webhooks: type: string enum: - deleted - comment: &729 + comment: &731 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -170912,9 +170979,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: type: object properties: @@ -173072,7 +173139,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -173152,11 +173219,11 @@ x-webhooks: type: string enum: - edited - changes: *728 - comment: *729 - enterprise: *676 - installation: *677 - organization: *678 + changes: *730 + comment: *731 + enterprise: *678 + installation: *679 + organization: *680 pull_request: type: object properties: @@ -175317,7 +175384,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -175398,9 +175465,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: title: Simple Pull Request type: object @@ -177573,7 +177640,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 + repository: *681 review: description: The review that was affected. type: object @@ -177816,9 +177883,9 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: title: Simple Pull Request type: object @@ -179872,8 +179939,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 - review: &730 + repository: *681 + review: &732 description: The review that was affected. type: object properties: @@ -180102,12 +180169,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: description: The pull request number. type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -182390,7 +182457,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_reviewer: title: User type: object @@ -182474,12 +182541,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: description: The pull request number. type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -184769,7 +184836,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_team: title: Team description: Groups of organization members that gives permissions @@ -184961,12 +185028,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: description: The pull request number. type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -187251,7 +187318,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_reviewer: title: User type: object @@ -187336,12 +187403,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *676 - installation: *677 + enterprise: *678 + installation: *679 number: description: The pull request number. type: integer - organization: *678 + organization: *680 pull_request: title: Pull Request type: object @@ -189617,7 +189684,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_team: title: Team description: Groups of organization members that gives permissions @@ -189798,9 +189865,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: title: Simple Pull Request type: object @@ -191975,8 +192042,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 - review: *730 + repository: *681 + review: *732 sender: *4 required: - action @@ -192056,9 +192123,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: title: Simple Pull Request type: object @@ -194128,7 +194195,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 + repository: *681 sender: *4 thread: type: object @@ -194511,9 +194578,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 pull_request: title: Simple Pull Request type: object @@ -196569,7 +196636,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 + repository: *681 sender: *4 thread: type: object @@ -196955,10 +197022,10 @@ x-webhooks: type: string before: type: string - enterprise: *676 - installation: *677 - number: *725 - organization: *678 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -199229,7 +199296,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -199311,11 +199378,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *731 - enterprise: *676 - installation: *677 - number: *725 - organization: *678 + assignee: *733 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -201598,7 +201665,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -201677,11 +201744,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *676 - installation: *677 - label: *695 - number: *725 - organization: *678 + enterprise: *678 + installation: *679 + label: *697 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -203954,7 +204021,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -204035,10 +204102,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *676 - installation: *677 - number: *725 - organization: *678 + enterprise: *678 + installation: *679 + number: *727 + organization: *680 pull_request: title: Pull Request type: object @@ -206303,7 +206370,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -206503,7 +206570,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *676 + enterprise: *678 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -206595,8 +206662,8 @@ x-webhooks: - url - author - committer - installation: *677 - organization: *678 + installation: *679 + organization: *680 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -207171,9 +207238,9 @@ x-webhooks: type: string enum: - published - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 registry_package: type: object properties: @@ -207619,7 +207686,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *713 + items: *715 summary: type: string tag_name: @@ -207673,7 +207740,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -207751,9 +207818,9 @@ x-webhooks: type: string enum: - updated - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 registry_package: type: object properties: @@ -208061,7 +208128,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *713 + items: *715 summary: type: string tag_name: @@ -208110,7 +208177,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -208187,10 +208254,10 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - release: &732 + enterprise: *678 + installation: *679 + organization: *680 + release: &734 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -208503,7 +208570,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *679 + repository: *681 sender: *4 required: - action @@ -208580,11 +208647,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - release: *732 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + release: *734 + repository: *681 sender: *4 required: - action @@ -208701,11 +208768,11 @@ x-webhooks: type: boolean required: - to - enterprise: *676 - installation: *677 - organization: *678 - release: *732 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + release: *734 + repository: *681 sender: *4 required: - action @@ -208783,9 +208850,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -209102,7 +209169,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *679 + repository: *681 sender: *4 required: - action @@ -209178,10 +209245,10 @@ x-webhooks: type: string enum: - published - enterprise: *676 - installation: *677 - organization: *678 - release: &733 + enterprise: *678 + installation: *679 + organization: *680 + release: &735 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -209495,7 +209562,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *679 + repository: *681 sender: *4 required: - action @@ -209571,11 +209638,11 @@ x-webhooks: type: string enum: - released - enterprise: *676 - installation: *677 - organization: *678 - release: *732 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + release: *734 + repository: *681 sender: *4 required: - action @@ -209651,11 +209718,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *676 - installation: *677 - organization: *678 - release: *733 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + release: *735 + repository: *681 sender: *4 required: - action @@ -209731,11 +209798,11 @@ x-webhooks: type: string enum: - published - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - repository_advisory: *600 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + repository_advisory: *602 sender: *4 required: - action @@ -209811,11 +209878,11 @@ x-webhooks: type: string enum: - reported - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - repository_advisory: *600 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + repository_advisory: *602 sender: *4 required: - action @@ -209891,10 +209958,10 @@ x-webhooks: type: string enum: - archived - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -209971,10 +210038,10 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210052,10 +210119,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210139,10 +210206,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210254,10 +210321,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210329,10 +210396,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 status: type: string @@ -210413,10 +210480,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210493,10 +210560,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210590,10 +210657,10 @@ x-webhooks: - name required: - repository - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -210673,11 +210740,11 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - repository_ruleset: *247 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + repository_ruleset: *267 sender: *4 required: - action @@ -210755,11 +210822,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - repository_ruleset: *247 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + repository_ruleset: *267 sender: *4 required: - action @@ -210837,11 +210904,11 @@ x-webhooks: type: string enum: - edited - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - repository_ruleset: *247 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + repository_ruleset: *267 changes: type: object properties: @@ -210860,16 +210927,16 @@ x-webhooks: properties: added: type: array - items: *241 + items: *242 deleted: type: array - items: *241 + items: *242 updated: type: array items: type: object properties: - condition: *241 + condition: *242 changes: type: object properties: @@ -210902,16 +210969,16 @@ x-webhooks: properties: added: type: array - items: *246 + items: *567 deleted: type: array - items: *246 + items: *567 updated: type: array items: type: object properties: - rule: *246 + rule: *567 changes: type: object properties: @@ -211145,10 +211212,10 @@ x-webhooks: - from required: - owner - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -211226,10 +211293,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -211307,7 +211374,7 @@ x-webhooks: type: string enum: - create - alert: &734 + alert: &736 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -211428,10 +211495,10 @@ x-webhooks: type: string enum: - open - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -211637,10 +211704,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -211718,11 +211785,11 @@ x-webhooks: type: string enum: - reopen - alert: *734 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + alert: *736 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -211921,10 +211988,10 @@ x-webhooks: enum: - fixed - open - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212002,7 +212069,7 @@ x-webhooks: type: string enum: - created - alert: &735 + alert: &737 type: object properties: number: *54 @@ -212113,10 +212180,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212197,11 +212264,11 @@ x-webhooks: type: string enum: - created - alert: *735 - installation: *677 - location: *736 - organization: *678 - repository: *679 + alert: *737 + installation: *679 + location: *738 + organization: *680 + repository: *681 sender: *4 required: - location @@ -212439,11 +212506,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *735 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + alert: *737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212521,11 +212588,11 @@ x-webhooks: type: string enum: - reopened - alert: *735 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + alert: *737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212603,11 +212670,11 @@ x-webhooks: type: string enum: - resolved - alert: *735 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + alert: *737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212685,11 +212752,11 @@ x-webhooks: type: string enum: - validated - alert: *735 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + alert: *737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -212815,10 +212882,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *679 - enterprise: *676 - installation: *677 - organization: *678 + repository: *681 + enterprise: *678 + installation: *679 + organization: *680 sender: *4 required: - action @@ -212896,11 +212963,11 @@ x-webhooks: type: string enum: - published - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - security_advisory: &737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + security_advisory: &739 description: The details of the security advisory, including summary, description, and severity. type: object @@ -213083,11 +213150,11 @@ x-webhooks: type: string enum: - updated - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 - security_advisory: *737 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 + security_advisory: *739 sender: *4 required: - action @@ -213160,10 +213227,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -213347,11 +213414,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *240 - enterprise: *676 - installation: *677 - organization: *678 - repository: *294 + security_and_analysis: *241 + enterprise: *678 + installation: *679 + organization: *680 + repository: *315 sender: *4 required: - changes @@ -213429,12 +213496,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: &738 + sponsorship: &740 type: object properties: created_at: @@ -213735,12 +213802,12 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: *738 + sponsorship: *740 required: - action - sponsorship @@ -213828,12 +213895,12 @@ x-webhooks: type: string required: - from - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: *738 + sponsorship: *740 required: - action - changes @@ -213910,17 +213977,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &739 + effective_date: &741 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: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: *738 + sponsorship: *740 required: - action - sponsorship @@ -213994,7 +214061,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &740 + changes: &742 type: object properties: tier: @@ -214038,13 +214105,13 @@ x-webhooks: - from required: - tier - effective_date: *739 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + effective_date: *741 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: *738 + sponsorship: *740 required: - action - changes @@ -214121,13 +214188,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *740 - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + changes: *742 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - sponsorship: *738 + sponsorship: *740 required: - action - changes @@ -214201,10 +214268,10 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -214287,10 +214354,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -214710,15 +214777,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *676 + enterprise: *678 id: description: The unique identifier of the status. type: integer - installation: *677 + installation: *679 name: type: string - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 sha: description: The Commit SHA. @@ -214833,9 +214900,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -214925,9 +214992,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *77 - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -215017,9 +215084,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -215109,9 +215176,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *77 - installation: *677 - organization: *678 - repository: *679 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -215188,12 +215255,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - team: &741 + team: &743 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -215383,9 +215450,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 repository: title: Repository description: A git repository @@ -215843,7 +215910,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -215919,9 +215986,9 @@ x-webhooks: type: string enum: - created - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 repository: title: Repository description: A git repository @@ -216379,7 +216446,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -216456,9 +216523,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 repository: title: Repository description: A git repository @@ -216916,7 +216983,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -217060,9 +217127,9 @@ x-webhooks: - from required: - permissions - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 repository: title: Repository description: A git repository @@ -217520,7 +217587,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - changes @@ -217598,9 +217665,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *676 - installation: *677 - organization: *678 + enterprise: *678 + installation: *679 + organization: *680 repository: title: Repository description: A git repository @@ -218058,7 +218125,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -218134,10 +218201,10 @@ x-webhooks: type: string enum: - started - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -218210,16 +218277,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *676 + enterprise: *678 inputs: type: object nullable: true additionalProperties: true - installation: *677 - organization: *678 + installation: *679 + organization: *680 ref: type: string - repository: *679 + repository: *681 sender: *4 workflow: type: string @@ -218301,10 +218368,10 @@ x-webhooks: type: string enum: - completed - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 workflow_job: allOf: @@ -218541,7 +218608,7 @@ x-webhooks: type: string required: - conclusion - deployment: *441 + deployment: *462 required: - action - repository @@ -218620,10 +218687,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 workflow_job: allOf: @@ -218883,7 +218950,7 @@ x-webhooks: required: - status - steps - deployment: *441 + deployment: *462 required: - action - repository @@ -218962,10 +219029,10 @@ x-webhooks: type: string enum: - queued - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 workflow_job: type: object @@ -219100,7 +219167,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *441 + deployment: *462 required: - action - repository @@ -219179,10 +219246,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 workflow_job: type: object @@ -219318,7 +219385,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *441 + deployment: *462 required: - action - repository @@ -219398,12 +219465,12 @@ x-webhooks: type: string enum: - completed - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - workflow: *691 + workflow: *693 workflow_run: title: Workflow Run type: object @@ -220402,12 +220469,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - workflow: *691 + workflow: *693 workflow_run: title: Workflow Run type: object @@ -221391,12 +221458,12 @@ x-webhooks: type: string enum: - requested - enterprise: *676 - installation: *677 - organization: *678 - repository: *679 + enterprise: *678 + installation: *679 + organization: *680 + repository: *681 sender: *4 - workflow: *691 + workflow: *693 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 149b770f81..d4d8d2d601 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -32256,7 +32256,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -32667,6 +32674,18 @@ ], "default": "disabled" }, + "code_scanning_options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -32907,7 +32926,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -33363,7 +33389,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -33562,6 +33595,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -33604,6 +33640,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -33752,7 +33791,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -34363,7 +34409,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -35174,7 +35227,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -35372,6 +35432,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -43343,83 +43406,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -47516,83 +47502,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -104635,7 +104544,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -105053,6 +104969,18 @@ ], "default": "disabled" }, + "code_scanning_options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -105333,7 +105261,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -105526,6 +105461,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -105681,7 +105619,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -105880,6 +105825,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -105922,6 +105870,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -106333,7 +106284,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -106526,6 +106484,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -106986,7 +106947,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -107179,6 +107147,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "disabled", "secret_scanning_push_protection": "disabled", @@ -107660,7 +107631,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -107858,6 +107836,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -158734,7 +158715,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -158937,7 +158923,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -159042,7 +159033,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -159377,7 +159373,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -159513,7 +159514,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -169428,83 +169434,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -173957,83 +173886,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -277453,7 +277305,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -381391,7 +381250,7 @@ "/repos/{owner}/{repo}/issues/{issue_number}/sub_issues": { "get": { "summary": "List sub-issues", - "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\n\n- **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", "tags": [ "issues" ], diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index c8df19fcc2..50f97b29f6 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -859,7 +859,7 @@ paths: - subscriptions_url - type - url - type: &351 + type: &373 type: string description: The type of credit the user is receiving. enum: @@ -992,7 +992,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &188 + schema: &208 title: Validation Error Simple description: Validation Error Simple type: object @@ -1025,7 +1025,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: - - &700 + - &703 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1143,7 +1143,7 @@ paths: GitHub. type: object nullable: true - properties: &145 + properties: &165 id: description: Unique identifier of the GitHub app example: 37 @@ -1276,7 +1276,7 @@ paths: about itself. example: 5 type: integer - required: &146 + required: &166 - id - node_id - owner @@ -1581,7 +1581,7 @@ paths: schema: type: integer default: 30 - - &273 + - &294 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1597,7 +1597,7 @@ paths: application/json: schema: type: array - items: &274 + items: &295 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1677,7 +1677,7 @@ paths: - installation_id - repository_id examples: - default: &275 + default: &296 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1709,7 +1709,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &710 + schema: &713 title: Scim Error description: Scim Error type: object @@ -1736,7 +1736,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &187 + schema: &207 title: Validation Error description: Validation Error type: object @@ -1805,7 +1805,7 @@ paths: description: Response content: application/json: - schema: &276 + schema: &297 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1919,7 +1919,7 @@ paths: - request - response examples: - default: &277 + default: &298 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2120,7 +2120,7 @@ paths: parameters: - *17 - *19 - - &150 + - &170 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2852,7 +2852,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &332 + properties: &353 id: description: Unique identifier of the repository example: 42 @@ -2872,7 +2872,7 @@ paths: title: License Simple description: License Simple type: object - properties: &161 + properties: &181 key: type: string example: mit @@ -2894,7 +2894,7 @@ paths: html_url: type: string format: uri - required: &162 + required: &182 - key - name - url @@ -3290,7 +3290,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &333 + required: &354 - archive_url - assignees_url - blobs_url @@ -7363,7 +7363,7 @@ paths: description: Response content: application/json: - schema: &189 + schema: &209 type: object properties: total_active_caches_count: @@ -7378,7 +7378,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &190 + default: &210 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -7562,7 +7562,7 @@ paths: - public_ip_enabled - platform examples: - default: &191 + default: &211 value: total_count: 2 runners: @@ -7848,7 +7848,7 @@ paths: description: Response content: application/json: - schema: &192 + schema: &212 type: object properties: public_ips: @@ -7873,7 +7873,7 @@ paths: required: - public_ips examples: - default: &193 + default: &213 value: public_ips: current_usage: 17 @@ -7913,7 +7913,7 @@ paths: type: array items: *45 examples: - default: &194 + default: &214 value: id: 4-core cpu_cores: 4 @@ -8170,7 +8170,7 @@ paths: - all - local_only - selected - selected_actions_url: &197 + selected_actions_url: &217 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -8538,7 +8538,7 @@ paths: description: Success response content: application/json: - schema: &200 + schema: &220 type: object properties: default_workflow_permissions: &53 @@ -8586,7 +8586,7 @@ paths: required: true content: application/json: - schema: &201 + schema: &221 type: object properties: default_workflow_permissions: *53 @@ -9422,7 +9422,7 @@ paths: application/json: schema: type: array - items: &205 + items: &225 title: Runner Application description: Runner Application type: object @@ -9447,7 +9447,7 @@ paths: - download_url - filename examples: - default: &206 + default: &226 value: - os: osx architecture: x64 @@ -9531,7 +9531,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &207 + '201': &227 description: Response content: application/json: @@ -9646,7 +9646,7 @@ paths: - token - expires_at examples: - default: &208 + default: &228 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -9686,7 +9686,7 @@ paths: application/json: schema: *65 examples: - default: &209 + default: &229 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -9718,7 +9718,7 @@ paths: application/json: schema: *62 examples: - default: &210 + default: &230 value: id: 23 name: MBP @@ -9934,7 +9934,7 @@ paths: - *41 - *61 responses: - '200': &211 + '200': &231 description: Response content: application/json: @@ -9990,7 +9990,7 @@ paths: parameters: - *41 - *61 - - &212 + - &232 name: name description: The name of a self-hosted runner's custom label. in: path @@ -10081,7 +10081,7 @@ paths: required: true content: application/json: - schema: &219 + schema: &239 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -10722,7 +10722,7 @@ paths: required: false schema: type: string - - &220 + - &240 name: include description: |- The event types to include: @@ -10740,7 +10740,7 @@ paths: - web - git - all - - &221 + - &241 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. @@ -10748,7 +10748,7 @@ paths: required: false schema: type: string - - &222 + - &242 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. @@ -10756,7 +10756,7 @@ paths: required: false schema: type: string - - &223 + - &243 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -10778,7 +10778,7 @@ paths: application/json: schema: type: array - items: &224 + items: &244 type: object properties: "@timestamp": @@ -10900,7 +10900,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &225 + default: &245 value: - "@timestamp": 1606929874512 action: team.add_member @@ -11501,7 +11501,7 @@ paths: in: query schema: type: string - - &227 + - &247 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -11509,7 +11509,7 @@ paths: required: false schema: type: string - - &228 + - &248 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -11517,7 +11517,7 @@ paths: required: false schema: type: string - - &229 + - &249 name: time_period description: |- The time period to filter by. @@ -11533,7 +11533,7 @@ paths: - week - month default: day - - &230 + - &250 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -11560,7 +11560,7 @@ paths: application/json: schema: type: array - items: &231 + items: &251 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -11677,7 +11677,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: &234 + items: &254 title: Bypass response description: A response made by a delegated bypasser to a bypass request. @@ -11721,7 +11721,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &232 + default: &252 value: - id: 21 number: 42 @@ -11808,7 +11808,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &239 + - &259 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -11818,7 +11818,7 @@ paths: schema: &92 type: string description: The name of the tool used to generate the code scanning analysis. - - &240 + - &260 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -11841,7 +11841,7 @@ paths: be returned. in: query required: false - schema: &241 + schema: &261 type: string description: State of a code scanning alert. enum: @@ -11866,7 +11866,7 @@ paths: application/json: schema: type: array - items: &242 + items: &262 type: object properties: number: &103 @@ -11895,7 +11895,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &468 + instances_url: &490 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -11930,7 +11930,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &469 + dismissed_reason: &491 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -11939,13 +11939,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &470 + dismissed_comment: &492 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &471 + rule: &493 type: object properties: id: @@ -11998,7 +11998,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &472 + tool: &494 type: object properties: name: *92 @@ -12008,15 +12008,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *93 - most_recent_instance: &473 + most_recent_instance: &495 type: object properties: - ref: &466 + ref: &488 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &483 + analysis_key: &505 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -12027,7 +12027,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &484 + category: &506 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -12076,7 +12076,7 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: &177 + properties: &197 id: type: integer format: int64 @@ -12303,7 +12303,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &178 + required: &198 - archive_url - assignees_url - blobs_url @@ -12372,7 +12372,7 @@ paths: - most_recent_instance - repository examples: - default: &243 + default: &263 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -12603,7 +12603,7 @@ paths: headers: Link: *40 '404': *6 - '503': &137 + '503': &157 description: Service unavailable content: application/json: @@ -12725,6 +12725,11 @@ paths: type: object description: Feature options for code scanning nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default @@ -13020,6 +13025,15 @@ paths: - disabled - not_set default: disabled + code_scanning_options: &264 + type: object + description: Security Configuration feature options for code scanning + nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -13205,7 +13219,7 @@ paths: description: Response content: application/json: - schema: &245 + schema: &266 type: array description: A list of default code security configurations items: @@ -13221,7 +13235,7 @@ paths: default configuration: *95 examples: - default: &246 + default: &267 value: - default_for_new_repos: public configuration: @@ -13240,6 +13254,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: enabled @@ -13274,6 +13290,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: disabled @@ -13671,7 +13689,7 @@ paths: default: value: default_for_new_repos: all - configuration: &244 + configuration: &265 value: id: 1325 target_type: organization @@ -13688,6 +13706,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: enabled secret_scanning_push_protection: disabled @@ -13754,7 +13774,7 @@ paths: application/json: schema: type: array - items: &247 + items: &268 type: object description: Repositories associated with a code security configuration and attachment status @@ -13778,7 +13798,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &248 + repository: &269 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -14267,7 +14287,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &235 + - &255 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -14326,7 +14346,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &310 + properties: &331 id: description: Unique identifier of the team type: integer @@ -14382,7 +14402,7 @@ paths: maps to within LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &311 + required: &332 - id - node_id - url @@ -14635,7 +14655,7 @@ paths: application/json: schema: type: array - items: &141 + items: &161 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -14942,7 +14962,7 @@ paths: - date additionalProperties: true examples: - default: &142 + default: &162 value: - date: '2024-06-24' total_active_users: 24 @@ -15044,7 +15064,7 @@ paths: '500': *88 '403': *29 '404': *6 - '422': &143 + '422': &163 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -15074,7 +15094,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &255 + - &276 name: state in: query description: |- @@ -15083,7 +15103,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &256 + - &277 name: severity in: query description: |- @@ -15092,7 +15112,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &257 + - &278 name: ecosystem in: query description: |- @@ -15101,14 +15121,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &258 + - &279 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &259 + - &280 name: epss_percentage in: query description: |- @@ -15120,7 +15140,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &260 + - &281 name: has in: query description: |- @@ -15134,7 +15154,7 @@ paths: type: string enum: - patch - - &261 + - &282 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -15144,7 +15164,7 @@ paths: enum: - development - runtime - - &262 + - &283 name: sort in: query description: |- @@ -15162,7 +15182,7 @@ paths: - *91 - *89 - *90 - - &263 + - &284 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -15175,7 +15195,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &264 + - &285 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -15195,7 +15215,7 @@ paths: application/json: schema: type: array - items: &265 + items: &286 type: object description: A Dependabot alert. properties: @@ -15258,7 +15278,7 @@ paths: - unknown - direct - transitive - security_advisory: &525 + security_advisory: &547 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -15490,7 +15510,7 @@ paths: nullable: true maxLength: 280 fixed_at: *113 - auto_dismissed_at: &526 + auto_dismissed_at: &548 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -15516,7 +15536,7 @@ paths: - repository additionalProperties: false examples: - default: &266 + default: &287 value: - number: 2 state: dismissed @@ -15933,7 +15953,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-an-enterprise-user parameters: - *41 - - &226 + - &246 name: username description: The handle for the GitHub user account. in: path @@ -16040,7 +16060,7 @@ paths: - name - created_on examples: - default: &362 + default: &384 value: total_count: 2 network_configurations: @@ -16263,7 +16283,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &363 + - &385 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -16275,7 +16295,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &386 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -16309,7 +16329,7 @@ paths: - subnet_id - region examples: - default: &365 + default: &387 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -16605,7 +16625,7 @@ paths: required: true content: application/json: - schema: &330 + schema: &351 title: Custom Property Set Payload description: Custom property set payload type: object @@ -16785,7 +16805,7 @@ paths: - always - pull_request default: always - conditions: &135 + conditions: &154 title: Enterprise ruleset conditions type: object description: Conditions for an enterprise ruleset. The conditions @@ -16966,12 +16986,12 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: &132 + items: &155 title: Repository Rule type: object description: A repository rule. oneOf: - - &644 + - &132 title: creation description: Only allow users with bypass permission to create matching refs. @@ -16983,7 +17003,7 @@ paths: type: string enum: - creation - - &645 + - &133 title: update description: Only allow users with bypass permission to update matching refs. @@ -17004,7 +17024,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &647 + - &134 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -17016,7 +17036,7 @@ paths: type: string enum: - deletion - - &648 + - &135 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -17028,83 +17048,7 @@ paths: type: string enum: - required_linear_history - - &649 - title: merge_queue - description: Merges must be performed via a merge queue. - type: object - required: - - type - properties: - type: - type: string - enum: - - merge_queue - parameters: - type: object - properties: - check_response_timeout_minutes: - type: integer - description: Maximum time for a required status check - to report a conclusion. After this much time has elapsed, - checks that have not reported a conclusion will be - assumed to have failed - minimum: 1 - maximum: 360 - grouping_strategy: - type: string - description: When set to ALLGREEN, the merge commit - created by merge queue for each PR in the group must - pass all required checks to merge. When set to HEADGREEN, - only the commit at the head of the merge group, i.e. - the commit containing changes from all of the PRs - in the group, must pass its required checks to merge. - enum: - - ALLGREEN - - HEADGREEN - max_entries_to_build: - type: integer - description: Limit the number of queued pull requests - requesting checks and workflow runs at the same time. - minimum: 0 - maximum: 100 - max_entries_to_merge: - type: integer - description: The maximum number of PRs that will be - merged together in a group. - minimum: 0 - maximum: 100 - merge_method: - type: string - description: Method to use when merging changes from - queued pull requests. - enum: - - MERGE - - SQUASH - - REBASE - min_entries_to_merge: - type: integer - description: The minimum number of PRs that will be - merged together in a group. - minimum: 0 - maximum: 100 - min_entries_to_merge_wait_minutes: - type: integer - description: The time merge queue should wait after - the first PR is added to the queue for the minimum - group size to be met. After this time has elapsed, - the minimum group size will be ignored and a smaller - group will be merged. - minimum: 0 - maximum: 360 - required: - - check_response_timeout_minutes - - grouping_strategy - - max_entries_to_build - - max_entries_to_merge - - merge_method - - min_entries_to_merge - - min_entries_to_merge_wait_minutes - - &650 + - &136 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -17128,7 +17072,7 @@ paths: type: string required: - required_deployment_environments - - &651 + - &137 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -17140,7 +17084,7 @@ paths: type: string enum: - required_signatures - - &652 + - &138 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -17200,7 +17144,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &653 + - &139 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -17247,7 +17191,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &654 + - &140 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -17259,7 +17203,7 @@ paths: type: string enum: - non_fast_forward - - &655 + - &141 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -17295,7 +17239,7 @@ paths: required: - operator - pattern - - &656 + - &142 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -17331,7 +17275,7 @@ paths: required: - operator - pattern - - &657 + - &143 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -17367,7 +17311,7 @@ paths: required: - operator - pattern - - &658 + - &144 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -17403,7 +17347,7 @@ paths: required: - operator - pattern - - &659 + - &145 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -17439,7 +17383,7 @@ paths: required: - operator - pattern - - &660 + - &146 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -17463,7 +17407,7 @@ paths: type: string required: - restricted_file_paths - - &661 + - &147 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -17487,7 +17431,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &662 + - &148 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -17510,7 +17454,7 @@ paths: type: string required: - restricted_file_extensions - - &663 + - &149 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -17534,7 +17478,7 @@ paths: maximum: 100 required: - max_file_size - - &664 + - &150 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -17583,7 +17527,7 @@ paths: - repository_id required: - workflows - - &665 + - &151 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -17669,7 +17613,7 @@ paths: description: Response content: application/json: - schema: &133 + schema: &152 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -17740,7 +17684,7 @@ paths: nullable: true anyOf: - *126 - - &337 + - &358 title: Organization ruleset conditions type: object description: |- @@ -17787,7 +17731,109 @@ paths: - *129 rules: type: array - items: *132 + items: &669 + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - *132 + - *133 + - *134 + - *135 + - &667 + title: merge_queue + description: Merges must be performed via a merge queue. + type: object + required: + - type + properties: + type: + type: string + enum: + - merge_queue + parameters: + type: object + properties: + check_response_timeout_minutes: + type: integer + description: Maximum time for a required status check + to report a conclusion. After this much time has + elapsed, checks that have not reported a conclusion + will be assumed to have failed + minimum: 1 + maximum: 360 + grouping_strategy: + type: string + description: When set to ALLGREEN, the merge commit + created by merge queue for each PR in the group + must pass all required checks to merge. When set + to HEADGREEN, only the commit at the head of the + merge group, i.e. the commit containing changes + from all of the PRs in the group, must pass its + required checks to merge. + enum: + - ALLGREEN + - HEADGREEN + max_entries_to_build: + type: integer + description: Limit the number of queued pull requests + requesting checks and workflow runs at the same + time. + minimum: 0 + maximum: 100 + max_entries_to_merge: + type: integer + description: The maximum number of PRs that will be + merged together in a group. + minimum: 0 + maximum: 100 + merge_method: + type: string + description: Method to use when merging changes from + queued pull requests. + enum: + - MERGE + - SQUASH + - REBASE + min_entries_to_merge: + type: integer + description: The minimum number of PRs that will be + merged together in a group. + minimum: 0 + maximum: 100 + min_entries_to_merge_wait_minutes: + type: integer + description: The time merge queue should wait after + the first PR is added to the queue for the minimum + group size to be met. After this time has elapsed, + the minimum group size will be ignored and a smaller + group will be merged. + minimum: 0 + maximum: 360 + required: + - check_response_timeout_minutes + - grouping_strategy + - max_entries_to_build + - max_entries_to_merge + - merge_method + - min_entries_to_merge + - min_entries_to_merge_wait_minutes + - *136 + - *137 + - *138 + - *139 + - *140 + - *141 + - *142 + - *143 + - *144 + - *145 + - *146 + - *147 + - *148 + - *149 + - *150 + - *151 created_at: type: string format: date-time @@ -17795,7 +17841,7 @@ paths: type: string format: date-time examples: - default: &134 + default: &153 value: id: 21 name: super cool ruleset @@ -17854,9 +17900,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *134 + default: *153 '404': *6 '500': *88 x-github: @@ -17905,11 +17951,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *131 - conditions: *135 + conditions: *154 rules: description: An array of rules within the ruleset. type: array - items: *132 + items: *155 examples: default: value: @@ -17933,9 +17979,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *134 + default: *153 '404': *6 '500': *88 x-github: @@ -17997,7 +18043,7 @@ paths: application/json: schema: type: array - items: &136 + items: &156 title: Ruleset version type: object description: The historical version of a ruleset @@ -18021,7 +18067,7 @@ paths: type: string format: date-time examples: - default: &339 + default: &361 value: - version_id: 3 actor: @@ -18074,9 +18120,9 @@ paths: description: Response content: application/json: - schema: &340 + schema: &362 allOf: - - *136 + - *156 - type: object required: - state @@ -18129,7 +18175,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &341 + - &363 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -18140,7 +18186,7 @@ paths: enum: - open - resolved - - &342 + - &364 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -18150,7 +18196,7 @@ paths: required: false schema: type: string - - &343 + - &365 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -18159,7 +18205,7 @@ paths: required: false schema: type: string - - &344 + - &366 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -18175,7 +18221,7 @@ paths: - *17 - *89 - *90 - - &345 + - &367 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -18184,7 +18230,7 @@ paths: required: false schema: type: string - - &346 + - &368 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -18193,7 +18239,7 @@ paths: schema: type: boolean default: false - - &347 + - &369 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -18202,7 +18248,7 @@ paths: schema: type: boolean default: false - - &348 + - &370 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -18218,7 +18264,7 @@ paths: application/json: schema: type: array - items: &349 + items: &371 type: object properties: number: *103 @@ -18237,14 +18283,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &678 + state: &681 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &679 + resolution: &682 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -18351,8 +18397,8 @@ paths: pull request. ' - oneOf: &680 - - &682 + oneOf: &683 + - &685 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -18404,7 +18450,7 @@ paths: - blob_url - commit_sha - commit_url - - &683 + - &686 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -18459,7 +18505,7 @@ paths: - page_url - commit_sha - commit_url - - &684 + - &687 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -18473,7 +18519,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &685 + - &688 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -18487,7 +18533,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &686 + - &689 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -18501,7 +18547,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &687 + - &690 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -18515,7 +18561,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &688 + - &691 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -18529,7 +18575,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &689 + - &692 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -18543,7 +18589,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &690 + - &693 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -18557,7 +18603,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &691 + - &694 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -18571,7 +18617,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &692 + - &695 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -18585,7 +18631,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &693 + - &696 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -18599,7 +18645,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &694 + - &697 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -18619,7 +18665,7 @@ paths: description: A boolean value representing whether or not the token in the alert was detected in more than one location. examples: - default: &350 + default: &372 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -18870,7 +18916,7 @@ paths: headers: Link: *40 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -18901,7 +18947,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &375 type: object properties: total_minutes_used: @@ -18971,7 +19017,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &354 + default: &376 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -19002,7 +19048,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &355 + - &377 name: advanced_security_product in: query description: | @@ -19022,7 +19068,7 @@ paths: description: Success content: application/json: - schema: &356 + schema: &378 type: object properties: total_advanced_security_committers: @@ -19077,7 +19123,7 @@ paths: required: - repositories examples: - default: &357 + default: &379 value: total_advanced_security_committers: 2 total_count: 2 @@ -19174,7 +19220,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19292,7 +19338,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-a-cost-center-by-id parameters: - *41 - - &140 + - &160 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -19304,7 +19350,7 @@ paths: description: Response when getting a cost center content: application/json: - schema: &138 + schema: &158 type: object properties: id: @@ -19332,7 +19378,7 @@ paths: - name - resources examples: - default: &139 + default: &159 value: - id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -19344,7 +19390,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19394,15 +19440,15 @@ paths: description: Response when updating a cost center content: application/json: - schema: *138 + schema: *158 examples: - default: *139 + default: *159 '400': *14 '403': *29 '404': *6 '409': *99 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19420,7 +19466,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#delete-a-cost-center parameters: - *41 - - *140 + - *160 responses: '200': description: Response when deleting a cost center @@ -19459,7 +19505,7 @@ paths: '404': *6 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19480,7 +19526,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#add-resources-to-a-cost-center parameters: - *41 - - *140 + - *160 requestBody: required: true content: @@ -19527,7 +19573,7 @@ paths: '403': *29 '409': *99 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19547,7 +19593,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#remove-resources-from-a-cost-center parameters: - *41 - - *140 + - *160 requestBody: required: true content: @@ -19594,7 +19640,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19625,7 +19671,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &380 type: object properties: total_gigabytes_bandwidth_used: @@ -19643,7 +19689,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &359 + default: &381 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -19678,7 +19724,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &382 type: object properties: days_left_in_billing_cycle: @@ -19696,7 +19742,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &361 + default: &383 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -19721,7 +19767,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-billing-usage-report-for-an-enterprise parameters: - *41 - - &179 + - &199 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -19730,7 +19776,7 @@ paths: required: false schema: type: integer - - &180 + - &200 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -19739,7 +19785,7 @@ paths: required: false schema: type: integer - - &181 + - &201 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -19748,7 +19794,7 @@ paths: required: false schema: type: integer - - &182 + - &202 name: hour description: If specified, only return results for a single hour. The value of `hour` is an integer between `0` and `23`. If no `year`, `month`, or @@ -19769,7 +19815,7 @@ paths: description: Response when getting a billing usage report content: application/json: - schema: &183 + schema: &203 type: object properties: usageItems: @@ -19822,7 +19868,7 @@ paths: - netAmount - organizationName examples: - default: &184 + default: &204 value: usageItems: - date: '2023-08-01' @@ -19839,7 +19885,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19910,13 +19956,13 @@ paths: application/json: schema: type: array - items: *141 + items: *161 examples: - default: *142 + default: *162 '500': *88 '403': *29 '404': *6 - '422': *143 + '422': *163 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -20005,7 +20051,7 @@ paths: application/json: schema: type: array - items: &172 + items: &192 title: Event description: Event type: object @@ -20015,7 +20061,7 @@ paths: type: type: string nullable: true - actor: &144 + actor: &164 title: Actor description: Actor type: object @@ -20055,18 +20101,18 @@ paths: - id - name - url - org: *144 + org: *164 payload: type: object properties: action: type: string - issue: &160 + issue: &180 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &583 + properties: &605 id: type: integer format: int64 @@ -20178,7 +20224,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &510 + properties: &532 url: type: string format: uri @@ -20248,7 +20294,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &511 + required: &533 - closed_issues - creator - description @@ -20327,7 +20373,7 @@ paths: timeline_url: type: string format: uri - type: &295 + type: &316 title: Issue Type description: The type of issue. type: object @@ -20386,9 +20432,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 - author_association: &147 + properties: *165 + required: *166 + author_association: &167 title: author_association type: string example: OWNER @@ -20402,7 +20448,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &148 + reactions: &168 title: Reaction Rollup type: object properties: @@ -20452,7 +20498,7 @@ paths: - total - completed - percent_completed - required: &584 + required: &606 - assignee - closed_at - comments @@ -20474,7 +20520,7 @@ paths: - author_association - created_at - updated_at - comment: &581 + comment: &603 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -20522,7 +20568,7 @@ paths: issue_url: type: string format: uri - author_association: *147 + author_association: *167 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -20532,9 +20578,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 - reactions: *148 + properties: *165 + required: *166 + reactions: *168 required: - id - node_id @@ -20629,7 +20675,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20710,7 +20756,7 @@ paths: _links: type: object properties: - timeline: &149 + timeline: &169 title: Link With Type description: Hypermedia Link with Type type: object @@ -20722,17 +20768,17 @@ paths: required: - href - type - user: *149 - security_advisories: *149 - current_user: *149 - current_user_public: *149 - current_user_actor: *149 - current_user_organization: *149 + user: *169 + security_advisories: *169 + current_user: *169 + current_user_public: *169 + current_user_actor: *169 + current_user_organization: *169 current_user_organizations: type: array - items: *149 - repository_discussions: *149 - repository_discussions_category: *149 + items: *169 + repository_discussions: *169 + repository_discussions_category: *169 required: - timeline - user @@ -20794,7 +20840,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *150 + - *170 - *17 - *19 responses: @@ -20804,7 +20850,7 @@ paths: application/json: schema: type: array - items: &151 + items: &171 title: Base Gist description: Base Gist type: object @@ -20903,7 +20949,7 @@ paths: - created_at - updated_at examples: - default: &152 + default: &172 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -21024,7 +21070,7 @@ paths: description: Response content: application/json: - schema: &153 + schema: &173 title: Gist Simple description: Gist Simple type: object @@ -21041,7 +21087,7 @@ paths: url: type: string format: uri - user: &749 + user: &752 title: Public User description: Public User type: object @@ -21403,7 +21449,7 @@ paths: truncated: type: boolean examples: - default: &154 + default: &174 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -21507,7 +21553,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *150 + - *170 - *17 - *19 responses: @@ -21517,9 +21563,9 @@ paths: application/json: schema: type: array - items: *151 + items: *171 examples: - default: *152 + default: *172 headers: Link: *40 '422': *15 @@ -21541,7 +21587,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *150 + - *170 - *17 - *19 responses: @@ -21551,9 +21597,9 @@ paths: application/json: schema: type: array - items: *151 + items: *171 examples: - default: *152 + default: *172 headers: Link: *40 '401': *25 @@ -21581,7 +21627,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &155 + - &175 name: gist_id description: The unique identifier of the gist. in: path @@ -21593,10 +21639,10 @@ paths: description: Response content: application/json: - schema: *153 + schema: *173 examples: - default: *154 - '403': &158 + default: *174 + '403': &178 description: Forbidden Gist content: application/json: @@ -21644,7 +21690,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *155 + - *175 requestBody: required: true content: @@ -21704,9 +21750,9 @@ paths: description: Response content: application/json: - schema: *153 + schema: *173 examples: - updateGist: *154 + updateGist: *174 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -21864,7 +21910,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *155 + - *175 responses: '204': description: Response @@ -21893,7 +21939,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *155 + - *175 - *17 - *19 responses: @@ -21903,7 +21949,7 @@ paths: application/json: schema: type: array - items: &156 + items: &176 title: Gist Comment description: A comment made to a gist. type: object @@ -21938,7 +21984,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *147 + author_association: *167 required: - url - id @@ -22003,7 +22049,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *155 + - *175 requestBody: required: true content: @@ -22028,9 +22074,9 @@ paths: description: Response content: application/json: - schema: *156 + schema: *176 examples: - default: &157 + default: &177 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -22088,8 +22134,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *155 - - &159 + - *175 + - &179 name: comment_id description: The unique identifier of the comment. in: path @@ -22102,12 +22148,12 @@ paths: description: Response content: application/json: - schema: *156 + schema: *176 examples: - default: *157 + default: *177 '304': *37 '404': *6 - '403': *158 + '403': *178 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -22129,8 +22175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *155 - - *159 + - *175 + - *179 requestBody: required: true content: @@ -22155,9 +22201,9 @@ paths: description: Response content: application/json: - schema: *156 + schema: *176 examples: - default: *157 + default: *177 '404': *6 x-github: githubCloudOnly: false @@ -22174,8 +22220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *155 - - *159 + - *175 + - *179 responses: '204': description: Response @@ -22198,7 +22244,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *155 + - *175 - *17 - *19 responses: @@ -22299,7 +22345,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *155 + - *175 - *17 - *19 responses: @@ -22309,7 +22355,7 @@ paths: application/json: schema: type: array - items: *153 + items: *173 examples: default: value: @@ -22374,13 +22420,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *155 + - *175 responses: '201': description: Response content: application/json: - schema: *151 + schema: *171 examples: default: value: @@ -22451,7 +22497,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *155 + - *175 responses: '204': description: Response if gist is starred @@ -22481,7 +22527,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *155 + - *175 responses: '204': description: Response @@ -22503,7 +22549,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *155 + - *175 responses: '204': description: Response @@ -22532,7 +22578,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *155 + - *175 - name: sha in: path required: true @@ -22543,9 +22589,9 @@ paths: description: Response content: application/json: - schema: *153 + schema: *173 examples: - default: *154 + default: *174 '422': *15 '404': *6 '403': *29 @@ -22911,7 +22957,7 @@ paths: - closed - all default: open - - &298 + - &319 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -22930,7 +22976,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - name: collab in: query required: false @@ -22960,9 +23006,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: &299 + default: &320 value: - id: 1 node_id: MDU6SXNzdWUx @@ -23246,8 +23292,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 examples: default: value: @@ -23532,7 +23578,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &163 + X-CommonMarker-Version: &183 example: 0.17.4 schema: type: string @@ -23587,7 +23633,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *163 + X-CommonMarker-Version: *183 content: text/html: schema: @@ -23616,7 +23662,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &166 + - &186 name: account_id description: account_id parameter in: path @@ -23628,7 +23674,7 @@ paths: description: Response content: application/json: - schema: &165 + schema: &185 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -23658,7 +23704,7 @@ paths: nullable: true id: type: integer - plan: &164 + plan: &184 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -23747,7 +23793,7 @@ paths: nullable: true updated_at: type: string - plan: *164 + plan: *184 required: - url - id @@ -23755,7 +23801,7 @@ paths: - login - marketplace_purchase examples: - default: &167 + default: &187 value: url: https://api.github.com/orgs/github type: Organization @@ -23840,9 +23886,9 @@ paths: application/json: schema: type: array - items: *164 + items: *184 examples: - default: &168 + default: &188 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -23882,14 +23928,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &169 + - &189 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &170 + - &190 name: sort description: The property to sort the results by. in: query @@ -23919,9 +23965,9 @@ paths: application/json: schema: type: array - items: *165 + items: *185 examples: - default: &171 + default: &191 value: - url: https://api.github.com/orgs/github type: Organization @@ -23995,15 +24041,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *166 + - *186 responses: '200': description: Response content: application/json: - schema: *165 + schema: *185 examples: - default: *167 + default: *187 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -24035,9 +24081,9 @@ paths: application/json: schema: type: array - items: *164 + items: *184 examples: - default: *168 + default: *188 headers: Link: *40 '401': *25 @@ -24060,8 +24106,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *169 - - *170 + - *189 + - *190 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -24081,9 +24127,9 @@ paths: application/json: schema: type: array - items: *165 + items: *185 examples: - default: *171 + default: *191 headers: Link: *40 '401': *25 @@ -24347,14 +24393,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &385 + - &407 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &386 + - &408 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -24371,7 +24417,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -24425,7 +24471,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &399 + '301': &421 description: Moved permanently content: application/json: @@ -24447,7 +24493,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &613 + - &635 name: all description: If `true`, show notifications marked as read. in: query @@ -24455,7 +24501,7 @@ paths: schema: type: boolean default: false - - &614 + - &636 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -24464,8 +24510,8 @@ paths: schema: type: boolean default: false - - *150 - - &615 + - *170 + - &637 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -24490,18 +24536,18 @@ paths: application/json: schema: type: array - items: &173 + items: &193 title: Thread description: Thread type: object properties: id: type: string - repository: &204 + repository: &224 title: Minimal Repository description: Minimal Repository type: object - properties: &268 + properties: &289 id: type: integer format: int64 @@ -24777,7 +24823,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &334 + security_and_analysis: &355 nullable: true type: object properties: @@ -24859,7 +24905,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &269 + required: &290 - archive_url - assignees_url - blobs_url @@ -24947,7 +24993,7 @@ paths: - url - subscription_url examples: - default: &616 + default: &638 value: - id: '1' repository: @@ -25113,7 +25159,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &174 + - &194 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -25127,7 +25173,7 @@ paths: description: Response content: application/json: - schema: *173 + schema: *193 examples: default: value: @@ -25230,7 +25276,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *174 + - *194 responses: '205': description: Reset Content @@ -25253,7 +25299,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *174 + - *194 responses: '204': description: No content @@ -25276,13 +25322,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *174 + - *194 responses: '200': description: Response content: application/json: - schema: &175 + schema: &195 title: Thread Subscription description: Thread Subscription type: object @@ -25319,7 +25365,7 @@ paths: - url - subscribed examples: - default: &176 + default: &196 value: subscribed: true ignored: false @@ -25350,7 +25396,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *174 + - *194 requestBody: required: false content: @@ -25371,9 +25417,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *195 examples: - default: *176 + default: *196 '304': *37 '403': *29 '401': *25 @@ -25396,7 +25442,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *174 + - *194 responses: '204': description: Response @@ -25493,7 +25539,7 @@ paths: type: array items: *59 examples: - default: &767 + default: &770 value: - login: github id: 1 @@ -25557,7 +25603,7 @@ paths: type: integer custom_roles: type: array - items: &250 + items: &271 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -25605,7 +25651,7 @@ paths: - created_at - updated_at examples: - default: &251 + default: &272 value: id: 8030 name: Security Engineer @@ -25696,8 +25742,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *177 - required: *178 + properties: *197 + required: *198 nullable: true additionalProperties: false examples: @@ -25917,22 +25963,22 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization parameters: - *73 - - *179 - - *180 - - *181 - - *182 + - *199 + - *200 + - *201 + - *202 responses: '200': description: Billing usage report response for an organization content: application/json: - schema: *183 + schema: *203 examples: - default: *184 + default: *204 '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25964,7 +26010,7 @@ paths: description: Response content: application/json: - schema: &185 + schema: &205 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -26297,7 +26343,7 @@ paths: - updated_at - archived_at examples: - default-response: &186 + default-response: &206 value: login: github id: 1 @@ -26622,17 +26668,17 @@ paths: description: Response content: application/json: - schema: *185 + schema: *205 examples: - default: *186 + default: *206 '422': description: Validation failed content: application/json: schema: oneOf: - - *187 - - *188 + - *207 + - *208 '409': *99 x-github: githubCloudOnly: false @@ -26687,9 +26733,9 @@ paths: description: Response content: application/json: - schema: *189 + schema: *209 examples: - default: *190 + default: *210 headers: Link: *40 x-github: @@ -26730,7 +26776,7 @@ paths: type: integer repository_cache_usages: type: array - items: &404 + items: &426 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -26805,7 +26851,7 @@ paths: type: array items: *42 examples: - default: *191 + default: *211 headers: Link: *40 x-github: @@ -26989,9 +27035,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *212 examples: - default: *193 + default: *213 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27027,7 +27073,7 @@ paths: type: array items: *45 examples: - default: *194 + default: *214 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27210,7 +27256,7 @@ paths: description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &195 + schema: &215 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -27224,7 +27270,7 @@ paths: required: - include_claim_keys examples: - default: &196 + default: &216 value: include_claim_keys: - repo @@ -27251,15 +27297,15 @@ paths: required: true content: application/json: - schema: *195 + schema: *215 examples: - default: *196 + default: *216 responses: '201': description: Empty response content: application/json: - schema: &215 + schema: &235 title: Empty Object description: An object without any properties. type: object @@ -27298,7 +27344,7 @@ paths: schema: type: object properties: - enabled_repositories: &198 + enabled_repositories: &218 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -27312,7 +27358,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *49 - selected_actions_url: *197 + selected_actions_url: *217 required: - enabled_repositories examples: @@ -27352,7 +27398,7 @@ paths: schema: type: object properties: - enabled_repositories: *198 + enabled_repositories: *218 allowed_actions: *49 required: - enabled_repositories @@ -27400,7 +27446,7 @@ paths: type: array items: *64 examples: - default: &761 + default: &764 value: total_count: 1 repositories: @@ -27585,7 +27631,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *73 - - &199 + - &219 name: repository_id description: The unique identifier of the repository. in: path @@ -27614,7 +27660,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *73 - - *199 + - *219 responses: '204': description: Response @@ -27706,7 +27752,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *220 examples: default: *55 x-github: @@ -27740,7 +27786,7 @@ paths: required: false content: application/json: - schema: *201 + schema: *221 examples: default: *55 x-github: @@ -27787,7 +27833,7 @@ paths: type: number runner_groups: type: array - items: &202 + items: &222 type: object properties: id: @@ -27975,9 +28021,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *222 examples: - default: &203 + default: &223 value: id: 2 name: octo-runner-group @@ -28019,7 +28065,7 @@ paths: description: Response content: application/json: - schema: *202 + schema: *222 examples: default: value: @@ -28110,9 +28156,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *222 examples: - default: *203 + default: *223 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -28176,7 +28222,7 @@ paths: type: array items: *42 examples: - default: *191 + default: *211 headers: Link: *40 x-github: @@ -28217,9 +28263,9 @@ paths: type: number repositories: type: array - items: *204 + items: *224 examples: - default: &752 + default: &755 value: total_count: 1 repositories: @@ -28518,7 +28564,7 @@ paths: parameters: - *73 - *58 - - *199 + - *219 responses: '204': description: Response @@ -28542,7 +28588,7 @@ paths: parameters: - *73 - *58 - - *199 + - *219 responses: '204': description: Response @@ -28760,9 +28806,9 @@ paths: application/json: schema: type: array - items: *205 + items: *225 examples: - default: *206 + default: *226 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28827,7 +28873,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *207 + '201': *227 '404': *6 '422': *7 '409': *99 @@ -28866,7 +28912,7 @@ paths: application/json: schema: *65 examples: - default: *208 + default: *228 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28902,7 +28948,7 @@ paths: application/json: schema: *65 examples: - default: *209 + default: *229 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28933,7 +28979,7 @@ paths: application/json: schema: *62 examples: - default: *210 + default: *230 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29108,7 +29154,7 @@ paths: - *73 - *61 responses: - '200': *211 + '200': *231 '404': *6 x-github: githubCloudOnly: false @@ -29137,7 +29183,7 @@ paths: parameters: - *73 - *61 - - *212 + - *232 responses: '200': *67 '404': *6 @@ -29182,7 +29228,7 @@ paths: type: integer secrets: type: array - items: &213 + items: &233 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -29261,7 +29307,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &446 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -29290,7 +29336,7 @@ paths: - key_id - key examples: - default: &425 + default: &447 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29316,7 +29362,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - *73 - - &214 + - &234 name: secret_name description: The name of the secret. in: path @@ -29328,7 +29374,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *233 examples: default: value: @@ -29359,7 +29405,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -29416,7 +29462,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -29443,7 +29489,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - *73 - - *214 + - *234 responses: '204': description: Response @@ -29470,7 +29516,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 - *19 - *17 responses: @@ -29488,9 +29534,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: &218 + default: &238 value: total_count: 1 repositories: @@ -29583,7 +29629,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -29636,7 +29682,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -29670,7 +29716,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -29703,7 +29749,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *73 - - &409 + - &431 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -29727,7 +29773,7 @@ paths: type: integer variables: type: array - items: &216 + items: &236 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -29860,7 +29906,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -29886,7 +29932,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - *73 - - &217 + - &237 name: name description: The name of the variable. in: path @@ -29898,7 +29944,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *236 examples: default: value: @@ -29929,7 +29975,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - *73 - - *217 + - *237 requestBody: required: true content: @@ -29992,7 +30038,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - *73 - - *217 + - *237 responses: '204': description: Response @@ -30019,7 +30065,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *73 - - *217 + - *237 - *19 - *17 responses: @@ -30037,9 +30083,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: *218 + default: *238 '409': description: Response when the visibility of the variable is not set to `selected` @@ -30066,7 +30112,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *73 - - *217 + - *237 requestBody: required: true content: @@ -30116,7 +30162,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *73 - - *217 + - *237 - name: repository_id in: path required: true @@ -30151,7 +30197,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *73 - - *217 + - *237 - name: repository_id in: path required: true @@ -30209,7 +30255,7 @@ paths: required: true content: application/json: - schema: *219 + schema: *239 examples: default: *71 parameters: @@ -30288,12 +30334,12 @@ paths: required: - subject_digests examples: - default: &782 + default: &785 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &783 + withPredicateType: &786 value: subject_digests: - sha256:abc123 @@ -30351,7 +30397,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &784 + default: &787 value: attestations_subject_digests: - sha256:abc: @@ -30645,7 +30691,7 @@ paths: bundle_url: type: string examples: - default: &438 + default: &460 value: attestations: - bundle: @@ -30771,10 +30817,10 @@ paths: required: false schema: type: string - - *220 - - *221 - - *222 - - *223 + - *240 + - *241 + - *242 + - *243 - *17 responses: '200': @@ -30783,9 +30829,9 @@ paths: application/json: schema: type: array - items: *224 + items: *244 examples: - default: *225 + default: *245 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -30814,7 +30860,7 @@ paths: type: array items: *4 examples: - default: &300 + default: &321 value: - login: octocat id: 1 @@ -30853,7 +30899,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - *73 - - *226 + - *246 responses: '204': description: If the user is blocked @@ -30879,7 +30925,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -30900,7 +30946,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -30927,16 +30973,16 @@ paths: subcategory: bypass-requests parameters: - *73 - - &233 + - &253 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - *227 - - *228 - - *229 - - *230 + - *247 + - *248 + - *249 + - *250 - *17 - *19 responses: @@ -30946,9 +30992,9 @@ paths: application/json: schema: type: array - items: *231 + items: *251 examples: - default: *232 + default: *252 '404': *6 '500': *88 "/orgs/{org}/bypass-requests/secret-scanning": @@ -30972,11 +31018,11 @@ paths: subcategory: delegated-bypass parameters: - *73 - - *233 - - *227 - - *228 - - *229 - - *230 + - *253 + - *247 + - *248 + - *249 + - *250 - *17 - *19 responses: @@ -30986,7 +31032,7 @@ paths: application/json: schema: type: array - items: &455 + items: &477 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -31100,7 +31146,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: *234 + items: *254 url: type: string format: uri @@ -31111,7 +31157,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &456 + default: &478 value: - id: 21 number: 42 @@ -31203,7 +31249,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &236 + schema: &256 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -31229,7 +31275,7 @@ paths: application/json: schema: type: array - items: &237 + items: &257 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -31260,7 +31306,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *235 + items: *255 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -31278,7 +31324,7 @@ paths: type: string format: date-time nullable: true - state: *236 + state: *256 contact_link: description: The contact link of the campaign. type: string @@ -31375,7 +31421,7 @@ paths: headers: Link: *40 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31493,9 +31539,9 @@ paths: description: Response content: application/json: - schema: *237 + schema: *257 examples: - default: &238 + default: &258 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -31544,7 +31590,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31578,16 +31624,16 @@ paths: description: Response content: application/json: - schema: *237 + schema: *257 examples: - default: *238 + default: *258 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31657,7 +31703,7 @@ paths: type: string format: uri nullable: true - state: *236 + state: *256 examples: default: value: @@ -31667,9 +31713,9 @@ paths: description: Response content: application/json: - schema: *237 + schema: *257 examples: - default: *238 + default: *258 '400': description: Bad Request content: @@ -31681,7 +31727,7 @@ paths: content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31713,7 +31759,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31736,8 +31782,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *73 - - *239 - - *240 + - *259 + - *260 - *89 - *90 - *19 @@ -31748,7 +31794,7 @@ paths: be returned. in: query required: false - schema: *241 + schema: *261 - name: sort description: The property by which to sort the results. in: query @@ -31764,7 +31810,7 @@ paths: be returned. in: query required: false - schema: &467 + schema: &489 type: string description: Severity of a code scanning alert. enum: @@ -31782,13 +31828,13 @@ paths: application/json: schema: type: array - items: *242 + items: *262 examples: - default: *243 + default: *263 headers: Link: *40 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31999,6 +32045,7 @@ paths: - disabled - not_set default: disabled + code_scanning_options: *264 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -32141,7 +32188,7 @@ paths: application/json: schema: *95 examples: - default: *244 + default: *265 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32169,9 +32216,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *266 examples: - default: *246 + default: *267 '304': *37 '403': *29 '404': *6 @@ -32258,7 +32305,7 @@ paths: application/json: schema: *95 examples: - default: *244 + default: *265 '304': *37 '403': *29 '404': *6 @@ -32499,6 +32546,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: disabled secret_scanning_push_protection: disabled @@ -32678,7 +32727,7 @@ paths: default: value: default_for_new_repos: all - configuration: *244 + configuration: *265 '403': *29 '404': *6 x-github: @@ -32731,13 +32780,13 @@ paths: application/json: schema: type: array - items: *247 + items: *268 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *248 + repository: *269 '403': *29 '404': *6 x-github: @@ -32777,7 +32826,7 @@ paths: type: integer codespaces: type: array - items: &301 + items: &322 type: object title: Codespace description: A codespace. @@ -32802,12 +32851,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *204 + repository: *224 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &496 + properties: &518 name: type: string description: The name of the machine. @@ -32849,7 +32898,7 @@ paths: - ready - in_progress nullable: true - required: &497 + required: &519 - name - display_name - operating_system @@ -33054,7 +33103,7 @@ paths: - pulls_url - recent_folders examples: - default: &302 + default: &323 value: total_count: 3 codespaces: @@ -33678,7 +33727,7 @@ paths: type: integer secrets: type: array - items: &249 + items: &270 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -33717,7 +33766,7 @@ paths: - updated_at - visibility examples: - default: &498 + default: &520 value: total_count: 2 secrets: @@ -33755,7 +33804,7 @@ paths: description: Response content: application/json: - schema: &499 + schema: &521 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -33784,7 +33833,7 @@ paths: - key_id - key examples: - default: &500 + default: &522 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33808,15 +33857,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *73 - - *214 + - *234 responses: '200': description: Response content: application/json: - schema: *249 + schema: *270 examples: - default: &502 + default: &524 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33844,7 +33893,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -33899,7 +33948,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -33926,7 +33975,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *73 - - *214 + - *234 responses: '204': description: Response @@ -33952,7 +34001,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 - *19 - *17 responses: @@ -33970,9 +34019,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: *218 + default: *238 '404': *6 x-github: githubCloudOnly: false @@ -33995,7 +34044,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -34046,7 +34095,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -34080,7 +34129,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -34669,13 +34718,13 @@ paths: application/json: schema: type: array - items: *141 + items: *161 examples: - default: *142 + default: *162 '500': *88 '403': *29 '404': *6 - '422': *143 + '422': *163 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34887,7 +34936,7 @@ paths: type: integer custom_roles: type: array - items: *250 + items: *271 examples: default: value: @@ -34979,7 +35028,7 @@ paths: required: true content: application/json: - schema: &253 + schema: &274 type: object properties: name: @@ -35020,9 +35069,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '422': *15 '404': *6 x-github: @@ -35047,7 +35096,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - *73 - - &252 + - &273 name: role_id description: The unique identifier of the role. in: path @@ -35059,9 +35108,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '404': *6 x-github: githubCloudOnly: true @@ -35084,12 +35133,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - *73 - - *252 + - *273 requestBody: required: true content: application/json: - schema: &254 + schema: &275 type: object properties: name: @@ -35127,9 +35176,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '422': *15 '404': *6 x-github: @@ -35154,7 +35203,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - *73 - - *252 + - *273 responses: '204': description: Response @@ -35187,7 +35236,7 @@ paths: required: true content: application/json: - schema: *253 + schema: *274 examples: default: value: @@ -35201,9 +35250,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '422': *15 '404': *6 x-github: @@ -35234,15 +35283,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - *73 - - *252 + - *273 responses: '200': description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '404': *6 x-github: githubCloudOnly: true @@ -35271,12 +35320,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - *73 - - *252 + - *273 requestBody: required: true content: application/json: - schema: *254 + schema: *275 examples: default: value: @@ -35291,9 +35340,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '422': *15 '404': *6 x-github: @@ -35324,7 +35373,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - *73 - - *252 + - *273 responses: '204': description: Response @@ -35353,19 +35402,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *73 - - *255 - - *256 - - *257 - - *258 - - *259 - - *260 - - *261 - - *262 + - *276 + - *277 + - *278 + - *279 + - *280 + - *281 + - *282 + - *283 - *91 - *89 - *90 - - *263 - - *264 + - *284 + - *285 - *17 responses: '200': @@ -35374,9 +35423,9 @@ paths: application/json: schema: type: array - items: *265 + items: *286 examples: - default: *266 + default: *287 '304': *37 '400': *14 '403': *29 @@ -35420,7 +35469,7 @@ paths: type: integer secrets: type: array - items: &267 + items: &288 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -35497,7 +35546,7 @@ paths: description: Response content: application/json: - schema: &529 + schema: &551 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -35514,7 +35563,7 @@ paths: - key_id - key examples: - default: &530 + default: &552 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -35538,13 +35587,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - *73 - - *214 + - *234 responses: '200': description: Response content: application/json: - schema: *267 + schema: *288 examples: default: value: @@ -35573,7 +35622,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -35628,7 +35677,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -35653,7 +35702,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - *73 - - *214 + - *234 responses: '204': description: Response @@ -35678,7 +35727,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 - *19 - *17 responses: @@ -35696,9 +35745,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: *218 + default: *238 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35720,7 +35769,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -35771,7 +35820,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -35803,7 +35852,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -35840,7 +35889,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *73 - - &538 + - &560 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -35848,7 +35897,7 @@ paths: required: false schema: type: string - - &539 + - &561 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -35856,7 +35905,7 @@ paths: required: false schema: type: string - - &540 + - &562 name: time_period description: |- The time period to filter by. @@ -35872,7 +35921,7 @@ paths: - week - month default: month - - &541 + - &563 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -35887,7 +35936,7 @@ paths: - denied - all default: all - - *233 + - *253 - *17 - *19 responses: @@ -35897,7 +35946,7 @@ paths: application/json: schema: type: array - items: &542 + items: &564 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -36053,7 +36102,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &543 + default: &565 value: - id: 21 number: 42 @@ -36140,11 +36189,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *73 - - *233 - - *227 - - *228 - - *229 - - &544 + - *253 + - *247 + - *248 + - *249 + - &566 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -36170,7 +36219,7 @@ paths: application/json: schema: type: array - items: &545 + items: &567 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -36280,7 +36329,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *234 + items: *254 url: type: string format: uri @@ -36291,7 +36340,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &546 + default: &568 value: - id: 21 number: 42 @@ -36379,7 +36428,7 @@ paths: application/json: schema: type: array - items: &313 + items: &334 title: Package description: A software package type: object @@ -36429,8 +36478,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *268 - required: *269 + properties: *289 + required: *290 nullable: true created_at: type: string @@ -36449,7 +36498,7 @@ paths: - created_at - updated_at examples: - default: &314 + default: &335 value: - id: 197 name: hello_docker @@ -36537,7 +36586,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: 200-response: value: @@ -36633,7 +36682,7 @@ paths: description: Response content: application/json: - schema: &380 + schema: &402 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -36714,7 +36763,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &381 + default: &403 value: group_id: '123' group_name: Octocat admins @@ -36769,7 +36818,7 @@ paths: description: Response content: application/json: - schema: &378 + schema: &400 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -36806,7 +36855,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &379 + default: &401 value: groups: - group_id: '123' @@ -36850,7 +36899,7 @@ paths: application/json: schema: type: array - items: &292 + items: &313 title: Organization Invitation description: Organization Invitation type: object @@ -36897,7 +36946,7 @@ paths: - invitation_teams_url - node_id examples: - default: &293 + default: &314 value: - id: 1 login: monalisa @@ -36964,7 +37013,7 @@ paths: application/json: schema: type: array - items: &335 + items: &356 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -36978,7 +37027,7 @@ paths: - name - description examples: - default: &336 + default: &357 value: - name: add_assignee description: Assign or remove a user @@ -37019,7 +37068,7 @@ paths: application/json: schema: type: array - items: &270 + items: &291 title: Org Hook description: Org Hook type: object @@ -37188,9 +37237,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: &271 + default: &292 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -37235,7 +37284,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *73 - - &272 + - &293 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -37248,9 +37297,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 '404': *6 x-github: githubCloudOnly: false @@ -37272,7 +37321,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *73 - - *272 + - *293 requestBody: required: false content: @@ -37317,7 +37366,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: default: value: @@ -37357,7 +37406,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *73 - - *272 + - *293 responses: '204': description: Response @@ -37383,7 +37432,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *73 - - *272 + - *293 responses: '200': description: Response @@ -37412,7 +37461,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *73 - - *272 + - *293 requestBody: required: false content: @@ -37461,9 +37510,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *73 - - *272 + - *293 - *17 - - *273 + - *294 responses: '200': description: Response @@ -37471,9 +37520,9 @@ paths: application/json: schema: type: array - items: *274 + items: *295 examples: - default: *275 + default: *296 '400': *14 '422': *15 x-github: @@ -37497,16 +37546,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *73 - - *272 + - *293 - *16 responses: '200': description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '400': *14 '422': *15 x-github: @@ -37530,7 +37579,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *73 - - *272 + - *293 - *16 responses: '202': *39 @@ -37557,7 +37606,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *73 - - *272 + - *293 responses: '204': description: Response @@ -37580,7 +37629,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *73 - - &282 + - &303 name: actor_type in: path description: The type of the actor @@ -37593,14 +37642,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &283 + - &304 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &278 + - &299 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -37608,7 +37657,7 @@ paths: required: true schema: type: string - - &279 + - &300 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -37702,12 +37751,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *73 - - *278 - - *279 + - *299 + - *300 - *19 - *17 - *91 - - &288 + - &309 name: sort description: The property to sort the results by. in: query @@ -37786,14 +37835,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *73 - - *278 - - *279 + - *299 + - *300 responses: '200': description: Response content: application/json: - schema: &280 + schema: &301 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -37809,7 +37858,7 @@ paths: type: integer format: int64 examples: - default: &281 + default: &302 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -37830,23 +37879,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *73 - - &284 + - &305 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *278 - - *279 + - *299 + - *300 responses: '200': description: Response content: application/json: - schema: *280 + schema: *301 examples: - default: *281 + default: *302 x-github: enabledForGitHubApps: true category: orgs @@ -37865,18 +37914,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *73 - - *278 - - *279 - - *282 - - *283 + - *299 + - *300 + - *303 + - *304 responses: '200': description: Response content: application/json: - schema: *280 + schema: *301 examples: - default: *281 + default: *302 x-github: enabledForGitHubApps: true category: orgs @@ -37894,9 +37943,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *73 - - *278 - - *279 - - &285 + - *299 + - *300 + - &306 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -37909,7 +37958,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &307 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -37925,7 +37974,7 @@ paths: type: integer format: int64 examples: - default: &287 + default: &308 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -37962,18 +38011,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *73 - - *284 - - *278 - - *279 - - *285 + - *305 + - *299 + - *300 + - *306 responses: '200': description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 x-github: enabledForGitHubApps: true category: orgs @@ -37991,19 +38040,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *73 - - *282 - - *283 - - *278 - - *279 - - *285 + - *303 + - *304 + - *299 + - *300 + - *306 responses: '200': description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 x-github: enabledForGitHubApps: true category: orgs @@ -38021,13 +38070,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *73 - - *284 - - *278 - - *279 + - *305 + - *299 + - *300 - *19 - *17 - *91 - - *288 + - *309 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -38108,7 +38157,7 @@ paths: application/json: schema: *22 examples: - default: &577 + default: &599 value: id: 1 account: @@ -38274,12 +38323,12 @@ paths: application/json: schema: anyOf: - - &290 + - &311 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &289 + limit: &310 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -38304,7 +38353,7 @@ paths: properties: {} additionalProperties: false examples: - default: &291 + default: &312 value: limit: collaborators_only origin: organization @@ -38333,13 +38382,13 @@ paths: required: true content: application/json: - schema: &578 + schema: &600 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *289 + limit: *310 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -38363,9 +38412,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *311 examples: - default: *291 + default: *312 '422': *15 x-github: githubCloudOnly: false @@ -38443,9 +38492,9 @@ paths: application/json: schema: type: array - items: *292 + items: *313 examples: - default: *293 + default: *314 headers: Link: *40 '404': *6 @@ -38523,7 +38572,7 @@ paths: description: Response content: application/json: - schema: *292 + schema: *313 examples: default: value: @@ -38580,7 +38629,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *73 - - &294 + - &315 name: invitation_id description: The unique identifier of the invitation. in: path @@ -38614,7 +38663,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *73 - - *294 + - *315 - *17 - *19 responses: @@ -38624,9 +38673,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: &312 + default: &333 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -38669,7 +38718,7 @@ paths: application/json: schema: type: array - items: *295 + items: *316 examples: default: value: @@ -38754,9 +38803,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *316 examples: - default: &296 + default: &317 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -38789,7 +38838,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *73 - - &297 + - &318 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -38842,9 +38891,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *316 examples: - default: *296 + default: *317 '404': *6 '422': *7 x-github: @@ -38869,7 +38918,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *73 - - *297 + - *318 responses: '204': description: Response @@ -38932,7 +38981,7 @@ paths: - closed - all default: open - - *298 + - *319 - name: type description: Can be the name of an issue type. in: query @@ -38951,7 +39000,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - *17 - *19 responses: @@ -38961,9 +39010,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: *299 + default: *320 headers: Link: *40 '404': *6 @@ -39023,7 +39072,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '422': *15 @@ -39044,7 +39093,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response if requester is an organization member and user is @@ -39079,7 +39128,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -39106,7 +39155,7 @@ paths: - *17 - *19 - *73 - - *226 + - *246 responses: '200': description: Response @@ -39122,9 +39171,9 @@ paths: type: integer codespaces: type: array - items: *301 + items: *322 examples: - default: *302 + default: *323 '304': *37 '500': *88 '401': *25 @@ -39150,8 +39199,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - *73 - - *226 - - &303 + - *246 + - &324 name: codespace_name in: path required: true @@ -39185,16 +39234,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - *73 - - *226 - - *303 + - *246 + - *324 responses: '200': description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: &495 + default: &517 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -39368,7 +39417,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - *73 - - *226 + - *246 responses: '200': description: The user's GitHub Copilot seat details, including usage. @@ -39443,13 +39492,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - *73 - - *226 + - *246 responses: '200': description: Response content: application/json: - schema: &304 + schema: &325 title: Org Membership description: Org Membership type: object @@ -39516,7 +39565,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &305 + response-if-user-has-an-active-admin-membership-with-organization: &326 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -39585,7 +39634,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - *73 - - *226 + - *246 requestBody: required: false content: @@ -39613,9 +39662,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *325 examples: - response-if-user-already-had-membership-with-organization: *305 + response-if-user-already-had-membership-with-organization: *326 '422': *15 '403': *29 x-github: @@ -39640,7 +39689,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -39686,7 +39735,7 @@ paths: application/json: schema: type: array - items: &306 + items: &327 title: Migration description: A migration. type: object @@ -40015,7 +40064,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -40194,7 +40243,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *73 - - &307 + - &328 name: migration_id description: The unique identifier of the migration. in: path @@ -40221,7 +40270,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -40391,7 +40440,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *73 - - *307 + - *328 responses: '302': description: Response @@ -40413,7 +40462,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *73 - - *307 + - *328 responses: '204': description: Response @@ -40437,8 +40486,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *73 - - *307 - - &766 + - *328 + - &769 name: repo_name description: repo_name parameter in: path @@ -40466,7 +40515,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *73 - - *307 + - *328 - *17 - *19 responses: @@ -40476,9 +40525,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: &319 + default: &340 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -40687,7 +40736,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &308 + items: &329 title: Organization Role description: Organization roles type: object @@ -40894,7 +40943,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *329 examples: default: value: @@ -40946,7 +40995,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *73 - - &309 + - &330 name: team_slug description: The slug of the team name. in: path @@ -40978,8 +41027,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *73 - - *309 - - *252 + - *330 + - *273 responses: '204': description: Response @@ -41009,8 +41058,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *73 - - *309 - - *252 + - *330 + - *273 responses: '204': description: Response @@ -41036,7 +41085,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -41062,8 +41111,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - *73 - - *226 - - *252 + - *246 + - *273 responses: '204': description: Response @@ -41094,8 +41143,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - *73 - - *226 - - *252 + - *246 + - *273 responses: '204': description: Response @@ -41124,13 +41173,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - *73 - - *252 + - *273 responses: '200': description: Response content: application/json: - schema: *308 + schema: *329 examples: default: value: @@ -41188,7 +41237,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - *73 - - *252 + - *273 requestBody: required: true content: @@ -41227,7 +41276,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *329 examples: default: value: @@ -41281,7 +41330,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - *73 - - *252 + - *273 responses: '204': description: Response @@ -41307,7 +41356,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *73 - - *252 + - *273 - *17 - *19 responses: @@ -41385,8 +41434,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *310 - required: *311 + properties: *331 + required: *332 nullable: true required: - id @@ -41401,7 +41450,7 @@ paths: - slug - parent examples: - default: *312 + default: *333 headers: Link: *40 '404': @@ -41431,7 +41480,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *73 - - *252 + - *273 - *17 - *19 responses: @@ -41459,13 +41508,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &352 + items: &374 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *310 - required: *311 + properties: *331 + required: *332 name: nullable: true type: string @@ -41560,7 +41609,7 @@ paths: - type - url examples: - default: *300 + default: *321 headers: Link: *40 '404': @@ -41611,7 +41660,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -41637,7 +41686,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - *73 - - *226 + - *246 requestBody: required: false content: @@ -41695,7 +41744,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -41753,7 +41802,7 @@ paths: - nuget - container - *73 - - &768 + - &771 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -41789,12 +41838,12 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: *314 + default: *335 '403': *29 '401': *25 - '400': &770 + '400': &773 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -41816,7 +41865,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &315 + - &336 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -41834,7 +41883,7 @@ paths: - docker - nuget - container - - &316 + - &337 name: package_name description: The name of the package. in: path @@ -41847,7 +41896,7 @@ paths: description: Response content: application/json: - schema: *313 + schema: *334 examples: default: value: @@ -41899,8 +41948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 responses: '204': @@ -41933,8 +41982,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 - name: token description: package token @@ -41967,8 +42016,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 - *19 - *17 @@ -41989,7 +42038,7 @@ paths: application/json: schema: type: array - items: &317 + items: &338 title: Package Version description: A version of a software package type: object @@ -42114,10 +42163,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 - - &318 + - &339 name: package_version_id description: Unique identifier of the package version. in: path @@ -42129,7 +42178,7 @@ paths: description: Response content: application/json: - schema: *317 + schema: *338 examples: default: value: @@ -42165,10 +42214,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 - - *318 + - *339 responses: '204': description: Response @@ -42200,10 +42249,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 - - *318 + - *339 responses: '204': description: Response @@ -42233,7 +42282,7 @@ paths: - *73 - *17 - *19 - - &320 + - &341 name: sort description: The property by which to sort the results. in: query @@ -42244,7 +42293,7 @@ paths: - created_at default: created_at - *91 - - &321 + - &342 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -42255,7 +42304,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &322 + - &343 name: repository description: The name of the repository to use to filter the results. in: query @@ -42263,7 +42312,7 @@ paths: schema: type: string example: Hello-World - - &323 + - &344 name: permission description: The permission to use to filter the results. in: query @@ -42271,7 +42320,7 @@ paths: schema: type: string example: issues_read - - &324 + - &345 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -42281,7 +42330,7 @@ paths: schema: type: string format: date-time - - &325 + - &346 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -42291,7 +42340,7 @@ paths: schema: type: string format: date-time - - &326 + - &347 name: token_id description: The ID of the token in: query @@ -42602,9 +42651,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -42630,14 +42679,14 @@ paths: - *73 - *17 - *19 - - *320 + - *341 - *91 - - *321 - - *322 - - *323 - - *324 - - *325 - - *326 + - *342 + - *343 + - *344 + - *345 + - *346 + - *347 responses: '500': *88 '422': *15 @@ -42917,9 +42966,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -42961,7 +43010,7 @@ paths: type: integer configurations: type: array - items: &327 + items: &348 title: Organization private registry description: Private registry configuration for an organization type: object @@ -42983,6 +43032,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with @@ -43066,6 +43120,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -43164,6 +43223,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the @@ -43199,7 +43263,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &328 + org-private-registry-with-selected-visibility: &349 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -43289,15 +43353,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *73 - - *214 + - *234 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *327 + schema: *348 examples: - default: *328 + default: *349 '404': *6 x-github: githubCloudOnly: false @@ -43319,7 +43383,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -43341,6 +43405,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -43410,7 +43479,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *73 - - *214 + - *234 responses: '204': description: Response @@ -43456,7 +43525,7 @@ paths: application/json: schema: type: array - items: &329 + items: &350 title: Project description: Projects are a way to organize columns and cards of work. @@ -43629,7 +43698,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: default: value: @@ -43667,7 +43736,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &396 + '410': &418 description: Gone content: application/json: @@ -43833,7 +43902,7 @@ paths: required: true content: application/json: - schema: *330 + schema: *351 examples: default: value: @@ -43936,7 +44005,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &331 + items: &352 title: Custom Property Value description: Custom property name and associated value type: object @@ -44023,7 +44092,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *331 + items: *352 required: - repository_names - properties @@ -44076,7 +44145,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -44096,7 +44165,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response if user is a public member @@ -44121,7 +44190,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -44143,7 +44212,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -44214,9 +44283,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -44419,7 +44488,7 @@ paths: description: Response content: application/json: - schema: &398 + schema: &420 title: Full Repository description: Full Repository type: object @@ -44696,8 +44765,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *332 - required: *333 + properties: *353 + required: *354 nullable: true temp_clone_token: type: string @@ -44784,8 +44853,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true organization: title: Simple User @@ -44812,7 +44881,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &517 + properties: &539 url: type: string format: uri @@ -44828,12 +44897,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &518 + required: &540 - url - key - name - html_url - security_and_analysis: *334 + security_and_analysis: *355 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -44917,7 +44986,7 @@ paths: - network_count - subscribers_count examples: - default: &400 + default: &422 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -45443,9 +45512,9 @@ paths: application/json: schema: type: array - items: *335 + items: *356 examples: - default: *336 + default: *357 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45470,7 +45539,7 @@ paths: - *73 - *17 - *19 - - &666 + - &668 name: targets description: | A comma-separated list of rule targets to filter by. @@ -45488,7 +45557,7 @@ paths: application/json: schema: type: array - items: *133 + items: *152 examples: default: value: @@ -45561,11 +45630,35 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *131 - conditions: *337 + conditions: *358 rules: type: array description: An array of rules within the ruleset. - items: *132 + items: &360 + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - *132 + - *133 + - *134 + - *135 + - *136 + - *137 + - *138 + - *139 + - *140 + - *141 + - *142 + - *143 + - *144 + - *145 + - *146 + - *147 + - *148 + - *149 + - *150 + - *151 required: - name - enforcement @@ -45603,9 +45696,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: &338 + default: &359 value: id: 21 name: super cool ruleset @@ -45660,7 +45753,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *73 - - &667 + - &670 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -45670,16 +45763,16 @@ paths: schema: type: string x-multi-segment: true - - *233 - - *229 - - &668 + - *253 + - *249 + - &671 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &669 + - &672 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -45699,7 +45792,7 @@ paths: description: Response content: application/json: - schema: &670 + schema: &673 title: Rule Suites description: Response type: array @@ -45754,7 +45847,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &671 + default: &674 value: - id: 21 actor_id: 12 @@ -45798,7 +45891,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *73 - - &672 + - &675 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -45814,7 +45907,7 @@ paths: description: Response content: application/json: - schema: &673 + schema: &676 title: Rule Suite description: Response type: object @@ -45913,7 +46006,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &674 + default: &677 value: id: 21 actor_id: 12 @@ -45986,9 +46079,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *338 + default: *359 '404': *6 '500': *88 put: @@ -46037,11 +46130,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *131 - conditions: *337 + conditions: *358 rules: description: An array of rules within the ruleset. type: array - items: *132 + items: *360 examples: default: value: @@ -46076,9 +46169,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *338 + default: *359 '404': *6 '500': *88 delete: @@ -46135,9 +46228,9 @@ paths: application/json: schema: type: array - items: *136 + items: *156 examples: - default: *339 + default: *361 '404': *6 '500': *88 x-github: @@ -46174,7 +46267,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *362 examples: default: value: @@ -46237,14 +46330,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *73 - - *341 - - *342 - - *343 - - *344 + - *363 + - *364 + - *365 + - *366 - *91 - *19 - *17 - - &676 + - &679 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -46254,7 +46347,7 @@ paths: required: false schema: type: string - - &677 + - &680 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -46264,10 +46357,10 @@ paths: required: false schema: type: string - - *345 - - *346 - - *347 - - *348 + - *367 + - *368 + - *369 + - *370 responses: '200': description: Response @@ -46275,13 +46368,13 @@ paths: application/json: schema: type: array - items: *349 + items: *371 examples: - default: *350 + default: *372 headers: Link: *40 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46347,7 +46440,7 @@ paths: application/json: schema: type: array - items: &698 + items: &701 description: A repository security advisory. type: object properties: @@ -46567,7 +46660,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 credits_detailed: type: array nullable: true @@ -46577,7 +46670,7 @@ paths: type: object properties: user: *4 - type: *351 + type: *373 state: type: string description: The state of the user's acceptance of the @@ -46601,7 +46694,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *235 + items: *255 private_fork: readOnly: true nullable: true @@ -46638,7 +46731,7 @@ paths: - private_fork additionalProperties: false examples: - default: &699 + default: &702 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -47025,9 +47118,9 @@ paths: application/json: schema: type: array - items: *352 + items: *374 examples: - default: *312 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47051,7 +47144,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - *73 - - *309 + - *330 responses: '204': description: Response @@ -47077,7 +47170,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - *73 - - *309 + - *330 responses: '204': description: Response @@ -47112,9 +47205,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *375 examples: - default: *354 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47139,7 +47232,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *73 - - *355 + - *377 - *17 - *19 responses: @@ -47147,9 +47240,9 @@ paths: description: Success content: application/json: - schema: *356 + schema: *378 examples: - default: *357 + default: *379 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -47177,9 +47270,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *380 examples: - default: *359 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47207,9 +47300,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *382 examples: - default: *361 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47249,7 +47342,7 @@ paths: type: array items: *116 examples: - default: *362 + default: *384 headers: Link: *40 x-github: @@ -47450,15 +47543,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *73 - - *363 + - *385 responses: '200': description: Response content: application/json: - schema: *364 + schema: *386 examples: - default: *365 + default: *387 headers: Link: *40 x-github: @@ -47496,7 +47589,7 @@ paths: description: Response content: application/json: - schema: &387 + schema: &409 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -47542,7 +47635,7 @@ paths: type: string nullable: true examples: - default: &388 + default: &410 value: groups: - group_id: '123' @@ -47588,7 +47681,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *73 - - *309 + - *330 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -47620,13 +47713,13 @@ paths: application/json: schema: type: array - items: *141 + items: *161 examples: - default: *142 + default: *162 '500': *88 '403': *29 '404': *6 - '422': *143 + '422': *163 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47654,9 +47747,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 headers: Link: *40 '403': *29 @@ -47750,7 +47843,7 @@ paths: description: Response content: application/json: - schema: &366 + schema: &388 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -47813,8 +47906,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *310 - required: *311 + properties: *331 + required: *332 nullable: true members_count: type: integer @@ -48060,7 +48153,7 @@ paths: - repos_count - organization examples: - default: &367 + default: &389 value: id: 1 node_id: MDQ6VGVhbTE= @@ -48131,15 +48224,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - *73 - - *309 + - *330 responses: '200': description: Response content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '404': *6 x-github: githubCloudOnly: false @@ -48161,7 +48254,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - *73 - - *309 + - *330 requestBody: required: false content: @@ -48223,16 +48316,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '201': description: Response content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '404': *6 '422': *15 '403': *29 @@ -48258,7 +48351,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - *73 - - *309 + - *330 responses: '204': description: Response @@ -48285,7 +48378,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - *73 - - *309 + - *330 - *91 - *17 - *19 @@ -48302,7 +48395,7 @@ paths: application/json: schema: type: array - items: &368 + items: &390 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -48381,7 +48474,7 @@ paths: type: string format: uri example: https://api.github.com/organizations/1/team/2343027/discussions/1 - reactions: *148 + reactions: *168 required: - author - body @@ -48401,7 +48494,7 @@ paths: - updated_at - url examples: - default: &739 + default: &742 value: - author: login: octocat @@ -48476,7 +48569,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - *73 - - *309 + - *330 requestBody: required: true content: @@ -48510,9 +48603,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: &369 + default: &391 value: author: login: octocat @@ -48585,8 +48678,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - *73 - - *309 - - &370 + - *330 + - &392 name: discussion_number description: The number that identifies the discussion. in: path @@ -48598,9 +48691,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *369 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48623,8 +48716,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - *73 - - *309 - - *370 + - *330 + - *392 requestBody: required: false content: @@ -48647,9 +48740,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: &740 + default: &743 value: author: login: octocat @@ -48720,8 +48813,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - *73 - - *309 - - *370 + - *330 + - *392 responses: '204': description: Response @@ -48748,8 +48841,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - *73 - - *309 - - *370 + - *330 + - *392 - *91 - *17 - *19 @@ -48760,7 +48853,7 @@ paths: application/json: schema: type: array - items: &371 + items: &393 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -48817,7 +48910,7 @@ paths: type: string format: uri example: https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1 - reactions: *148 + reactions: *168 required: - author - body @@ -48832,7 +48925,7 @@ paths: - updated_at - url examples: - default: &741 + default: &744 value: - author: login: octocat @@ -48901,8 +48994,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - *73 - - *309 - - *370 + - *330 + - *392 requestBody: required: true content: @@ -48924,9 +49017,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: &372 + default: &394 value: author: login: octocat @@ -48993,9 +49086,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - *73 - - *309 - - *370 - - &373 + - *330 + - *392 + - &395 name: comment_number description: The number that identifies the comment. in: path @@ -49007,9 +49100,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *372 + default: *394 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49032,9 +49125,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - *73 - - *309 - - *370 - - *373 + - *330 + - *392 + - *395 requestBody: required: true content: @@ -49056,9 +49149,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: &742 + default: &745 value: author: login: octocat @@ -49123,9 +49216,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *73 - - *309 - - *370 - - *373 + - *330 + - *392 + - *395 responses: '204': description: Response @@ -49152,9 +49245,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *73 - - *309 - - *370 - - *373 + - *330 + - *392 + - *395 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -49180,7 +49273,7 @@ paths: application/json: schema: type: array - items: &374 + items: &396 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -49223,7 +49316,7 @@ paths: - content - created_at examples: - default: &376 + default: &398 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -49274,9 +49367,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *73 - - *309 - - *370 - - *373 + - *330 + - *392 + - *395 requestBody: required: true content: @@ -49309,9 +49402,9 @@ paths: team discussion comment content: application/json: - schema: *374 + schema: *396 examples: - default: &375 + default: &397 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -49340,9 +49433,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49366,10 +49459,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *73 - - *309 - - *370 - - *373 - - &377 + - *330 + - *392 + - *395 + - &399 name: reaction_id description: The unique identifier of the reaction. in: path @@ -49402,8 +49495,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *73 - - *309 - - *370 + - *330 + - *392 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -49429,9 +49522,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -49458,8 +49551,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *73 - - *309 - - *370 + - *330 + - *392 requestBody: required: true content: @@ -49491,16 +49584,16 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -49524,9 +49617,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - *73 - - *309 - - *370 - - *377 + - *330 + - *392 + - *399 responses: '204': description: Response @@ -49550,15 +49643,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *73 - - *309 + - *330 responses: '200': description: Response content: application/json: - schema: *378 + schema: *400 examples: - default: *379 + default: *401 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -49578,7 +49671,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *73 - - *309 + - *330 requestBody: required: true content: @@ -49601,9 +49694,9 @@ paths: description: Response content: application/json: - schema: *380 + schema: *402 examples: - default: *381 + default: *403 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -49623,7 +49716,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *73 - - *309 + - *330 responses: '204': description: Response @@ -49648,7 +49741,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - *73 - - *309 + - *330 - *17 - *19 responses: @@ -49658,9 +49751,9 @@ paths: application/json: schema: type: array - items: *292 + items: *313 examples: - default: *293 + default: *314 headers: Link: *40 x-github: @@ -49683,7 +49776,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - *73 - - *309 + - *330 - name: role description: Filters members returned by their role in the team. in: query @@ -49706,7 +49799,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -49737,14 +49830,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - *73 - - *309 - - *226 + - *330 + - *246 responses: '200': description: Response content: application/json: - schema: &382 + schema: &404 title: Team Membership description: Team Membership type: object @@ -49771,7 +49864,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &743 + response-if-user-is-a-team-maintainer: &746 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -49808,8 +49901,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *73 - - *309 - - *226 + - *330 + - *246 requestBody: required: false content: @@ -49834,9 +49927,9 @@ paths: description: Response content: application/json: - schema: *382 + schema: *404 examples: - response-if-users-membership-with-team-is-now-pending: &744 + response-if-users-membership-with-team-is-now-pending: &747 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -49872,8 +49965,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - *73 - - *309 - - *226 + - *330 + - *246 responses: '204': description: Response @@ -49899,7 +49992,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - *73 - - *309 + - *330 - *17 - *19 responses: @@ -49909,7 +50002,7 @@ paths: application/json: schema: type: array - items: &383 + items: &405 title: Team Project description: A team's access to a project. type: object @@ -49977,7 +50070,7 @@ paths: - updated_at - permissions examples: - default: &745 + default: &748 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -50041,8 +50134,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - *73 - - *309 - - &384 + - *330 + - &406 name: project_id description: The unique identifier of the project. in: path @@ -50054,9 +50147,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *405 examples: - default: &746 + default: &749 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -50119,8 +50212,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - *73 - - *309 - - *384 + - *330 + - *406 requestBody: required: false content: @@ -50187,8 +50280,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - *73 - - *309 - - *384 + - *330 + - *406 responses: '204': description: Response @@ -50216,7 +50309,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - *73 - - *309 + - *330 - *17 - *19 responses: @@ -50226,9 +50319,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -50258,15 +50351,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - *73 - - *309 - - *385 - - *386 + - *330 + - *407 + - *408 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &747 + schema: &750 title: Team Repository description: A team's access to a repository. type: object @@ -50289,8 +50382,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true forks: type: integer @@ -50836,9 +50929,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - *73 - - *309 - - *385 - - *386 + - *330 + - *407 + - *408 requestBody: required: false content: @@ -50884,9 +50977,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - *73 - - *309 - - *385 - - *386 + - *330 + - *407 + - *408 responses: '204': description: Response @@ -50913,15 +51006,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - *73 - - *309 + - *330 responses: '200': description: Response content: application/json: - schema: *387 + schema: *409 examples: - default: *388 + default: *410 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -50944,7 +51037,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - *73 - - *309 + - *330 requestBody: required: true content: @@ -50987,7 +51080,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *409 examples: default: value: @@ -51020,7 +51113,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - *73 - - *309 + - *330 - *17 - *19 responses: @@ -51030,9 +51123,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - response-if-child-teams-exist: &748 + response-if-child-teams-exist: &751 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -51159,7 +51252,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#get-a-project-card parameters: - - &389 + - &411 name: card_id description: The unique identifier of the card. in: path @@ -51171,7 +51264,7 @@ paths: description: Response content: application/json: - schema: &390 + schema: &412 title: Project Card description: Project cards represent a scope of work. type: object @@ -51238,7 +51331,7 @@ paths: - created_at - updated_at examples: - default: &391 + default: &413 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -51294,7 +51387,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#update-an-existing-project-card parameters: - - *389 + - *411 requestBody: required: false content: @@ -51321,9 +51414,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *412 examples: - default: *391 + default: *413 '304': *37 '403': *29 '401': *25 @@ -51350,7 +51443,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#delete-a-project-card parameters: - - *389 + - *411 responses: '204': description: Response @@ -51394,7 +51487,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#move-a-project-card parameters: - - *389 + - *411 requestBody: required: true content: @@ -51505,7 +51598,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#get-a-project-column parameters: - - &392 + - &414 name: column_id description: The unique identifier of the column. in: path @@ -51517,7 +51610,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &415 title: Project Column description: Project columns contain cards of work. type: object @@ -51563,7 +51656,7 @@ paths: - created_at - updated_at examples: - default: &394 + default: &416 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -51598,7 +51691,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#update-an-existing-project-column parameters: - - *392 + - *414 requestBody: required: true content: @@ -51622,9 +51715,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *415 examples: - default: *394 + default: *416 '304': *37 '403': *29 '401': *25 @@ -51649,7 +51742,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#delete-a-project-column parameters: - - *392 + - *414 responses: '204': description: Response @@ -51678,7 +51771,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#list-project-cards parameters: - - *392 + - *414 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -51699,7 +51792,7 @@ paths: application/json: schema: type: array - items: *390 + items: *412 examples: default: value: @@ -51758,7 +51851,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#create-a-project-card parameters: - - *392 + - *414 requestBody: required: true content: @@ -51798,9 +51891,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *412 examples: - default: *391 + default: *413 '304': *37 '403': *29 '401': *25 @@ -51810,8 +51903,8 @@ paths: application/json: schema: oneOf: - - *187 - - *188 + - *207 + - *208 '503': description: Response content: @@ -51856,7 +51949,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#move-a-project-column parameters: - - *392 + - *414 requestBody: required: true content: @@ -51916,15 +52009,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-a-project parameters: - - *384 + - *406 responses: '200': description: Response content: application/json: - schema: *329 + schema: *350 examples: - default: &395 + default: &417 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -51981,7 +52074,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#update-a-project parameters: - - *384 + - *406 requestBody: required: false content: @@ -52027,9 +52120,9 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: - default: *395 + default: *417 '404': description: Not Found if the authenticated user does not have access to the project @@ -52050,7 +52143,7 @@ paths: items: type: string '401': *25 - '410': *396 + '410': *418 '422': *7 x-github: githubCloudOnly: false @@ -52073,7 +52166,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#delete-a-project parameters: - - *384 + - *406 responses: '204': description: Delete Success @@ -52094,7 +52187,7 @@ paths: items: type: string '401': *25 - '410': *396 + '410': *418 '404': *6 x-github: githubCloudOnly: false @@ -52118,7 +52211,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#list-project-collaborators parameters: - - *384 + - *406 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -52145,7 +52238,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -52175,8 +52268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#add-project-collaborator parameters: - - *384 - - *226 + - *406 + - *246 requestBody: required: false content: @@ -52228,8 +52321,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *384 - - *226 + - *406 + - *246 responses: '204': description: Response @@ -52260,8 +52353,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *384 - - *226 + - *406 + - *246 responses: '200': description: Response @@ -52334,7 +52427,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#list-project-columns parameters: - - *384 + - *406 - *17 - *19 responses: @@ -52344,7 +52437,7 @@ paths: application/json: schema: type: array - items: *393 + items: *415 examples: default: value: @@ -52382,7 +52475,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#create-a-project-column parameters: - - *384 + - *406 requestBody: required: true content: @@ -52405,7 +52498,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *415 examples: default: value: @@ -52470,7 +52563,7 @@ paths: resources: type: object properties: - core: &397 + core: &419 title: Rate Limit type: object properties: @@ -52487,21 +52580,21 @@ paths: - remaining - reset - used - graphql: *397 - search: *397 - code_search: *397 - source_import: *397 - integration_manifest: *397 - code_scanning_upload: *397 - actions_runner_registration: *397 - scim: *397 - dependency_snapshots: *397 - dependency_sbom: *397 - code_scanning_autofix: *397 + graphql: *419 + search: *419 + code_search: *419 + source_import: *419 + integration_manifest: *419 + code_scanning_upload: *419 + actions_runner_registration: *419 + scim: *419 + dependency_snapshots: *419 + dependency_sbom: *419 + code_scanning_autofix: *419 required: - core - search - rate: *397 + rate: *419 required: - rate - resources @@ -52605,14 +52698,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *398 + schema: *420 examples: default-response: summary: Default response @@ -53117,7 +53210,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *399 + '301': *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53135,8 +53228,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -53393,10 +53486,10 @@ paths: description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 - '307': &401 + default: *422 + '307': &423 description: Temporary Redirect content: application/json: @@ -53425,8 +53518,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -53448,7 +53541,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *401 + '307': *423 '404': *6 '409': *99 x-github: @@ -53472,11 +53565,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 - - &416 + - &438 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -53499,7 +53592,7 @@ paths: type: integer artifacts: type: array - items: &402 + items: &424 title: Artifact description: An artifact type: object @@ -53577,7 +53670,7 @@ paths: - expires_at - updated_at examples: - default: &417 + default: &439 value: total_count: 2 artifacts: @@ -53638,9 +53731,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *385 - - *386 - - &403 + - *407 + - *408 + - &425 name: artifact_id description: The unique identifier of the artifact. in: path @@ -53652,7 +53745,7 @@ paths: description: Response content: application/json: - schema: *402 + schema: *424 examples: default: value: @@ -53690,9 +53783,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *385 - - *386 - - *403 + - *407 + - *408 + - *425 responses: '204': description: Response @@ -53716,9 +53809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *385 - - *386 - - *403 + - *407 + - *408 + - *425 - name: archive_format in: path required: true @@ -53732,7 +53825,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53755,14 +53848,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *404 + schema: *426 examples: default: value: @@ -53788,11 +53881,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 - - &405 + - &427 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -53826,7 +53919,7 @@ paths: description: Response content: application/json: - schema: &406 + schema: &428 title: Repository actions caches description: Repository actions caches type: object @@ -53868,7 +53961,7 @@ paths: - total_count - actions_caches examples: - default: &407 + default: &429 value: total_count: 1 actions_caches: @@ -53900,23 +53993,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *385 - - *386 + - *407 + - *408 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *405 + - *427 responses: '200': description: Response content: application/json: - schema: *406 + schema: *428 examples: - default: *407 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53936,8 +54029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *385 - - *386 + - *407 + - *408 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -53968,9 +54061,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *385 - - *386 - - &408 + - *407 + - *408 + - &430 name: job_id description: The unique identifier of the job. in: path @@ -53982,7 +54075,7 @@ paths: description: Response content: application/json: - schema: &420 + schema: &442 title: Job description: Information of a job execution in a workflow run type: object @@ -54289,9 +54382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *385 - - *386 + - *407 - *408 + - *430 responses: '302': description: Response @@ -54319,9 +54412,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *385 - - *386 + - *407 - *408 + - *430 requestBody: required: false content: @@ -54342,7 +54435,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -54366,8 +54459,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Status response @@ -54417,8 +54510,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -54452,7 +54545,7 @@ paths: description: Empty response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -54481,8 +54574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -54500,7 +54593,7 @@ paths: type: integer secrets: type: array - items: &422 + items: &444 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -54520,7 +54613,7 @@ paths: - created_at - updated_at examples: - default: &423 + default: &445 value: total_count: 2 secrets: @@ -54553,9 +54646,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *385 - - *386 - - *409 + - *407 + - *408 + - *431 - *19 responses: '200': @@ -54572,7 +54665,7 @@ paths: type: integer variables: type: array - items: &426 + items: &448 title: Actions Variable type: object properties: @@ -54602,7 +54695,7 @@ paths: - created_at - updated_at examples: - default: &427 + default: &449 value: total_count: 2 variables: @@ -54635,8 +54728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -54645,11 +54738,11 @@ paths: schema: type: object properties: - enabled: &410 + enabled: &432 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *49 - selected_actions_url: *197 + selected_actions_url: *217 required: - enabled examples: @@ -54678,8 +54771,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -54690,7 +54783,7 @@ paths: schema: type: object properties: - enabled: *410 + enabled: *432 allowed_actions: *49 required: - enabled @@ -54721,14 +54814,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: &411 + schema: &433 type: object properties: access_level: @@ -54746,7 +54839,7 @@ paths: required: - access_level examples: - default: &412 + default: &434 value: access_level: organization x-github: @@ -54771,15 +54864,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: application/json: - schema: *411 + schema: *433 examples: - default: *412 + default: *434 responses: '204': description: Response @@ -54803,8 +54896,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -54835,8 +54928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -54868,14 +54961,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *200 + schema: *220 examples: default: *55 x-github: @@ -54898,8 +54991,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Success response @@ -54910,7 +55003,7 @@ paths: required: true content: application/json: - schema: *201 + schema: *221 examples: default: *55 x-github: @@ -54939,8 +55032,8 @@ paths: in: query schema: type: string - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -54984,8 +55077,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -54993,9 +55086,9 @@ paths: application/json: schema: type: array - items: *205 + items: *225 examples: - default: *206 + default: *226 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55017,8 +55110,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -55061,7 +55154,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *207 + '201': *227 '404': *6 '422': *7 '409': *99 @@ -55092,8 +55185,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '201': description: Response @@ -55101,7 +55194,7 @@ paths: application/json: schema: *65 examples: - default: *208 + default: *228 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55129,8 +55222,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '201': description: Response @@ -55138,7 +55231,7 @@ paths: application/json: schema: *65 examples: - default: *209 + default: *229 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55160,8 +55253,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 responses: '200': @@ -55170,7 +55263,7 @@ paths: application/json: schema: *62 examples: - default: *210 + default: *230 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55191,8 +55284,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 responses: '204': @@ -55219,8 +55312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 responses: '200': *67 @@ -55245,8 +55338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 requestBody: required: true @@ -55295,8 +55388,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 requestBody: required: true @@ -55346,11 +55439,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 responses: - '200': *211 + '200': *231 '404': *6 x-github: githubCloudOnly: false @@ -55377,10 +55470,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 - - *212 + - *232 responses: '200': *67 '404': *6 @@ -55408,9 +55501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *385 - - *386 - - &430 + - *407 + - *408 + - &452 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -55418,7 +55511,7 @@ paths: required: false schema: type: string - - &431 + - &453 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -55426,7 +55519,7 @@ paths: required: false schema: type: string - - &432 + - &454 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -55435,7 +55528,7 @@ paths: required: false schema: type: string - - &433 + - &455 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -55462,7 +55555,7 @@ paths: - pending - *17 - *19 - - &434 + - &456 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -55471,7 +55564,7 @@ paths: schema: type: string format: date-time - - &413 + - &435 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -55480,13 +55573,13 @@ paths: schema: type: boolean default: false - - &435 + - &457 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &436 + - &458 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -55509,7 +55602,7 @@ paths: type: integer workflow_runs: type: array - items: &414 + items: &436 title: Workflow Run description: An invocation of a workflow type: object @@ -55604,7 +55697,7 @@ paths: that triggered the run. type: array nullable: true - items: &457 + items: &479 title: Pull Request Minimal type: object properties: @@ -55723,7 +55816,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &461 + properties: &483 id: type: string description: SHA for the commit @@ -55774,7 +55867,7 @@ paths: - name - email nullable: true - required: &462 + required: &484 - id - tree_id - message @@ -55782,8 +55875,8 @@ paths: - author - committer nullable: true - repository: *204 - head_repository: *204 + repository: *224 + head_repository: *224 head_repository_id: type: integer example: 5 @@ -55821,7 +55914,7 @@ paths: - workflow_url - pull_requests examples: - default: &437 + default: &459 value: total_count: 1 workflow_runs: @@ -56057,24 +56150,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *385 - - *386 - - &415 + - *407 + - *408 + - &437 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *413 + - *435 responses: '200': description: Response content: application/json: - schema: *414 + schema: *436 examples: - default: &418 + default: &440 value: id: 30433642 name: Build @@ -56315,9 +56408,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '204': description: Response @@ -56340,9 +56433,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '200': description: Response @@ -56461,15 +56554,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '201': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -56496,12 +56589,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 - *17 - *19 - - *416 + - *438 responses: '200': description: Response @@ -56517,9 +56610,9 @@ paths: type: integer artifacts: type: array - items: *402 + items: *424 examples: - default: *417 + default: *439 headers: Link: *40 x-github: @@ -56543,25 +56636,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *385 - - *386 - - *415 - - &419 + - *407 + - *408 + - *437 + - &441 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *413 + - *435 responses: '200': description: Response content: application/json: - schema: *414 + schema: *436 examples: - default: *418 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56584,10 +56677,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *385 - - *386 - - *415 - - *419 + - *407 + - *408 + - *437 + - *441 - *17 - *19 responses: @@ -56605,9 +56698,9 @@ paths: type: integer jobs: type: array - items: *420 + items: *442 examples: - default: &421 + default: &443 value: total_count: 1 jobs: @@ -56720,10 +56813,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *385 - - *386 - - *415 - - *419 + - *407 + - *408 + - *437 + - *441 responses: '302': description: Response @@ -56751,15 +56844,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '202': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -56786,9 +56879,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 requestBody: required: true content: @@ -56855,15 +56948,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '202': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -56890,9 +56983,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -56922,9 +57015,9 @@ paths: type: integer jobs: type: array - items: *420 + items: *442 examples: - default: *421 + default: *443 headers: Link: *40 x-github: @@ -56949,9 +57042,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '302': description: Response @@ -56978,9 +57071,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '204': description: Response @@ -57007,9 +57100,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '200': description: Response @@ -57069,7 +57162,7 @@ paths: items: type: object properties: - type: &547 + type: &569 type: string description: The type of reviewer. enum: @@ -57079,7 +57172,7 @@ paths: reviewer: anyOf: - *4 - - *235 + - *255 required: - environment - wait_timer @@ -57154,9 +57247,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 requestBody: required: true content: @@ -57203,7 +57296,7 @@ paths: application/json: schema: type: array - items: &533 + items: &555 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -57291,8 +57384,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 required: - id - node_id @@ -57309,7 +57402,7 @@ paths: - created_at - updated_at examples: - default: &534 + default: &556 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -57365,9 +57458,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 requestBody: required: false content: @@ -57388,7 +57481,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57411,9 +57504,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 requestBody: required: false content: @@ -57434,7 +57527,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57467,9 +57560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '200': description: Response @@ -57606,8 +57699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -57625,9 +57718,9 @@ paths: type: integer secrets: type: array - items: *422 + items: *444 examples: - default: *423 + default: *445 headers: Link: *40 x-github: @@ -57652,16 +57745,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *424 + schema: *446 examples: - default: *425 + default: *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57683,17 +57776,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '200': description: Response content: application/json: - schema: *422 + schema: *444 examples: - default: &560 + default: &582 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -57719,9 +57812,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 requestBody: required: true content: @@ -57752,7 +57845,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57778,9 +57871,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '204': description: Response @@ -57805,9 +57898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *385 - - *386 - - *409 + - *407 + - *408 + - *431 - *19 responses: '200': @@ -57824,9 +57917,9 @@ paths: type: integer variables: type: array - items: *426 + items: *448 examples: - default: *427 + default: *449 headers: Link: *40 x-github: @@ -57849,8 +57942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -57877,7 +57970,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57902,17 +57995,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *385 - - *386 - - *217 + - *407 + - *408 + - *237 responses: '200': description: Response content: application/json: - schema: *426 + schema: *448 examples: - default: &561 + default: &583 value: name: USERNAME value: octocat @@ -57938,9 +58031,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *385 - - *386 - - *217 + - *407 + - *408 + - *237 requestBody: required: true content: @@ -57982,9 +58075,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *385 - - *386 - - *217 + - *407 + - *408 + - *237 responses: '204': description: Response @@ -58009,8 +58102,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -58028,7 +58121,7 @@ paths: type: integer workflows: type: array - items: &428 + items: &450 title: Workflow description: A GitHub Actions workflow type: object @@ -58135,9 +58228,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *385 - - *386 - - &429 + - *407 + - *408 + - &451 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -58152,7 +58245,7 @@ paths: description: Response content: application/json: - schema: *428 + schema: *450 examples: default: value: @@ -58185,9 +58278,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *385 - - *386 - - *429 + - *407 + - *408 + - *451 responses: '204': description: Response @@ -58212,9 +58305,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *385 - - *386 - - *429 + - *407 + - *408 + - *451 responses: '204': description: Response @@ -58265,9 +58358,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *385 - - *386 - - *429 + - *407 + - *408 + - *451 responses: '204': description: Response @@ -58294,19 +58387,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *385 - - *386 - - *429 - - *430 - - *431 - - *432 - - *433 + - *407 + - *408 + - *451 + - *452 + - *453 + - *454 + - *455 - *17 - *19 - - *434 - - *413 + - *456 - *435 - - *436 + - *457 + - *458 responses: '200': description: Response @@ -58322,9 +58415,9 @@ paths: type: integer workflow_runs: type: array - items: *414 + items: *436 examples: - default: *437 + default: *459 headers: Link: *40 x-github: @@ -58357,9 +58450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *385 - - *386 - - *429 + - *407 + - *408 + - *451 responses: '200': description: Response @@ -58420,8 +58513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *385 - - *386 + - *407 + - *408 - *91 - *17 - *89 @@ -58585,8 +58678,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -58598,7 +58691,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -58623,8 +58716,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *385 - - *386 + - *407 + - *408 - name: assignee in: path required: true @@ -58660,8 +58753,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -58773,8 +58866,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *89 - *90 @@ -58828,7 +58921,7 @@ paths: bundle_url: type: string examples: - default: *438 + default: *460 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58848,8 +58941,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -58857,7 +58950,7 @@ paths: application/json: schema: type: array - items: &439 + items: &461 title: Autolink reference description: An autolink reference. type: object @@ -58907,8 +59000,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -58947,9 +59040,9 @@ paths: description: response content: application/json: - schema: *439 + schema: *461 examples: - default: &440 + default: &462 value: id: 1 key_prefix: TICKET- @@ -58980,9 +59073,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *385 - - *386 - - &441 + - *407 + - *408 + - &463 name: autolink_id description: The unique identifier of the autolink. in: path @@ -58994,9 +59087,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *461 examples: - default: *440 + default: *462 '404': *6 x-github: githubCloudOnly: false @@ -59016,9 +59109,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *385 - - *386 - - *441 + - *407 + - *408 + - *463 responses: '204': description: Response @@ -59042,8 +59135,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response if Dependabot is enabled @@ -59091,8 +59184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -59113,8 +59206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -59134,8 +59227,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *385 - - *386 + - *407 + - *408 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -59173,7 +59266,7 @@ paths: - url protected: type: boolean - protection: &443 + protection: &465 title: Branch Protection description: Branch Protection type: object @@ -59215,7 +59308,7 @@ paths: required: - contexts - checks - enforce_admins: &446 + enforce_admins: &468 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -59230,7 +59323,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &448 + required_pull_request_reviews: &470 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -59251,7 +59344,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *235 + items: *255 apps: description: The list of apps with review dismissal access. @@ -59280,7 +59373,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *235 + items: *255 apps: description: The list of apps allowed to bypass pull request requirements. @@ -59306,7 +59399,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &445 + restrictions: &467 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -59613,9 +59706,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *385 - - *386 - - &444 + - *407 + - *408 + - &466 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -59629,14 +59722,14 @@ paths: description: Response content: application/json: - schema: &454 + schema: &476 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &506 + commit: &528 title: Commit description: Commit type: object @@ -59670,7 +59763,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &442 + properties: &464 name: type: string example: '"Chris Wanstrath"' @@ -59685,7 +59778,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *442 + properties: *464 nullable: true message: type: string @@ -59706,7 +59799,7 @@ paths: required: - sha - url - verification: &567 + verification: &589 title: Verification type: object properties: @@ -59740,12 +59833,12 @@ paths: nullable: true oneOf: - *4 - - *215 + - *235 committer: nullable: true oneOf: - *4 - - *215 + - *235 parents: type: array items: @@ -59776,7 +59869,7 @@ paths: type: integer files: type: array - items: &521 + items: &543 title: Diff Entry description: Diff Entry type: object @@ -59859,7 +59952,7 @@ paths: - self protected: type: boolean - protection: *443 + protection: *465 protection_url: type: string format: uri @@ -59966,7 +60059,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *399 + '301': *421 '404': *6 x-github: githubCloudOnly: false @@ -59988,15 +60081,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *443 + schema: *465 examples: default: value: @@ -60190,9 +60283,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -60447,7 +60540,7 @@ paths: url: type: string format: uri - required_status_checks: &451 + required_status_checks: &473 title: Status Check Policy description: Status Check Policy type: object @@ -60523,7 +60616,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 apps: type: array items: *5 @@ -60541,7 +60634,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 apps: type: array items: *5 @@ -60599,7 +60692,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *445 + restrictions: *467 required_conversation_resolution: type: object properties: @@ -60711,9 +60804,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -60738,17 +60831,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *446 + schema: *468 examples: - default: &447 + default: &469 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -60770,17 +60863,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *446 + schema: *468 examples: - default: *447 + default: *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60799,9 +60892,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -60826,17 +60919,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *448 + schema: *470 examples: - default: &449 + default: &471 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -60932,9 +61025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -61032,9 +61125,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *470 examples: - default: *449 + default: *471 '422': *15 x-github: githubCloudOnly: false @@ -61055,9 +61148,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -61084,17 +61177,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *446 + schema: *468 examples: - default: &450 + default: &472 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -61117,17 +61210,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *446 + schema: *468 examples: - default: *450 + default: *472 '404': *6 x-github: githubCloudOnly: false @@ -61147,9 +61240,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -61174,17 +61267,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *451 + schema: *473 examples: - default: &452 + default: &474 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -61210,9 +61303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -61264,9 +61357,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *473 examples: - default: *452 + default: *474 '404': *6 '422': *15 x-github: @@ -61288,9 +61381,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -61314,9 +61407,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response @@ -61350,9 +61443,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -61419,9 +61512,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -61485,9 +61578,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: content: application/json: @@ -61553,15 +61646,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *445 + schema: *467 examples: default: value: @@ -61652,9 +61745,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -61677,9 +61770,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response @@ -61689,7 +61782,7 @@ paths: type: array items: *5 examples: - default: &453 + default: &475 value: - id: 1 slug: octoapp @@ -61746,9 +61839,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -61782,7 +61875,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61803,9 +61896,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -61839,7 +61932,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61860,9 +61953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -61896,7 +61989,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61918,9 +62011,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response @@ -61928,9 +62021,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '404': *6 x-github: githubCloudOnly: false @@ -61950,9 +62043,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -61988,9 +62081,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62011,9 +62104,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -62049,9 +62142,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62072,9 +62165,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: content: application/json: @@ -62109,9 +62202,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62133,9 +62226,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response @@ -62145,7 +62238,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '404': *6 x-github: githubCloudOnly: false @@ -62169,9 +62262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -62204,7 +62297,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62229,9 +62322,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -62264,7 +62357,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62289,9 +62382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -62324,7 +62417,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62351,9 +62444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -62375,7 +62468,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *476 examples: default: value: @@ -62489,12 +62582,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *385 - - *386 - - *227 - - *228 - - *229 - - *230 + - *407 + - *408 + - *247 + - *248 + - *249 + - *250 - *17 - *19 responses: @@ -62504,9 +62597,9 @@ paths: application/json: schema: type: array - items: *231 + items: *251 examples: - default: *232 + default: *252 '404': *6 '500': *88 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -62526,8 +62619,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62541,7 +62634,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *251 examples: default: value: @@ -62600,12 +62693,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 - - *227 - - *228 - - *229 - - *230 + - *407 + - *408 + - *247 + - *248 + - *249 + - *250 - *17 - *19 responses: @@ -62615,9 +62708,9 @@ paths: application/json: schema: type: array - items: *455 + items: *477 examples: - default: *456 + default: *478 '404': *6 '403': *29 '500': *88 @@ -62641,8 +62734,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62654,7 +62747,7 @@ paths: description: A single bypass request. content: application/json: - schema: *455 + schema: *477 examples: default: value: @@ -62712,8 +62805,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62784,8 +62877,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_response_id in: path required: true @@ -62818,8 +62911,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -63098,7 +63191,7 @@ paths: description: Response content: application/json: - schema: &458 + schema: &480 title: CheckRun description: A check performed on the code of a given code change type: object @@ -63209,16 +63302,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *457 - deployment: &802 + items: *479 + deployment: &805 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -63285,8 +63378,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 required: - id - node_id @@ -63498,9 +63591,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *385 - - *386 - - &459 + - *407 + - *408 + - &481 name: check_run_id description: The unique identifier of the check run. in: path @@ -63512,9 +63605,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *480 examples: - default: &460 + default: &482 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -63614,9 +63707,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *385 - - *386 - - *459 + - *407 + - *408 + - *481 requestBody: required: true content: @@ -63856,9 +63949,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *480 examples: - default: *460 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63878,9 +63971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *385 - - *386 - - *459 + - *407 + - *408 + - *481 - *17 - *19 responses: @@ -63975,15 +64068,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *385 - - *386 - - *459 + - *407 + - *408 + - *481 responses: '201': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -64021,8 +64114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -64044,7 +64137,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &463 + schema: &485 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -64108,7 +64201,7 @@ paths: nullable: true pull_requests: type: array - items: *457 + items: *479 nullable: true app: title: GitHub app @@ -64119,9 +64212,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 - repository: *204 + properties: *165 + required: *166 + repository: *224 created_at: type: string format: date-time @@ -64130,12 +64223,12 @@ paths: type: string format: date-time nullable: true - head_commit: &828 + head_commit: &831 title: Simple Commit description: A commit. type: object - properties: *461 - required: *462 + properties: *483 + required: *484 latest_check_runs_count: type: integer check_runs_url: @@ -64163,7 +64256,7 @@ paths: - check_runs_url - pull_requests examples: - default: &464 + default: &486 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -64454,9 +64547,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *463 + schema: *485 examples: - default: *464 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64475,8 +64568,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -64537,7 +64630,7 @@ paths: required: - app_id - setting - repository: *204 + repository: *224 examples: default: value: @@ -64785,9 +64878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *385 - - *386 - - &465 + - *407 + - *408 + - &487 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -64799,9 +64892,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *485 examples: - default: *464 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64824,17 +64917,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *385 - - *386 - - *465 - - &514 + - *407 + - *408 + - *487 + - &536 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &515 + - &537 name: status description: Returns check runs with the specified `status`. in: query @@ -64873,9 +64966,9 @@ paths: type: integer check_runs: type: array - items: *458 + items: *480 examples: - default: &516 + default: &538 value: total_count: 1 check_runs: @@ -64977,15 +65070,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *385 - - *386 - - *465 + - *407 + - *408 + - *487 responses: '201': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -65012,21 +65105,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *385 - - *386 - - *239 - - *240 + - *407 + - *408 + - *259 + - *260 - *19 - *17 - - &481 + - &503 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *466 - - &482 + schema: *488 + - &504 name: pr description: The number of the pull request for the results you want to list. in: query @@ -65051,13 +65144,13 @@ paths: be returned. in: query required: false - schema: *241 + schema: *261 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *467 + schema: *489 responses: '200': description: Response @@ -65073,7 +65166,7 @@ paths: updated_at: *111 url: *108 html_url: *109 - instances_url: *468 + instances_url: *490 state: *94 fixed_at: *113 dismissed_by: @@ -65084,11 +65177,11 @@ paths: required: *21 nullable: true dismissed_at: *112 - dismissed_reason: *469 - dismissed_comment: *470 - rule: *471 - tool: *472 - most_recent_instance: *473 + dismissed_reason: *491 + dismissed_comment: *492 + rule: *493 + tool: *494 + most_recent_instance: *495 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -65211,14 +65304,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &474 + '403': &496 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65238,9 +65331,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *385 - - *386 - - &475 + - *407 + - *408 + - &497 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -65254,7 +65347,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &498 type: object properties: number: *103 @@ -65262,7 +65355,7 @@ paths: updated_at: *111 url: *108 html_url: *109 - instances_url: *468 + instances_url: *490 state: *94 fixed_at: *113 dismissed_by: @@ -65273,8 +65366,8 @@ paths: required: *21 nullable: true dismissed_at: *112 - dismissed_reason: *469 - dismissed_comment: *470 + dismissed_reason: *491 + dismissed_comment: *492 rule: type: object properties: @@ -65328,8 +65421,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *472 - most_recent_instance: *473 + tool: *494 + most_recent_instance: *495 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -65425,9 +65518,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65445,9 +65538,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 requestBody: required: true content: @@ -65462,8 +65555,8 @@ paths: enum: - open - dismissed - dismissed_reason: *469 - dismissed_comment: *470 + dismissed_reason: *491 + dismissed_comment: *492 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -65482,7 +65575,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *498 examples: default: value: @@ -65558,14 +65651,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &480 + '403': &502 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65585,15 +65678,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 responses: '200': description: Response content: application/json: - schema: &477 + schema: &499 type: object properties: status: @@ -65619,13 +65712,13 @@ paths: - description - started_at examples: - default: &478 + default: &500 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &479 + '400': &501 description: Bad Request content: application/json: @@ -65636,9 +65729,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65661,29 +65754,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 responses: '200': description: OK content: application/json: - schema: *477 + schema: *499 examples: - default: *478 + default: *500 '202': description: Accepted content: application/json: - schema: *477 + schema: *499 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *479 + '400': *501 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -65693,7 +65786,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65715,9 +65808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 requestBody: required: false content: @@ -65762,12 +65855,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *479 - '403': *480 + '400': *501 + '403': *502 '404': *6 '422': description: Unprocessable Entity - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65787,13 +65880,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 - *19 - *17 - - *481 - - *482 + - *503 + - *504 responses: '200': description: Response @@ -65801,7 +65894,7 @@ paths: application/json: schema: type: array - items: *473 + items: *495 examples: default: value: @@ -65840,9 +65933,9 @@ paths: end_column: 50 classifications: - source - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65874,25 +65967,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *385 - - *386 - - *239 - - *240 + - *407 + - *408 + - *259 + - *260 - *19 - *17 - - *482 + - *504 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *466 + schema: *488 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &485 + schema: &507 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -65913,23 +66006,23 @@ paths: application/json: schema: type: array - items: &486 + items: &508 type: object properties: - ref: *466 - commit_sha: &494 + ref: *488 + commit_sha: &516 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *483 + analysis_key: *505 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *484 + category: *506 error: type: string example: error reading field xyz @@ -65953,8 +66046,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *485 - tool: *472 + sarif_id: *507 + tool: *494 deletable: type: boolean warning: @@ -66015,9 +66108,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66051,8 +66144,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -66065,7 +66158,7 @@ paths: description: Response content: application/json: - schema: *486 + schema: *508 examples: response: summary: application/json response @@ -66119,14 +66212,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *474 + '403': *496 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66206,8 +66299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -66260,9 +66353,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *480 + '403': *502 '404': *6 - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66282,8 +66375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -66291,7 +66384,7 @@ paths: application/json: schema: type: array - items: &487 + items: &509 title: CodeQL Database description: A CodeQL database. type: object @@ -66402,9 +66495,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66431,8 +66524,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: language in: path description: The language of the CodeQL database. @@ -66444,7 +66537,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *509 examples: default: value: @@ -66476,11 +66569,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &523 + '302': &545 description: Found - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66500,8 +66593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *385 - - *386 + - *407 + - *408 - name: language in: path description: The language of the CodeQL database. @@ -66511,9 +66604,9 @@ paths: responses: '204': description: Response - '403': *480 + '403': *502 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66539,8 +66632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -66549,7 +66642,7 @@ paths: type: object additionalProperties: false properties: - language: &488 + language: &510 type: string description: The language targeted by the CodeQL query enum: @@ -66628,7 +66721,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &492 + schema: &514 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -66638,7 +66731,7 @@ paths: description: The ID of the variant analysis. controller_repo: *100 actor: *4 - query_language: *488 + query_language: *510 query_pack_url: type: string description: The download url for the query pack. @@ -66685,7 +66778,7 @@ paths: items: type: object properties: - repository: &489 + repository: &511 title: Repository Identifier description: Repository Identifier type: object @@ -66721,7 +66814,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &493 + analysis_status: &515 type: string description: The new status of the CodeQL variant analysis repository task. @@ -66753,7 +66846,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &490 + access_mismatch_repos: &512 type: object properties: repository_count: @@ -66767,7 +66860,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *489 + items: *511 required: - repository_count - repositories @@ -66789,8 +66882,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *490 - over_limit_repos: *490 + no_codeql_db_repos: *512 + over_limit_repos: *512 required: - access_mismatch_repos - not_found_repos @@ -66806,7 +66899,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &491 + value: &513 summary: Default response value: id: 1 @@ -66958,17 +67051,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *491 + value: *513 repository_lists: summary: Response for a successful variant analysis submission - value: *491 + value: *513 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66989,8 +67082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *385 - - *386 + - *407 + - *408 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -67002,11 +67095,11 @@ paths: description: Response content: application/json: - schema: *492 + schema: *514 examples: - default: *491 + default: *513 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67027,7 +67120,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *385 + - *407 - name: repo in: path description: The name of the controller repository. @@ -67062,7 +67155,7 @@ paths: type: object properties: repository: *100 - analysis_status: *493 + analysis_status: *515 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -67166,7 +67259,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67187,8 +67280,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -67273,9 +67366,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67294,8 +67387,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -67362,7 +67455,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -67387,7 +67480,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *480 + '403': *502 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -67401,7 +67494,7 @@ paths: content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67458,8 +67551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -67467,7 +67560,7 @@ paths: schema: type: object properties: - commit_sha: *494 + commit_sha: *516 ref: type: string description: |- @@ -67525,7 +67618,7 @@ paths: schema: type: object properties: - id: *485 + id: *507 url: type: string description: The REST API URL for checking the status of the upload. @@ -67539,11 +67632,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *480 + '403': *502 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -67562,8 +67655,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *385 - - *386 + - *407 + - *408 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -67609,10 +67702,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *474 + '403': *496 '404': description: Not Found if the sarif id does not match any upload - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -67634,8 +67727,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -67716,8 +67809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *385 - - *386 + - *407 + - *408 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -67837,8 +67930,8 @@ paths: parameters: - *17 - *19 - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -67854,7 +67947,7 @@ paths: type: integer codespaces: type: array - items: *301 + items: *322 examples: default: value: @@ -68152,8 +68245,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -68216,22 +68309,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -68255,8 +68348,8 @@ paths: parameters: - *17 - *19 - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -68320,8 +68413,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -68356,14 +68449,14 @@ paths: type: integer machines: type: array - items: &755 + items: &758 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *496 - required: *497 + properties: *518 + required: *519 examples: - default: &756 + default: &759 value: total_count: 2 machines: @@ -68403,8 +68496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *385 - - *386 + - *407 + - *408 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -68488,8 +68581,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *385 - - *386 + - *407 + - *408 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -68534,7 +68627,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68555,8 +68648,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -68574,7 +68667,7 @@ paths: type: integer secrets: type: array - items: &501 + items: &523 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -68594,7 +68687,7 @@ paths: - created_at - updated_at examples: - default: *498 + default: *520 headers: Link: *40 x-github: @@ -68617,16 +68710,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *499 + schema: *521 examples: - default: *500 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -68646,17 +68739,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '200': description: Response content: application/json: - schema: *501 + schema: *523 examples: - default: *502 + default: *524 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68676,9 +68769,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 requestBody: required: true content: @@ -68706,7 +68799,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -68730,9 +68823,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '204': description: Response @@ -68760,8 +68853,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *385 - - *386 + - *407 + - *408 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -68803,7 +68896,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &503 + properties: &525 login: type: string example: octocat @@ -68896,7 +68989,7 @@ paths: user_view_type: type: string example: public - required: &504 + required: &526 - avatar_url - events_url - followers_url @@ -68970,9 +69063,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *385 - - *386 - - *226 + - *407 + - *408 + - *246 responses: '204': description: Response if user is a collaborator @@ -69018,9 +69111,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *385 - - *386 - - *226 + - *407 + - *408 + - *246 requestBody: required: false content: @@ -69046,7 +69139,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &580 + schema: &602 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -69057,7 +69150,7 @@ paths: example: 42 type: integer format: int64 - repository: *204 + repository: *224 invitee: title: Simple User description: A GitHub user. @@ -69235,7 +69328,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *187 + schema: *207 '403': *29 x-github: triggersNotification: true @@ -69275,9 +69368,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *385 - - *386 - - *226 + - *407 + - *408 + - *246 responses: '204': description: No Content when collaborator was removed from the repository. @@ -69308,9 +69401,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *385 - - *386 - - *226 + - *407 + - *408 + - *246 responses: '200': description: if user has admin permissions @@ -69330,8 +69423,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *503 - required: *504 + properties: *525 + required: *526 nullable: true required: - permission @@ -69386,8 +69479,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -69397,7 +69490,7 @@ paths: application/json: schema: type: array - items: &505 + items: &527 title: Commit Comment description: Commit Comment type: object @@ -69438,8 +69531,8 @@ paths: updated_at: type: string format: date-time - author_association: *147 - reactions: *148 + author_association: *167 + reactions: *168 required: - url - html_url @@ -69455,7 +69548,7 @@ paths: - created_at - updated_at examples: - default: &508 + default: &530 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -69514,17 +69607,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '200': description: Response content: application/json: - schema: *505 + schema: *527 examples: - default: &509 + default: &531 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -69581,9 +69674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -69605,7 +69698,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *527 examples: default: value: @@ -69656,9 +69749,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '204': description: Response @@ -69679,9 +69772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a commit comment. @@ -69707,9 +69800,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -69730,9 +69823,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -69764,16 +69857,16 @@ paths: description: Reaction exists content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Reaction created content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -69795,10 +69888,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *385 - - *386 - - *159 - - *377 + - *407 + - *408 + - *179 + - *399 responses: '204': description: Response @@ -69847,8 +69940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *385 - - *386 + - *407 + - *408 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -69904,9 +69997,9 @@ paths: application/json: schema: type: array - items: *506 + items: *528 examples: - default: &631 + default: &653 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -70000,9 +70093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *385 - - *386 - - &507 + - *407 + - *408 + - &529 name: commit_sha description: The SHA of the commit. in: path @@ -70074,9 +70167,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *385 - - *386 - - *507 + - *407 + - *408 + - *529 - *17 - *19 responses: @@ -70086,9 +70179,9 @@ paths: application/json: schema: type: array - items: *505 + items: *527 examples: - default: *508 + default: *530 headers: Link: *40 x-github: @@ -70116,9 +70209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *385 - - *386 - - *507 + - *407 + - *408 + - *529 requestBody: required: true content: @@ -70153,9 +70246,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *527 examples: - default: *509 + default: *531 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -70183,9 +70276,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *385 - - *386 - - *507 + - *407 + - *408 + - *529 - *17 - *19 responses: @@ -70195,7 +70288,7 @@ paths: application/json: schema: type: array - items: &622 + items: &644 title: Pull Request Simple description: Pull Request Simple type: object @@ -70301,8 +70394,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *510 - required: *511 + properties: *532 + required: *533 nullable: true active_lock_reason: type: string @@ -70347,7 +70440,7 @@ paths: nullable: true requested_teams: type: array - items: *235 + items: *255 nullable: true head: type: object @@ -70398,7 +70491,7 @@ paths: _links: type: object properties: - comments: &512 + comments: &534 title: Link description: Hypermedia Link type: object @@ -70407,13 +70500,13 @@ paths: type: string required: - href - commits: *512 - statuses: *512 - html: *512 - issue: *512 - review_comments: *512 - review_comment: *512 - self: *512 + commits: *534 + statuses: *534 + html: *534 + issue: *534 + review_comments: *534 + review_comment: *534 + self: *534 required: - comments - commits @@ -70423,8 +70516,8 @@ paths: - review_comments - review_comment - self - author_association: *147 - auto_merge: &624 + author_association: *167 + auto_merge: &646 title: Auto merge description: The status of auto merging a pull request. type: object @@ -70487,7 +70580,7 @@ paths: - author_association - auto_merge examples: - default: &623 + default: &645 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -71024,11 +71117,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *385 - - *386 + - *407 + - *408 - *19 - *17 - - &513 + - &535 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -71043,9 +71136,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *528 examples: - default: &609 + default: &631 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -71132,7 +71225,7 @@ paths: '422': *15 '404': *6 '500': *88 - '503': *137 + '503': *157 '409': *99 x-github: githubCloudOnly: false @@ -71158,11 +71251,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *385 - - *386 - - *513 - - *514 - - *515 + - *407 + - *408 + - *535 + - *536 + - *537 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -71196,9 +71289,9 @@ paths: type: integer check_runs: type: array - items: *458 + items: *480 examples: - default: *516 + default: *538 headers: Link: *40 x-github: @@ -71223,9 +71316,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *385 - - *386 - - *513 + - *407 + - *408 + - *535 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -71233,7 +71326,7 @@ paths: schema: type: integer example: 1 - - *514 + - *536 - *17 - *19 responses: @@ -71251,7 +71344,7 @@ paths: type: integer check_suites: type: array - items: *463 + items: *485 examples: default: value: @@ -71451,9 +71544,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *385 - - *386 - - *513 + - *407 + - *408 + - *535 - *17 - *19 responses: @@ -71520,7 +71613,7 @@ paths: type: string total_count: type: integer - repository: *204 + repository: *224 commit_url: type: string format: uri @@ -71651,9 +71744,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *385 - - *386 - - *513 + - *407 + - *408 + - *535 - *17 - *19 responses: @@ -71663,7 +71756,7 @@ paths: application/json: schema: type: array - items: &703 + items: &706 title: Status description: The status of a commit. type: object @@ -71744,7 +71837,7 @@ paths: site_admin: false headers: Link: *40 - '301': *399 + '301': *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71772,8 +71865,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -71802,20 +71895,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *517 - required: *518 + properties: *539 + required: *540 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &519 + properties: &541 url: type: string format: uri html_url: type: string format: uri - required: &520 + required: &542 - url - html_url nullable: true @@ -71823,32 +71916,32 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true contributing: title: Community Health File type: object - properties: *519 - required: *520 + properties: *541 + required: *542 nullable: true readme: title: Community Health File type: object - properties: *519 - required: *520 + properties: *541 + required: *542 nullable: true issue_template: title: Community Health File type: object - properties: *519 - required: *520 + properties: *541 + required: *542 nullable: true pull_request_template: title: Community Health File type: object - properties: *519 - required: *520 + properties: *541 + required: *542 nullable: true required: - code_of_conduct @@ -71975,8 +72068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *385 - - *386 + - *407 + - *408 - *19 - *17 - name: basehead @@ -72019,8 +72112,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *506 - merge_base_commit: *506 + base_commit: *528 + merge_base_commit: *528 status: type: string enum: @@ -72040,10 +72133,10 @@ paths: example: 6 commits: type: array - items: *506 + items: *528 files: type: array - items: *521 + items: *543 required: - url - html_url @@ -72287,7 +72380,7 @@ paths: module Test" '404': *6 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72329,8 +72422,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *385 - - *386 + - *407 + - *408 - name: path description: path parameter in: path @@ -72473,7 +72566,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &522 + response-if-content-is-a-file: &544 summary: Response if content is a file value: type: file @@ -72605,7 +72698,7 @@ paths: - size - type - url - - &636 + - &658 title: Content File description: Content File type: object @@ -72806,7 +72899,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *522 + response-if-content-is-a-file: *544 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -72875,7 +72968,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *523 + '302': *545 '304': *37 x-github: githubCloudOnly: false @@ -72898,8 +72991,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *385 - - *386 + - *407 + - *408 - name: path description: path parameter in: path @@ -72992,7 +73085,7 @@ paths: description: Response content: application/json: - schema: &524 + schema: &546 title: File Commit description: File Commit type: object @@ -73144,7 +73237,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *546 examples: example-for-creating-a-file: value: @@ -73198,7 +73291,7 @@ paths: schema: oneOf: - *3 - - &562 + - &584 description: Repository rule violation was detected type: object properties: @@ -73219,7 +73312,7 @@ paths: items: type: object properties: - placeholder_id: &695 + placeholder_id: &698 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -73251,8 +73344,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *385 - - *386 + - *407 + - *408 - name: path description: path parameter in: path @@ -73313,7 +73406,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *546 examples: default: value: @@ -73348,7 +73441,7 @@ paths: '422': *15 '404': *6 '409': *99 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73368,8 +73461,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *385 - - *386 + - *407 + - *408 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -73492,22 +73585,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *385 - - *386 - - *255 - - *256 - - *257 - - *258 + - *407 + - *408 + - *276 + - *277 + - *278 + - *279 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *259 - - *260 - - *261 - - *262 + - *280 + - *281 + - *282 + - *283 - *91 - name: page description: "**Closing down notice**. Page number of the results to fetch. @@ -73527,8 +73620,8 @@ paths: default: 30 - *89 - *90 - - *263 - - *264 + - *284 + - *285 responses: '200': description: Response @@ -73536,7 +73629,7 @@ paths: application/json: schema: type: array - items: &527 + items: &549 type: object description: A Dependabot alert. properties: @@ -73582,7 +73675,7 @@ paths: - unknown - direct - transitive - security_advisory: *525 + security_advisory: *547 security_vulnerability: *107 url: *108 html_url: *109 @@ -73613,7 +73706,7 @@ paths: nullable: true maxLength: 280 fixed_at: *113 - auto_dismissed_at: *526 + auto_dismissed_at: *548 required: - number - state @@ -73843,9 +73936,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *385 - - *386 - - &528 + - *407 + - *408 + - &550 name: alert_number in: path description: |- @@ -73860,7 +73953,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *549 examples: default: value: @@ -73973,9 +74066,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *385 - - *386 - - *528 + - *407 + - *408 + - *550 requestBody: required: true content: @@ -74020,7 +74113,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *549 examples: default: value: @@ -74149,8 +74242,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -74168,7 +74261,7 @@ paths: type: integer secrets: type: array - items: &531 + items: &553 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -74221,16 +74314,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *529 + schema: *551 examples: - default: *530 + default: *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74250,15 +74343,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '200': description: Response content: application/json: - schema: *531 + schema: *553 examples: default: value: @@ -74284,9 +74377,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 requestBody: required: true content: @@ -74314,7 +74407,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -74338,9 +74431,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '204': description: Response @@ -74362,8 +74455,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *385 - - *386 + - *407 + - *408 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -74523,8 +74616,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -74763,8 +74856,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -74839,7 +74932,7 @@ paths: - version - url additionalProperties: false - metadata: &532 + metadata: &554 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -74872,7 +74965,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *532 + metadata: *554 resolved: type: object description: A collection of resolved package dependencies. @@ -74885,7 +74978,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *532 + metadata: *554 relationship: type: string description: A notation of whether a dependency is requested @@ -75014,8 +75107,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *385 - - *386 + - *407 + - *408 - name: sha description: The SHA recorded at creation time. in: query @@ -75055,9 +75148,9 @@ paths: application/json: schema: type: array - items: *533 + items: *555 examples: - default: *534 + default: *556 headers: Link: *40 x-github: @@ -75123,8 +75216,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -75205,7 +75298,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *555 examples: simple-example: summary: Simple example @@ -75278,9 +75371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *385 - - *386 - - &535 + - *407 + - *408 + - &557 name: deployment_id description: deployment_id parameter in: path @@ -75292,7 +75385,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *555 examples: default: value: @@ -75357,9 +75450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *385 - - *386 - - *535 + - *407 + - *408 + - *557 responses: '204': description: Response @@ -75381,9 +75474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *385 - - *386 - - *535 + - *407 + - *408 + - *557 - *17 - *19 responses: @@ -75393,7 +75486,7 @@ paths: application/json: schema: type: array - items: &536 + items: &558 title: Deployment Status description: The status of a deployment. type: object @@ -75484,8 +75577,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 required: - id - node_id @@ -75554,9 +75647,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *385 - - *386 - - *535 + - *407 + - *408 + - *557 requestBody: required: true content: @@ -75631,9 +75724,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *558 examples: - default: &537 + default: &559 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -75689,9 +75782,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *385 - - *386 - - *535 + - *407 + - *408 + - *557 - name: status_id in: path required: true @@ -75702,9 +75795,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *558 examples: - default: *537 + default: *559 '404': *6 x-github: githubCloudOnly: false @@ -75731,12 +75824,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 - - *538 - - *539 - - *540 - - *541 + - *407 + - *408 + - *560 + - *561 + - *562 + - *563 - *17 - *19 responses: @@ -75746,9 +75839,9 @@ paths: application/json: schema: type: array - items: *542 + items: *564 examples: - default: *543 + default: *565 '404': *6 '403': *29 '500': *88 @@ -75772,8 +75865,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75785,7 +75878,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *542 + schema: *564 examples: default: value: @@ -75841,8 +75934,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75901,12 +75994,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 - - *227 - - *228 - - *229 - - *544 + - *407 + - *408 + - *247 + - *248 + - *249 + - *566 - *17 - *19 responses: @@ -75916,9 +76009,9 @@ paths: application/json: schema: type: array - items: *545 + items: *567 examples: - default: *546 + default: *568 '404': *6 '403': *29 '500': *88 @@ -75943,8 +76036,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75956,7 +76049,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *545 + schema: *567 examples: default: value: @@ -76014,8 +76107,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -76084,8 +76177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -76142,8 +76235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -76160,7 +76253,7 @@ paths: type: integer environments: type: array - items: &548 + items: &570 title: Environment description: Details of a deployment environment type: object @@ -76212,7 +76305,7 @@ paths: type: type: string example: wait_timer - wait_timer: &550 + wait_timer: &572 type: integer example: 30 description: The amount of time to delay a job after @@ -76249,11 +76342,11 @@ paths: items: type: object properties: - type: *547 + type: *569 reviewer: anyOf: - *4 - - *235 + - *255 required: - id - node_id @@ -76273,7 +76366,7 @@ paths: - id - node_id - type - deployment_branch_policy: &551 + deployment_branch_policy: &573 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -76389,9 +76482,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *385 - - *386 - - &549 + - *407 + - *408 + - &571 name: environment_name in: path required: true @@ -76404,9 +76497,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *570 examples: - default: &552 + default: &574 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -76490,9 +76583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 requestBody: required: false content: @@ -76501,7 +76594,7 @@ paths: type: object nullable: true properties: - wait_timer: *550 + wait_timer: *572 prevent_self_review: type: boolean example: false @@ -76518,13 +76611,13 @@ paths: items: type: object properties: - type: *547 + type: *569 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *551 + deployment_branch_policy: *573 additionalProperties: false examples: default: @@ -76544,9 +76637,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *570 examples: - default: *552 + default: *574 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -76570,9 +76663,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 responses: '204': description: Default response @@ -76597,9 +76690,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 - *17 - *19 responses: @@ -76617,7 +76710,7 @@ paths: example: 2 branch_policies: type: array - items: &553 + items: &575 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -76674,9 +76767,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 requestBody: required: true content: @@ -76722,9 +76815,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *575 examples: - example-wildcard: &554 + example-wildcard: &576 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -76766,10 +76859,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *385 - - *386 - - *549 - - &555 + - *407 + - *408 + - *571 + - &577 name: branch_policy_id in: path required: true @@ -76781,9 +76874,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *575 examples: - default: *554 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76802,10 +76895,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *385 - - *386 - - *549 - - *555 + - *407 + - *408 + - *571 + - *577 requestBody: required: true content: @@ -76833,9 +76926,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *575 examples: - default: *554 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76854,10 +76947,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *385 - - *386 - - *549 - - *555 + - *407 + - *408 + - *571 + - *577 responses: '204': description: Response @@ -76882,9 +76975,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *549 - - *386 - - *385 + - *571 + - *408 + - *407 responses: '200': description: List of deployment protection rules @@ -76900,7 +76993,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &556 + items: &578 title: Deployment protection rule description: Deployment protection rule type: object @@ -76919,7 +77012,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &557 + app: &579 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -77018,9 +77111,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *549 - - *386 - - *385 + - *571 + - *408 + - *407 requestBody: content: application/json: @@ -77041,9 +77134,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *556 + schema: *578 examples: - default: &558 + default: &580 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -77078,9 +77171,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *549 - - *386 - - *385 + - *571 + - *408 + - *407 - *19 - *17 responses: @@ -77099,7 +77192,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *557 + items: *579 examples: default: value: @@ -77134,10 +77227,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *385 - - *386 - - *549 - - &559 + - *407 + - *408 + - *571 + - &581 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -77149,9 +77242,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *578 examples: - default: *558 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77172,10 +77265,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *549 - - *386 - - *385 - - *559 + - *571 + - *408 + - *407 + - *581 responses: '204': description: Response @@ -77201,9 +77294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 - *17 - *19 responses: @@ -77221,9 +77314,9 @@ paths: type: integer secrets: type: array - items: *422 + items: *444 examples: - default: *423 + default: *445 headers: Link: *40 x-github: @@ -77248,17 +77341,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 responses: '200': description: Response content: application/json: - schema: *424 + schema: *446 examples: - default: *425 + default: *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77280,18 +77373,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *385 - - *386 - - *549 - - *214 + - *407 + - *408 + - *571 + - *234 responses: '200': description: Response content: application/json: - schema: *422 + schema: *444 examples: - default: *560 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77313,10 +77406,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *385 - - *386 - - *549 - - *214 + - *407 + - *408 + - *571 + - *234 requestBody: required: true content: @@ -77347,7 +77440,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -77373,10 +77466,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *385 - - *386 - - *549 - - *214 + - *407 + - *408 + - *571 + - *234 responses: '204': description: Default response @@ -77401,10 +77494,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *385 - - *386 - - *549 - - *409 + - *407 + - *408 + - *571 + - *431 - *19 responses: '200': @@ -77421,9 +77514,9 @@ paths: type: integer variables: type: array - items: *426 + items: *448 examples: - default: *427 + default: *449 headers: Link: *40 x-github: @@ -77446,9 +77539,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 requestBody: required: true content: @@ -77475,7 +77568,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -77500,18 +77593,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *385 - - *386 - - *549 - - *217 + - *407 + - *408 + - *571 + - *237 responses: '200': description: Response content: application/json: - schema: *426 + schema: *448 examples: - default: *561 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77532,10 +77625,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *385 - - *386 - - *217 - - *549 + - *407 + - *408 + - *237 + - *571 requestBody: required: true content: @@ -77577,10 +77670,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *385 - - *386 - - *217 - - *549 + - *407 + - *408 + - *237 + - *571 responses: '204': description: Response @@ -77602,8 +77695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -77613,7 +77706,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: 200-response: value: @@ -77680,8 +77773,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *385 - - *386 + - *407 + - *408 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -77703,7 +77796,7 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: default: value: @@ -77840,8 +77933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -77873,9 +77966,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 + default: *422 '400': *14 '422': *15 '403': *29 @@ -77896,8 +77989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -77956,8 +78049,8 @@ paths: application/json: schema: oneOf: - - *187 - - *562 + - *207 + - *584 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77982,8 +78075,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *385 - - *386 + - *407 + - *408 - name: file_sha in: path required: true @@ -78082,8 +78175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -78192,7 +78285,7 @@ paths: description: Response content: application/json: - schema: &563 + schema: &585 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -78406,15 +78499,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *385 - - *386 - - *507 + - *407 + - *408 + - *529 responses: '200': description: Response content: application/json: - schema: *563 + schema: *585 examples: default: value: @@ -78470,9 +78563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *385 - - *386 - - &564 + - *407 + - *408 + - &586 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -78489,7 +78582,7 @@ paths: application/json: schema: type: array - items: &565 + items: &587 title: Git Reference description: Git references within a repository type: object @@ -78564,17 +78657,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *385 - - *386 - - *564 + - *407 + - *408 + - *586 responses: '200': description: Response content: application/json: - schema: *565 + schema: *587 examples: - default: &566 + default: &588 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -78603,8 +78696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -78633,9 +78726,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *587 examples: - default: *566 + default: *588 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -78661,9 +78754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *385 - - *386 - - *564 + - *407 + - *408 + - *586 requestBody: required: true content: @@ -78692,9 +78785,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *587 examples: - default: *566 + default: *588 '422': *15 '409': *99 x-github: @@ -78712,9 +78805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *385 - - *386 - - *564 + - *407 + - *408 + - *586 responses: '204': description: Response @@ -78769,8 +78862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -78837,7 +78930,7 @@ paths: description: Response content: application/json: - schema: &568 + schema: &590 title: Git Tag description: Metadata for a Git tag type: object @@ -78888,7 +78981,7 @@ paths: - sha - type - url - verification: *567 + verification: *589 required: - sha - url @@ -78898,7 +78991,7 @@ paths: - tag - message examples: - default: &569 + default: &591 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -78971,8 +79064,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *385 - - *386 + - *407 + - *408 - name: tag_sha in: path required: true @@ -78983,9 +79076,9 @@ paths: description: Response content: application/json: - schema: *568 + schema: *590 examples: - default: *569 + default: *591 '404': *6 '409': *99 x-github: @@ -79009,8 +79102,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -79083,7 +79176,7 @@ paths: description: Response content: application/json: - schema: &570 + schema: &592 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -79179,8 +79272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *385 - - *386 + - *407 + - *408 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -79203,7 +79296,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *592 examples: default-response: summary: Default response @@ -79262,8 +79355,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -79273,7 +79366,7 @@ paths: application/json: schema: type: array - items: &571 + items: &593 title: Webhook description: Webhooks for repositories. type: object @@ -79327,7 +79420,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &836 + last_response: &839 title: Hook Response type: object properties: @@ -79401,8 +79494,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -79454,9 +79547,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *593 examples: - default: &572 + default: &594 value: type: Repository id: 12345678 @@ -79504,17 +79597,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 responses: '200': description: Response content: application/json: - schema: *571 + schema: *593 examples: - default: *572 + default: *594 '404': *6 x-github: githubCloudOnly: false @@ -79534,9 +79627,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 requestBody: required: true content: @@ -79581,9 +79674,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *593 examples: - default: *572 + default: *594 '422': *15 '404': *6 x-github: @@ -79604,9 +79697,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 responses: '204': description: Response @@ -79630,9 +79723,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 responses: '200': description: Response @@ -79659,9 +79752,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 requestBody: required: false content: @@ -79705,11 +79798,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 - *17 - - *273 + - *294 responses: '200': description: Response @@ -79717,9 +79810,9 @@ paths: application/json: schema: type: array - items: *274 + items: *295 examples: - default: *275 + default: *296 '400': *14 '422': *15 x-github: @@ -79738,18 +79831,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 - *16 responses: '200': description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '400': *14 '422': *15 x-github: @@ -79768,9 +79861,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 - *16 responses: '202': *39 @@ -79793,9 +79886,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 responses: '204': description: Response @@ -79820,9 +79913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 responses: '204': description: Response @@ -79880,14 +79973,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: &573 + schema: &595 title: Import description: A repository import from an external source. type: object @@ -79986,7 +80079,7 @@ paths: - html_url - authors_url examples: - default: &576 + default: &598 value: vcs: subversion use_lfs: true @@ -80002,7 +80095,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &574 + '503': &596 description: Unavailable due to service under maintenance. content: application/json: @@ -80031,8 +80124,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -80080,7 +80173,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *595 examples: default: value: @@ -80105,7 +80198,7 @@ paths: type: string '422': *15 '404': *6 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80133,8 +80226,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -80183,7 +80276,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *595 examples: example-1: summary: Example 1 @@ -80231,7 +80324,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80254,12 +80347,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80285,9 +80378,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *385 - - *386 - - &779 + - *407 + - *408 + - &782 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -80301,7 +80394,7 @@ paths: application/json: schema: type: array - items: &575 + items: &597 title: Porter Author description: Porter Author type: object @@ -80355,7 +80448,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80380,8 +80473,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *385 - - *386 + - *407 + - *408 - name: author_id in: path required: true @@ -80411,7 +80504,7 @@ paths: description: Response content: application/json: - schema: *575 + schema: *597 examples: default: value: @@ -80424,7 +80517,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80448,8 +80541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -80490,7 +80583,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80518,8 +80611,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -80546,11 +80639,11 @@ paths: description: Response content: application/json: - schema: *573 + schema: *595 examples: - default: *576 + default: *598 '422': *15 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80573,8 +80666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -80582,8 +80675,8 @@ paths: application/json: schema: *22 examples: - default: *577 - '301': *399 + default: *599 + '301': *421 '404': *6 x-github: githubCloudOnly: false @@ -80603,8 +80696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -80612,12 +80705,12 @@ paths: application/json: schema: anyOf: - - *290 + - *311 - type: object properties: {} additionalProperties: false examples: - default: &579 + default: &601 value: limit: collaborators_only origin: repository @@ -80642,13 +80735,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: application/json: - schema: *578 + schema: *600 examples: default: summary: Example request body @@ -80660,9 +80753,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *311 examples: - default: *579 + default: *601 '409': description: Response x-github: @@ -80684,8 +80777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -80708,8 +80801,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -80719,9 +80812,9 @@ paths: application/json: schema: type: array - items: *580 + items: *602 examples: - default: &772 + default: &775 value: - id: 1 repository: @@ -80852,9 +80945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *385 - - *386 - - *294 + - *407 + - *408 + - *315 requestBody: required: false content: @@ -80883,7 +80976,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *602 examples: default: value: @@ -81014,9 +81107,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *385 - - *386 - - *294 + - *407 + - *408 + - *315 responses: '204': description: Response @@ -81047,8 +81140,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *385 - - *386 + - *407 + - *408 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -81096,7 +81189,7 @@ paths: required: false schema: type: string - - *298 + - *319 - name: sort description: What to sort results by. in: query @@ -81109,7 +81202,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - *17 - *19 responses: @@ -81119,9 +81212,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: &591 + default: &613 value: - id: 1 node_id: MDU6SXNzdWUx @@ -81269,7 +81362,7 @@ paths: state_reason: completed headers: Link: *40 - '301': *399 + '301': *421 '422': *15 '404': *6 x-github: @@ -81298,8 +81391,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -81381,9 +81474,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: &586 + default: &608 value: id: 1 node_id: MDU6SXNzdWUx @@ -81537,9 +81630,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *137 + '503': *157 '404': *6 - '410': *396 + '410': *418 x-github: triggersNotification: true githubCloudOnly: false @@ -81567,9 +81660,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *385 - - *386 - - *170 + - *407 + - *408 + - *190 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -81579,7 +81672,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -81589,9 +81682,9 @@ paths: application/json: schema: type: array - items: *581 + items: *603 examples: - default: &588 + default: &610 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81649,17 +81742,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '200': description: Response content: application/json: - schema: *581 + schema: *603 examples: - default: &582 + default: &604 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81713,9 +81806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -81737,9 +81830,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *603 examples: - default: *582 + default: *604 '422': *15 x-github: githubCloudOnly: false @@ -81757,9 +81850,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '204': description: Response @@ -81779,9 +81872,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue comment. @@ -81807,9 +81900,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -81830,9 +81923,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -81864,16 +81957,16 @@ paths: description: Reaction exists content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Reaction created content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -81895,10 +81988,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *385 - - *386 - - *159 - - *377 + - *407 + - *408 + - *179 + - *399 responses: '204': description: Response @@ -81918,8 +82011,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -81929,7 +82022,7 @@ paths: application/json: schema: type: array - items: &585 + items: &607 title: Issue Event description: Issue Event type: object @@ -81972,8 +82065,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *583 - required: *584 + properties: *605 + required: *606 nullable: true label: title: Issue Event Label @@ -82017,7 +82110,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *235 + requested_team: *255 dismissed_review: title: Issue Event Dismissed Review type: object @@ -82082,7 +82175,7 @@ paths: required: - from - to - author_association: *147 + author_association: *167 lock_reason: type: string nullable: true @@ -82095,8 +82188,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 required: - id - node_id @@ -82280,8 +82373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *385 - - *386 + - *407 + - *408 - name: event_id in: path required: true @@ -82292,7 +82385,7 @@ paths: description: Response content: application/json: - schema: *585 + schema: *607 examples: default: value: @@ -82485,7 +82578,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *396 + '410': *418 '403': *29 x-github: githubCloudOnly: false @@ -82519,9 +82612,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *385 - - *386 - - &587 + - *407 + - *408 + - &609 name: issue_number description: The number that identifies the issue. in: path @@ -82533,12 +82626,12 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 - '301': *399 + default: *608 + '301': *421 '404': *6 - '410': *396 + '410': *418 '304': *37 x-github: githubCloudOnly: false @@ -82563,9 +82656,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: false content: @@ -82669,15 +82762,15 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 '422': *15 - '503': *137 + '503': *157 '403': *29 - '301': *399 + '301': *421 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82695,9 +82788,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: false content: @@ -82723,9 +82816,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82741,9 +82834,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: content: application/json: @@ -82768,9 +82861,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82792,9 +82885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - name: assignee in: path required: true @@ -82834,10 +82927,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *385 - - *386 - - *587 - - *150 + - *407 + - *408 + - *609 + - *170 - *17 - *19 responses: @@ -82847,13 +82940,13 @@ paths: application/json: schema: type: array - items: *581 + items: *603 examples: - default: *588 + default: *610 headers: Link: *40 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82882,9 +82975,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: true content: @@ -82906,16 +82999,16 @@ paths: description: Response content: application/json: - schema: *581 + schema: *603 examples: - default: *582 + default: *604 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *396 + '410': *418 '422': *15 '404': *6 x-github: @@ -82935,9 +83028,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - *17 - *19 responses: @@ -82951,7 +83044,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &592 + - &614 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -82982,8 +83075,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 label: type: object properties: @@ -83005,7 +83098,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &593 + - &615 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -83036,8 +83129,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 label: type: object properties: @@ -83125,8 +83218,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 assignee: *4 assigner: *4 required: @@ -83141,7 +83234,7 @@ paths: - performed_via_github_app - assignee - assigner - - &594 + - &616 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -83172,8 +83265,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 milestone: type: object properties: @@ -83192,7 +83285,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &595 + - &617 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -83223,8 +83316,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 milestone: type: object properties: @@ -83243,7 +83336,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &596 + - &618 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -83274,8 +83367,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 rename: type: object properties: @@ -83297,7 +83390,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &597 + - &619 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -83328,10 +83421,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 review_requester: *4 - requested_team: *235 + requested_team: *255 requested_reviewer: *4 required: - review_requester @@ -83344,7 +83437,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &598 + - &620 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -83375,10 +83468,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 review_requester: *4 - requested_team: *235 + requested_team: *255 requested_reviewer: *4 required: - review_requester @@ -83391,7 +83484,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &599 + - &621 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -83422,8 +83515,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 dismissed_review: type: object properties: @@ -83451,7 +83544,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &600 + - &622 title: Locked Issue Event description: Locked Issue Event type: object @@ -83482,8 +83575,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 lock_reason: type: string example: '"off-topic"' @@ -83499,7 +83592,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &601 + - &623 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -83530,8 +83623,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 project_card: type: object properties: @@ -83565,7 +83658,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &602 + - &624 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -83596,8 +83689,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 project_card: type: object properties: @@ -83631,7 +83724,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &603 + - &625 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -83662,8 +83755,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 project_card: type: object properties: @@ -83697,7 +83790,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &604 + - &626 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -83788,7 +83881,7 @@ paths: color: red headers: Link: *40 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83805,9 +83898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - *17 - *19 responses: @@ -83817,7 +83910,7 @@ paths: application/json: schema: type: array - items: &589 + items: &611 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -83864,7 +83957,7 @@ paths: - color - default examples: - default: &590 + default: &612 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83882,9 +83975,9 @@ paths: default: false headers: Link: *40 - '301': *399 + '301': *421 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83901,9 +83994,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: false content: @@ -83962,12 +84055,12 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 - '301': *399 + default: *612 + '301': *421 '404': *6 - '410': *396 + '410': *418 '422': *15 x-github: githubCloudOnly: false @@ -83984,9 +84077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: false content: @@ -84046,12 +84139,12 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 - '301': *399 + default: *612 + '301': *421 '404': *6 - '410': *396 + '410': *418 '422': *15 x-github: githubCloudOnly: false @@ -84068,15 +84161,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 responses: '204': description: Response - '301': *399 + '301': *421 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84095,9 +84188,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - name: name in: path required: true @@ -84110,7 +84203,7 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: default: value: @@ -84121,9 +84214,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *399 + '301': *421 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84143,9 +84236,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: false content: @@ -84173,7 +84266,7 @@ paths: '204': description: Response '403': *29 - '410': *396 + '410': *418 '404': *6 '422': *15 x-github: @@ -84191,9 +84284,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 responses: '204': description: Response @@ -84215,9 +84308,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -84243,13 +84336,13 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84267,9 +84360,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: true content: @@ -84301,16 +84394,16 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -84332,10 +84425,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *385 - - *386 - - *587 - - *377 + - *407 + - *408 + - *609 + - *399 responses: '204': description: Response @@ -84364,9 +84457,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: true content: @@ -84388,9 +84481,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -84410,11 +84503,11 @@ paths: description: |- You can use the REST API to list the sub-issues on an issue. - This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + This endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types). - - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. - - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. - - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`. - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. tags: - issues @@ -84423,9 +84516,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - *17 - *19 responses: @@ -84435,13 +84528,13 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: *591 + default: *613 headers: Link: *40 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84469,9 +84562,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: true content: @@ -84498,16 +84591,16 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *396 + '410': *418 '422': *15 '404': *6 x-github: @@ -84527,9 +84620,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: true content: @@ -84560,13 +84653,13 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 '403': *29 '404': *6 '422': *7 - '503': *137 + '503': *157 x-github: triggersNotification: true githubCloudOnly: false @@ -84584,9 +84677,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - *17 - *19 responses: @@ -84601,19 +84694,19 @@ paths: description: Timeline Event type: object anyOf: - - *592 - - *593 - - *594 - - *595 - - *596 - - *597 - - *598 - - *599 - - *600 - - *601 - - *602 - - *603 - - *604 + - *614 + - *615 + - *616 + - *617 + - *618 + - *619 + - *620 + - *621 + - *622 + - *623 + - *624 + - *625 + - *626 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -84656,7 +84749,7 @@ paths: issue_url: type: string format: uri - author_association: *147 + author_association: *167 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -84666,9 +84759,9 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 - reactions: *148 + properties: *165 + required: *166 + reactions: *168 required: - event - actor @@ -84699,7 +84792,7 @@ paths: properties: type: type: string - issue: *160 + issue: *180 required: - event - created_at @@ -84895,7 +84988,7 @@ paths: type: string body_text: type: string - author_association: *147 + author_association: *167 required: - event - id @@ -84918,7 +85011,7 @@ paths: type: string comments: type: array - items: &625 + items: &647 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -85007,7 +85100,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *147 + author_association: *167 _links: type: object properties: @@ -85091,7 +85184,7 @@ paths: enum: - line - file - reactions: *148 + reactions: *168 body_html: type: string example: '"

comment body

"' @@ -85127,7 +85220,7 @@ paths: type: string comments: type: array - items: *505 + items: *527 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -85158,8 +85251,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 assignee: *4 required: - id @@ -85202,8 +85295,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 assignee: *4 required: - id @@ -85246,8 +85339,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 state_reason: type: string nullable: true @@ -85416,7 +85509,7 @@ paths: headers: Link: *40 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85433,8 +85526,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -85444,7 +85537,7 @@ paths: application/json: schema: type: array - items: &605 + items: &627 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -85509,8 +85602,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -85546,9 +85639,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *627 examples: - default: &606 + default: &628 value: id: 1 key: ssh-rsa AAA... @@ -85582,9 +85675,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *385 - - *386 - - &607 + - *407 + - *408 + - &629 name: key_id description: The unique identifier of the key. in: path @@ -85596,9 +85689,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *627 examples: - default: *606 + default: *628 '404': *6 x-github: githubCloudOnly: false @@ -85616,9 +85709,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *385 - - *386 - - *607 + - *407 + - *408 + - *629 responses: '204': description: Response @@ -85638,8 +85731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -85649,9 +85742,9 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 + default: *612 headers: Link: *40 '404': *6 @@ -85672,8 +85765,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -85709,9 +85802,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: - default: &608 + default: &630 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -85743,8 +85836,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *385 - - *386 + - *407 + - *408 - name: name in: path required: true @@ -85755,9 +85848,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: - default: *608 + default: *630 '404': *6 x-github: githubCloudOnly: false @@ -85774,8 +85867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *385 - - *386 + - *407 + - *408 - name: name in: path required: true @@ -85814,7 +85907,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: default: value: @@ -85840,8 +85933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *385 - - *386 + - *407 + - *408 - name: name in: path required: true @@ -85867,8 +85960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -85904,8 +85997,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '202': *39 '403': @@ -85933,8 +86026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -85960,9 +86053,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *385 - - *386 - - *481 + - *407 + - *408 + - *503 responses: '200': description: Response @@ -86024,8 +86117,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true required: - _links @@ -86107,8 +86200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -86173,8 +86266,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -86208,9 +86301,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *506 + schema: *528 examples: - default: *609 + default: *631 '204': description: Response when already merged '404': @@ -86235,8 +86328,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *385 - - *386 + - *407 + - *408 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -86277,12 +86370,12 @@ paths: application/json: schema: type: array - items: &610 + items: &632 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *510 - required: *511 + properties: *532 + required: *533 examples: default: value: @@ -86338,8 +86431,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -86379,9 +86472,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *632 examples: - default: &611 + default: &633 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -86440,9 +86533,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *385 - - *386 - - &612 + - *407 + - *408 + - &634 name: milestone_number description: The number that identifies the milestone. in: path @@ -86454,9 +86547,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *632 examples: - default: *611 + default: *633 '404': *6 x-github: githubCloudOnly: false @@ -86473,9 +86566,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *385 - - *386 - - *612 + - *407 + - *408 + - *634 requestBody: required: false content: @@ -86513,9 +86606,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *632 examples: - default: *611 + default: *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86531,9 +86624,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *385 - - *386 - - *612 + - *407 + - *408 + - *634 responses: '204': description: Response @@ -86554,9 +86647,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *385 - - *386 - - *612 + - *407 + - *408 + - *634 - *17 - *19 responses: @@ -86566,9 +86659,9 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 + default: *612 headers: Link: *40 x-github: @@ -86587,12 +86680,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *385 - - *386 - - *613 - - *614 - - *150 - - *615 + - *407 + - *408 + - *635 + - *636 + - *170 + - *637 - *17 - *19 responses: @@ -86602,9 +86695,9 @@ paths: application/json: schema: type: array - items: *173 + items: *193 examples: - default: *616 + default: *638 headers: Link: *40 x-github: @@ -86628,8 +86721,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -86687,14 +86780,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: &617 + schema: &639 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -86819,7 +86912,7 @@ paths: - custom_404 - public examples: - default: &618 + default: &640 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -86860,8 +86953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -86915,9 +87008,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *639 examples: - default: *618 + default: *640 '422': *15 '409': *99 x-github: @@ -86940,8 +87033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -87048,8 +87141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -87075,8 +87168,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -87086,7 +87179,7 @@ paths: application/json: schema: type: array - items: &619 + items: &641 title: Page Build description: Page Build type: object @@ -87180,8 +87273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *385 - - *386 + - *407 + - *408 responses: '201': description: Response @@ -87226,16 +87319,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *619 + schema: *641 examples: - default: &620 + default: &642 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -87283,8 +87376,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *385 - - *386 + - *407 + - *408 - name: build_id in: path required: true @@ -87295,9 +87388,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *641 examples: - default: *620 + default: *642 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87317,8 +87410,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -87423,9 +87516,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *385 - - *386 - - &621 + - *407 + - *408 + - &643 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -87483,9 +87576,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *385 - - *386 - - *621 + - *407 + - *408 + - *643 responses: '204': *123 '404': *6 @@ -87512,8 +87605,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -87744,7 +87837,7 @@ paths: description: Empty response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -87771,8 +87864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Private vulnerability reporting status @@ -87809,8 +87902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': *123 '422': *14 @@ -87831,8 +87924,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': *123 '422': *14 @@ -87855,8 +87948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-repository-projects parameters: - - *385 - - *386 + - *407 + - *408 - name: state description: Indicates the state of the projects to return. in: query @@ -87877,7 +87970,7 @@ paths: application/json: schema: type: array - items: *329 + items: *350 examples: default: value: @@ -87917,7 +88010,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *396 + '410': *418 '422': *7 x-github: githubCloudOnly: false @@ -87940,8 +88033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -87967,13 +88060,13 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: - default: *395 + default: *417 '401': *25 '403': *29 '404': *6 - '410': *396 + '410': *418 '422': *7 x-github: githubCloudOnly: false @@ -87996,8 +88089,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -88005,7 +88098,7 @@ paths: application/json: schema: type: array - items: *331 + items: *352 examples: default: value: @@ -88036,8 +88129,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -88049,7 +88142,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *331 + items: *352 required: - properties examples: @@ -88099,8 +88192,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -88160,9 +88253,9 @@ paths: application/json: schema: type: array - items: *622 + items: *644 examples: - default: *623 + default: *645 headers: Link: *40 '304': *37 @@ -88194,8 +88287,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -88260,7 +88353,7 @@ paths: description: Response content: application/json: - schema: &627 + schema: &649 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -88371,8 +88464,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *510 - required: *511 + properties: *532 + required: *533 nullable: true active_lock_reason: type: string @@ -88417,7 +88510,7 @@ paths: nullable: true requested_teams: type: array - items: *352 + items: *374 nullable: true head: type: object @@ -88456,14 +88549,14 @@ paths: _links: type: object properties: - comments: *512 - commits: *512 - statuses: *512 - html: *512 - issue: *512 - review_comments: *512 - review_comment: *512 - self: *512 + comments: *534 + commits: *534 + statuses: *534 + html: *534 + issue: *534 + review_comments: *534 + review_comment: *534 + self: *534 required: - comments - commits @@ -88473,8 +88566,8 @@ paths: - review_comments - review_comment - self - author_association: *147 - auto_merge: *624 + author_association: *167 + auto_merge: *646 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -88566,7 +88659,7 @@ paths: - merged_by - review_comments examples: - default: &628 + default: &650 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -89093,8 +89186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: sort in: query required: false @@ -89113,7 +89206,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -89123,9 +89216,9 @@ paths: application/json: schema: type: array - items: *625 + items: *647 examples: - default: &630 + default: &652 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -89202,17 +89295,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '200': description: Response content: application/json: - schema: *625 + schema: *647 examples: - default: &626 + default: &648 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -89287,9 +89380,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -89311,9 +89404,9 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: - default: *626 + default: *648 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89329,9 +89422,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '204': description: Response @@ -89352,9 +89445,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a pull request review comment. @@ -89380,9 +89473,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -89403,9 +89496,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -89437,16 +89530,16 @@ paths: description: Reaction exists content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Reaction created content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -89468,10 +89561,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *385 - - *386 - - *159 - - *377 + - *407 + - *408 + - *179 + - *399 responses: '204': description: Response @@ -89514,9 +89607,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *385 - - *386 - - &629 + - *407 + - *408 + - &651 name: pull_number description: The number that identifies the pull request. in: path @@ -89529,9 +89622,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *627 + schema: *649 examples: - default: *628 + default: *650 '304': *37 '404': *6 '406': @@ -89540,7 +89633,7 @@ paths: application/json: schema: *3 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89566,9 +89659,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: false content: @@ -89610,9 +89703,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *649 examples: - default: *628 + default: *650 '422': *15 '403': *29 x-github: @@ -89634,9 +89727,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: true content: @@ -89696,21 +89789,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '401': *25 '403': *29 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89736,10 +89829,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *385 - - *386 - - *629 - - *170 + - *407 + - *408 + - *651 + - *190 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -89749,7 +89842,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -89759,9 +89852,9 @@ paths: application/json: schema: type: array - items: *625 + items: *647 examples: - default: *630 + default: *652 headers: Link: *40 x-github: @@ -89794,9 +89887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: true content: @@ -89901,7 +89994,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: example-for-a-multi-line-comment: value: @@ -89989,10 +90082,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *385 - - *386 - - *629 - - *159 + - *407 + - *408 + - *651 + - *179 requestBody: required: true content: @@ -90014,7 +90107,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: default: value: @@ -90100,9 +90193,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 - *17 - *19 responses: @@ -90112,9 +90205,9 @@ paths: application/json: schema: type: array - items: *506 + items: *528 examples: - default: *631 + default: *653 headers: Link: *40 x-github: @@ -90144,9 +90237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 - *17 - *19 responses: @@ -90156,7 +90249,7 @@ paths: application/json: schema: type: array - items: *521 + items: *543 examples: default: value: @@ -90175,7 +90268,7 @@ paths: Link: *40 '422': *15 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90194,9 +90287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 responses: '204': description: Response if pull request has been merged @@ -90219,9 +90312,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: false content: @@ -90332,9 +90425,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 responses: '200': description: Response @@ -90350,7 +90443,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 required: - users - teams @@ -90409,9 +90502,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: false content: @@ -90448,7 +90541,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *644 examples: default: value: @@ -90984,9 +91077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: true content: @@ -91020,7 +91113,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *644 examples: default: value: @@ -91525,9 +91618,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 - *17 - *19 responses: @@ -91537,7 +91630,7 @@ paths: application/json: schema: type: array - items: &632 + items: &654 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -91606,7 +91699,7 @@ paths: type: string body_text: type: string - author_association: *147 + author_association: *167 required: - id - node_id @@ -91688,9 +91781,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: false content: @@ -91776,9 +91869,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: &634 + default: &656 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91841,10 +91934,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 - - &633 + - *407 + - *408 + - *651 + - &655 name: review_id description: The unique identifier of the review. in: path @@ -91856,9 +91949,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: &635 + default: &657 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91917,10 +92010,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 - - *633 + - *407 + - *408 + - *651 + - *655 requestBody: required: true content: @@ -91943,7 +92036,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: default: value: @@ -92005,18 +92098,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 - - *633 + - *407 + - *408 + - *651 + - *655 responses: '200': description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: *634 + default: *656 '422': *7 '404': *6 x-github: @@ -92043,10 +92136,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *385 - - *386 - - *629 - - *633 + - *407 + - *408 + - *651 + - *655 - *17 - *19 responses: @@ -92125,13 +92218,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *147 + author_association: *167 _links: type: object properties: - self: *512 - html: *512 - pull_request: *512 + self: *534 + html: *534 + pull_request: *534 required: - self - html @@ -92140,7 +92233,7 @@ paths: type: string body_html: type: string - reactions: *148 + reactions: *168 side: description: The side of the first line of the range for a multi-line comment. @@ -92281,10 +92374,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 - - *633 + - *407 + - *408 + - *651 + - *655 requestBody: required: true content: @@ -92312,7 +92405,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: default: value: @@ -92375,10 +92468,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 - - *633 + - *407 + - *408 + - *651 + - *655 requestBody: required: true content: @@ -92413,9 +92506,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: *635 + default: *657 '404': *6 '422': *7 '403': *29 @@ -92437,9 +92530,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: false content: @@ -92502,8 +92595,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *385 - - *386 + - *407 + - *408 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -92516,9 +92609,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *658 examples: - default: &637 + default: &659 value: type: file encoding: base64 @@ -92560,8 +92653,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *385 - - *386 + - *407 + - *408 - name: dir description: The alternate path to look for a README file in: path @@ -92581,9 +92674,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *658 examples: - default: *637 + default: *659 '404': *6 '422': *15 x-github: @@ -92605,8 +92698,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -92616,7 +92709,7 @@ paths: application/json: schema: type: array - items: &638 + items: &660 title: Release description: A release. type: object @@ -92683,7 +92776,7 @@ paths: author: *4 assets: type: array - items: &639 + items: &661 title: Release Asset description: Data related to a release. type: object @@ -92758,7 +92851,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *148 + reactions: *168 required: - assets_url - upload_url @@ -92870,8 +92963,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -92947,9 +93040,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *660 examples: - default: &642 + default: &664 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -93054,9 +93147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *385 - - *386 - - &640 + - *407 + - *408 + - &662 name: asset_id description: The unique identifier of the asset. in: path @@ -93068,9 +93161,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *661 examples: - default: &641 + default: &663 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -93105,7 +93198,7 @@ paths: type: User site_admin: false '404': *6 - '302': *523 + '302': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93121,9 +93214,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *385 - - *386 - - *640 + - *407 + - *408 + - *662 requestBody: required: false content: @@ -93151,9 +93244,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *661 examples: - default: *641 + default: *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93169,9 +93262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *385 - - *386 - - *640 + - *407 + - *408 + - *662 responses: '204': description: Response @@ -93195,8 +93288,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -93281,16 +93374,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *638 + schema: *660 examples: - default: *642 + default: *664 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93307,8 +93400,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *385 - - *386 + - *407 + - *408 - name: tag description: tag parameter in: path @@ -93321,9 +93414,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *660 examples: - default: *642 + default: *664 '404': *6 x-github: githubCloudOnly: false @@ -93345,9 +93438,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *385 - - *386 - - &643 + - *407 + - *408 + - &665 name: release_id description: The unique identifier of the release. in: path @@ -93361,9 +93454,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *638 + schema: *660 examples: - default: *642 + default: *664 '401': description: Unauthorized x-github: @@ -93381,9 +93474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 requestBody: required: false content: @@ -93447,9 +93540,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *660 examples: - default: *642 + default: *664 '404': description: Not Found if the discussion category name is invalid content: @@ -93470,9 +93563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 responses: '204': description: Response @@ -93492,9 +93585,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 - *17 - *19 responses: @@ -93504,7 +93597,7 @@ paths: application/json: schema: type: array - items: *639 + items: *661 examples: default: value: @@ -93586,9 +93679,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 - name: name in: query required: true @@ -93614,7 +93707,7 @@ paths: description: Response for successful upload content: application/json: - schema: *639 + schema: *661 examples: response-for-successful-upload: value: @@ -93669,9 +93762,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -93695,9 +93788,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -93718,9 +93811,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 requestBody: required: true content: @@ -93750,16 +93843,16 @@ paths: description: Reaction exists content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Reaction created content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -93781,10 +93874,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *385 - - *386 - - *643 - - *377 + - *407 + - *408 + - *665 + - *399 responses: '204': description: Response @@ -93808,9 +93901,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 - *17 - *19 responses: @@ -93826,8 +93919,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *644 - - &646 + - *132 + - &666 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -93847,65 +93940,65 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *645 - - *646 + - *133 + - *666 - allOf: - - *647 - - *646 + - *134 + - *666 - allOf: - - *648 - - *646 + - *135 + - *666 - allOf: - - *649 - - *646 + - *667 + - *666 - allOf: - - *650 - - *646 + - *136 + - *666 - allOf: - - *651 - - *646 + - *137 + - *666 - allOf: - - *652 - - *646 + - *138 + - *666 - allOf: - - *653 - - *646 + - *139 + - *666 - allOf: - - *654 - - *646 + - *140 + - *666 - allOf: - - *655 - - *646 + - *141 + - *666 - allOf: - - *656 - - *646 + - *142 + - *666 - allOf: - - *657 - - *646 + - *143 + - *666 - allOf: - - *658 - - *646 + - *144 + - *666 - allOf: - - *659 - - *646 + - *145 + - *666 - allOf: - - *660 - - *646 + - *146 + - *666 - allOf: - - *661 - - *646 + - *147 + - *666 - allOf: - - *662 - - *646 + - *148 + - *666 - allOf: - - *663 - - *646 + - *149 + - *666 - allOf: - - *664 - - *646 + - *150 + - *666 - allOf: - - *665 - - *646 + - *151 + - *666 examples: default: value: @@ -93944,8 +94037,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 - name: includes_parents @@ -93956,7 +94049,7 @@ paths: schema: type: boolean default: true - - *666 + - *668 responses: '200': description: Response @@ -93964,7 +94057,7 @@ paths: application/json: schema: type: array - items: *133 + items: *152 examples: default: value: @@ -94011,8 +94104,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 requestBody: description: Request body required: true @@ -94041,7 +94134,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *132 + items: *669 required: - name - enforcement @@ -94072,9 +94165,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: &675 + default: &678 value: id: 42 name: super cool ruleset @@ -94121,12 +94214,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *385 - - *386 - - *667 - - *229 - - *668 - - *669 + - *407 + - *408 + - *670 + - *249 + - *671 + - *672 - *17 - *19 responses: @@ -94134,9 +94227,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *673 examples: - default: *671 + default: *674 '404': *6 '500': *88 x-github: @@ -94157,17 +94250,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *385 - - *386 - - *672 + - *407 + - *408 + - *675 responses: '200': description: Response content: application/json: - schema: *673 + schema: *676 examples: - default: *674 + default: *677 '404': *6 '500': *88 x-github: @@ -94195,8 +94288,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94216,9 +94309,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *675 + default: *678 '404': *6 '500': *88 put: @@ -94236,8 +94329,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94271,7 +94364,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *132 + items: *669 examples: default: value: @@ -94299,9 +94392,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *675 + default: *678 '404': *6 '500': *88 delete: @@ -94319,8 +94412,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94343,8 +94436,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 - name: ruleset_id @@ -94360,9 +94453,9 @@ paths: application/json: schema: type: array - items: *136 + items: *156 examples: - default: *339 + default: *361 '404': *6 '500': *88 x-github: @@ -94381,8 +94474,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94400,7 +94493,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *362 examples: default: value: @@ -94455,21 +94548,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *385 - - *386 - - *341 - - *342 - - *343 - - *344 + - *407 + - *408 + - *363 + - *364 + - *365 + - *366 - *91 - *19 - *17 - - *676 - - *677 - - *345 - - *346 - - *347 - - *348 + - *679 + - *680 + - *367 + - *368 + - *369 + - *370 responses: '200': description: Response @@ -94477,7 +94570,7 @@ paths: application/json: schema: type: array - items: &681 + items: &684 type: object properties: number: *103 @@ -94496,8 +94589,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *678 - resolution: *679 + state: *681 + resolution: *682 resolved_at: type: string format: date-time @@ -94593,7 +94686,7 @@ paths: pull request. ' - oneOf: *680 + oneOf: *683 nullable: true has_more_locations: type: boolean @@ -94721,7 +94814,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94743,16 +94836,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *385 - - *386 - - *475 - - *348 + - *407 + - *408 + - *497 + - *370 responses: '200': description: Response content: application/json: - schema: *681 + schema: *684 examples: default: value: @@ -94783,7 +94876,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94804,9 +94897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 requestBody: required: true content: @@ -94814,8 +94907,8 @@ paths: schema: type: object properties: - state: *678 - resolution: *679 + state: *681 + resolution: *682 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -94833,7 +94926,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *684 examples: default: value: @@ -94886,7 +94979,7 @@ paths: repository, or the resource is not found '422': description: State does not match the resolution or resolution comment - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -94908,9 +95001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 - *19 - *17 responses: @@ -94921,7 +95014,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &857 + items: &860 type: object properties: type: @@ -94947,9 +95040,6 @@ paths: example: commit details: oneOf: - - *682 - - *683 - - *684 - *685 - *686 - *687 @@ -94960,6 +95050,9 @@ paths: - *692 - *693 - *694 + - *695 + - *696 + - *697 examples: default: value: @@ -95023,7 +95116,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95045,8 +95138,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -95054,14 +95147,14 @@ paths: schema: type: object properties: - reason: &696 + reason: &699 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *695 + placeholder_id: *698 required: - reason - placeholder_id @@ -95078,7 +95171,7 @@ paths: schema: type: object properties: - reason: *696 + reason: *699 expire_at: type: string format: date-time @@ -95101,7 +95194,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -95121,13 +95214,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *137 + '503': *157 '200': description: Response content: @@ -95137,7 +95230,7 @@ paths: properties: incremental_scans: type: array - items: &697 + items: &700 description: Information on a single scan performed by secret scanning on the repository type: object @@ -95163,15 +95256,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *697 + items: *700 backfill_scans: type: array - items: *697 + items: *700 custom_pattern_backfill_scans: type: array items: allOf: - - *697 + - *700 - type: object properties: pattern_name: @@ -95241,8 +95334,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *385 - - *386 + - *407 + - *408 - *91 - name: sort description: The property to sort the results by. @@ -95286,9 +95379,9 @@ paths: application/json: schema: type: array - items: *698 + items: *701 examples: - default: *699 + default: *702 '400': *14 '404': *6 x-github: @@ -95311,8 +95404,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -95385,7 +95478,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 required: - login - type @@ -95472,9 +95565,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *701 examples: - default: &701 + default: &704 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -95707,8 +95800,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -95812,7 +95905,7 @@ paths: description: Response content: application/json: - schema: *698 + schema: *701 examples: default: value: @@ -95959,17 +96052,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *385 - - *386 - - *700 + - *407 + - *408 + - *703 responses: '200': description: Response content: application/json: - schema: *698 + schema: *701 examples: - default: *701 + default: *704 '403': *29 '404': *6 x-github: @@ -95993,9 +96086,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *385 - - *386 - - *700 + - *407 + - *408 + - *703 requestBody: required: true content: @@ -96068,7 +96161,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 required: - login - type @@ -96154,17 +96247,17 @@ paths: description: Response content: application/json: - schema: *698 + schema: *701 examples: - default: *701 - add_credit: *701 + default: *704 + add_credit: *704 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *187 + schema: *207 examples: invalid_state_transition: value: @@ -96195,9 +96288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *385 - - *386 - - *700 + - *407 + - *408 + - *703 responses: '202': *39 '400': *14 @@ -96224,17 +96317,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *385 - - *386 - - *700 + - *407 + - *408 + - *703 responses: '202': description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 + default: *422 '400': *14 '422': *15 '403': *29 @@ -96260,8 +96353,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -96360,8 +96453,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -96370,7 +96463,7 @@ paths: application/json: schema: type: array - items: &702 + items: &705 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -96403,8 +96496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -96480,8 +96573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -96577,8 +96670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -96732,8 +96825,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -96743,7 +96836,7 @@ paths: application/json: schema: type: array - items: *702 + items: *705 examples: default: value: @@ -96776,8 +96869,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *385 - - *386 + - *407 + - *408 - name: sha in: path required: true @@ -96831,7 +96924,7 @@ paths: description: Response content: application/json: - schema: *703 + schema: *706 examples: default: value: @@ -96885,8 +96978,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -96898,7 +96991,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -96918,14 +97011,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &704 + schema: &707 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -96993,8 +97086,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -97020,7 +97113,7 @@ paths: description: Response content: application/json: - schema: *704 + schema: *707 examples: default: value: @@ -97047,8 +97140,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -97068,8 +97161,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -97148,8 +97241,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -97157,7 +97250,7 @@ paths: application/json: schema: type: array - items: &705 + items: &708 title: Tag protection description: Tag protection type: object @@ -97209,8 +97302,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -97233,7 +97326,7 @@ paths: description: Response content: application/json: - schema: *705 + schema: *708 examples: default: value: @@ -97264,8 +97357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -97302,8 +97395,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *385 - - *386 + - *407 + - *408 - name: ref in: path required: true @@ -97339,8 +97432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -97350,9 +97443,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 headers: Link: *40 '404': *6 @@ -97372,8 +97465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *385 - - *386 + - *407 + - *408 - *19 - *17 responses: @@ -97381,7 +97474,7 @@ paths: description: Response content: application/json: - schema: &706 + schema: &709 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -97393,7 +97486,7 @@ paths: required: - names examples: - default: &707 + default: &710 value: names: - octocat @@ -97416,8 +97509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -97448,9 +97541,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *709 examples: - default: *707 + default: *710 '404': *6 '422': *7 x-github: @@ -97471,9 +97564,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *385 - - *386 - - &708 + - *407 + - *408 + - &711 name: per description: The time frame to display results for. in: query @@ -97502,7 +97595,7 @@ paths: example: 128 clones: type: array - items: &709 + items: &712 title: Traffic type: object properties: @@ -97589,8 +97682,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -97680,8 +97773,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -97741,9 +97834,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *385 - - *386 - - *708 + - *407 + - *408 + - *711 responses: '200': description: Response @@ -97762,7 +97855,7 @@ paths: example: 3782 views: type: array - items: *709 + items: *712 required: - uniques - count @@ -97839,8 +97932,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -97876,7 +97969,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *224 examples: default: value: @@ -98114,8 +98207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -98138,8 +98231,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -98161,8 +98254,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -98188,8 +98281,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *385 - - *386 + - *407 + - *408 - name: ref in: path required: true @@ -98281,9 +98374,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 + default: *422 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -98324,7 +98417,7 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: default: value: @@ -98434,7 +98527,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &717 + - &720 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -98443,7 +98536,7 @@ paths: schema: type: string example: members - - &722 + - &725 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -98454,7 +98547,7 @@ paths: default: 1 format: int32 example: 1 - - &723 + - &726 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -98496,7 +98589,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &711 + items: &714 allOf: - type: object required: @@ -98571,7 +98664,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: &724 + meta: &727 type: object description: The metadata associated with the creation/updates to the user. @@ -98631,31 +98724,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &712 + '400': &715 description: Bad request content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 - '401': &713 + schema: *713 + '401': &716 description: Authorization failure - '403': &714 + '403': &717 description: Permission denied - '429': &715 + '429': &718 description: Too many requests content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 - '500': &716 + schema: *713 + '500': &719 description: Internal server error content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 + schema: *713 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98679,7 +98772,7 @@ paths: required: true content: application/json: - schema: &720 + schema: &723 type: object required: - schemas @@ -98735,9 +98828,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *711 + schema: *714 examples: - group: &718 + group: &721 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -98756,13 +98849,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': *712 - '401': *713 - '403': *714 - '409': &721 + '400': *715 + '401': *716 + '403': *717 + '409': &724 description: Duplicate record detected - '429': *715 - '500': *716 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98779,7 +98872,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: - - &719 + - &722 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -98787,22 +98880,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *717 + - *720 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *711 + schema: *714 examples: - default: *718 - '400': *712 - '401': *713 - '403': *714 + default: *721 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '429': *715 - '500': *716 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98821,13 +98914,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: - - *719 + - *722 - *41 requestBody: required: true content: application/json: - schema: *720 + schema: *723 examples: group: summary: Group @@ -98853,17 +98946,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *711 + schema: *714 examples: - group: *718 - groupWithMembers: *718 - '400': *712 - '401': *713 - '403': *714 + group: *721 + groupWithMembers: *721 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '409': *721 - '429': *715 - '500': *716 + '409': *724 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98887,13 +98980,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: - - *719 + - *722 - *41 requestBody: required: true content: application/json: - schema: &731 + schema: &734 type: object required: - Operations @@ -98953,17 +99046,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *711 + schema: *714 examples: - updateGroup: *718 - addMembers: *718 - '400': *712 - '401': *713 - '403': *714 + updateGroup: *721 + addMembers: *721 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '409': *721 - '429': *715 - '500': *716 + '409': *724 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98979,17 +99072,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: - - *719 + - *722 - *41 responses: '204': description: Group was deleted, no content - '400': *712 - '401': *713 - '403': *714 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '429': *715 - '500': *716 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99023,8 +99116,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *722 - - *723 + - *725 + - *726 - *41 responses: '200': @@ -99057,7 +99150,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &726 + items: &729 allOf: - type: object required: @@ -99136,7 +99229,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &725 + roles: &728 type: array description: The roles assigned to the user. items: @@ -99192,7 +99285,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *724 + meta: *727 startIndex: type: integer description: A starting index for the returned page @@ -99229,11 +99322,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *712 - '401': *713 - '403': *714 - '429': *715 - '500': *716 + '400': *715 + '401': *716 + '403': *717 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99257,7 +99350,7 @@ paths: required: true content: application/json: - schema: &729 + schema: &732 type: object required: - schemas @@ -99339,9 +99432,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *725 + roles: *728 examples: - user: &730 + user: &733 summary: User value: schemas: @@ -99388,9 +99481,9 @@ paths: description: User has been created content: application/scim+json: - schema: *726 + schema: *729 examples: - user: &727 + user: &730 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -99416,13 +99509,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: *727 - '400': *712 - '401': *713 - '403': *714 - '409': *721 - '429': *715 - '500': *716 + enterpriseOwner: *730 + '400': *715 + '401': *716 + '403': *717 + '409': *724 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99439,7 +99532,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: - - &728 + - &731 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -99452,15 +99545,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *726 + schema: *729 examples: - default: *727 - '400': *712 - '401': *713 - '403': *714 + default: *730 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '429': *715 - '500': *716 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99482,30 +99575,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: - - *728 + - *731 - *41 requestBody: required: true content: application/json: - schema: *729 + schema: *732 examples: - user: *730 + user: *733 responses: '200': description: User was updated content: application/scim+json: - schema: *726 + schema: *729 examples: - user: *727 - '400': *712 - '401': *713 - '403': *714 + user: *730 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '409': *721 - '429': *715 - '500': *716 + '409': *724 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99540,13 +99633,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: - - *728 + - *731 - *41 requestBody: required: true content: application/json: - schema: *731 + schema: *734 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -99586,18 +99679,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *726 + schema: *729 examples: - userMultiValuedProperties: *727 - userSingleValuedProperties: *727 - disableUser: *727 - '400': *712 - '401': *713 - '403': *714 + userMultiValuedProperties: *730 + userSingleValuedProperties: *730 + disableUser: *730 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '409': *721 - '429': *715 - '500': *716 + '409': *724 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99617,17 +99710,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: - - *728 + - *731 - *41 responses: '204': description: User was deleted, no content - '400': *712 - '401': *713 - '403': *714 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '429': *715 - '500': *716 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99714,7 +99807,7 @@ paths: example: 1 Resources: type: array - items: &732 + items: &735 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -99945,22 +100038,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': &733 + '404': &736 description: Resource not found content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 - '403': &734 + schema: *713 + '403': &737 description: Forbidden content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 - '400': *712 - '429': *715 + schema: *713 + '400': *715 + '429': *718 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -99986,9 +100079,9 @@ paths: description: Response content: application/scim+json: - schema: *732 + schema: *735 examples: - default: &735 + default: &738 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -100011,17 +100104,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': *733 - '403': *734 - '500': *716 + '404': *736 + '403': *737 + '500': *719 '409': description: Conflict content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 - '400': *712 + schema: *713 + '400': *715 requestBody: required: true content: @@ -100119,17 +100212,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *73 - - *728 + - *731 responses: '200': description: Response content: application/scim+json: - schema: *732 + schema: *735 examples: - default: *735 - '404': *733 - '403': *734 + default: *738 + '404': *736 + '403': *737 '304': *37 x-github: githubCloudOnly: true @@ -100153,18 +100246,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *73 - - *728 + - *731 responses: '200': description: Response content: application/scim+json: - schema: *732 + schema: *735 examples: - default: *735 + default: *738 '304': *37 - '404': *733 - '403': *734 + '404': *736 + '403': *737 requestBody: required: true content: @@ -100277,19 +100370,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *73 - - *728 + - *731 responses: '200': description: Response content: application/scim+json: - schema: *732 + schema: *735 examples: - default: *735 + default: *738 '304': *37 - '404': *733 - '403': *734 - '400': *712 + '404': *736 + '403': *737 + '400': *715 '429': description: Response content: @@ -100380,12 +100473,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *73 - - *728 + - *731 responses: '204': description: Response - '404': *733 - '403': *734 + '404': *736 + '403': *737 '304': *37 x-github: githubCloudOnly: true @@ -100500,7 +100593,7 @@ paths: html_url: type: string format: uri - repository: *204 + repository: *224 score: type: number file_size: @@ -100518,7 +100611,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &736 + text_matches: &739 title: Search Result Text Matches type: array items: @@ -100632,7 +100725,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *137 + '503': *157 '422': *15 '403': *29 x-github: @@ -100681,7 +100774,7 @@ paths: enum: - author-date - committer-date - - &737 + - &740 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 @@ -100752,7 +100845,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *442 + properties: *464 nullable: true comment_count: type: integer @@ -100772,7 +100865,7 @@ paths: url: type: string format: uri - verification: *567 + verification: *589 required: - author - committer @@ -100791,7 +100884,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *442 + properties: *464 nullable: true parents: type: array @@ -100804,12 +100897,12 @@ paths: type: string sha: type: string - repository: *204 + repository: *224 score: type: number node_id: type: string - text_matches: *736 + text_matches: *739 required: - sha - node_id @@ -100992,7 +101085,7 @@ paths: - interactions - created - updated - - *737 + - *740 - *17 - *19 - name: advanced_search @@ -101119,8 +101212,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *510 - required: *511 + properties: *532 + required: *533 nullable: true comments: type: integer @@ -101134,7 +101227,7 @@ paths: type: string format: date-time nullable: true - text_matches: *736 + text_matches: *739 pull_request: type: object properties: @@ -101167,7 +101260,7 @@ paths: type: string score: type: number - author_association: *147 + author_association: *167 draft: type: boolean repository: *64 @@ -101178,7 +101271,7 @@ paths: timeline_url: type: string format: uri - type: *295 + type: *316 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -101188,9 +101281,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 - reactions: *148 + properties: *165 + required: *166 + reactions: *168 required: - assignee - closed_at @@ -101306,7 +101399,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *137 + '503': *157 '422': *15 '304': *37 '403': *29 @@ -101362,7 +101455,7 @@ paths: enum: - created - updated - - *737 + - *740 - *17 - *19 responses: @@ -101406,7 +101499,7 @@ paths: nullable: true score: type: number - text_matches: *736 + text_matches: *739 required: - id - node_id @@ -101492,7 +101585,7 @@ paths: - forks - help-wanted-issues - updated - - *737 + - *740 - *17 - *19 responses: @@ -101711,8 +101804,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true permissions: type: object @@ -101731,7 +101824,7 @@ paths: - admin - pull - push - text_matches: *736 + text_matches: *739 temp_clone_token: type: string allow_merge_commit: @@ -101933,7 +102026,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *137 + '503': *157 '422': *15 '304': *37 x-github: @@ -102032,7 +102125,7 @@ paths: type: string format: uri nullable: true - text_matches: *736 + text_matches: *739 related: type: array nullable: true @@ -102225,7 +102318,7 @@ paths: - followers - repositories - joined - - *737 + - *740 - *17 - *19 responses: @@ -102329,7 +102422,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *736 + text_matches: *739 blog: type: string nullable: true @@ -102388,7 +102481,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *137 + '503': *157 '422': *15 x-github: githubCloudOnly: false @@ -102408,7 +102501,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &738 + - &741 name: team_id description: The unique identifier of the team. in: path @@ -102420,9 +102513,9 @@ paths: description: Response content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '404': *6 x-github: githubCloudOnly: false @@ -102449,7 +102542,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *738 + - *741 requestBody: required: true content: @@ -102512,16 +102605,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '201': description: Response content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '404': *6 '422': *15 '403': *29 @@ -102549,7 +102642,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *738 + - *741 responses: '204': description: Response @@ -102580,7 +102673,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *738 + - *741 - *91 - *17 - *19 @@ -102591,9 +102684,9 @@ paths: application/json: schema: type: array - items: *368 + items: *390 examples: - default: *739 + default: *742 headers: Link: *40 x-github: @@ -102622,7 +102715,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *738 + - *741 requestBody: required: true content: @@ -102656,9 +102749,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *369 + default: *391 x-github: triggersNotification: true githubCloudOnly: false @@ -102685,16 +102778,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *738 - - *370 + - *741 + - *392 responses: '200': description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *369 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102719,8 +102812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *738 - - *370 + - *741 + - *392 requestBody: required: false content: @@ -102743,9 +102836,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *740 + default: *743 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102770,8 +102863,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *738 - - *370 + - *741 + - *392 responses: '204': description: Response @@ -102800,8 +102893,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *738 - - *370 + - *741 + - *392 - *91 - *17 - *19 @@ -102812,9 +102905,9 @@ paths: application/json: schema: type: array - items: *371 + items: *393 examples: - default: *741 + default: *744 headers: Link: *40 x-github: @@ -102843,8 +102936,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *738 - - *370 + - *741 + - *392 requestBody: required: true content: @@ -102866,9 +102959,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *372 + default: *394 x-github: triggersNotification: true githubCloudOnly: false @@ -102895,17 +102988,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *738 - - *370 - - *373 + - *741 + - *392 + - *395 responses: '200': description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *372 + default: *394 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102930,9 +103023,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *738 - - *370 - - *373 + - *741 + - *392 + - *395 requestBody: required: true content: @@ -102954,9 +103047,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *742 + default: *745 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102981,9 +103074,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *738 - - *370 - - *373 + - *741 + - *392 + - *395 responses: '204': description: Response @@ -103012,9 +103105,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *738 - - *370 - - *373 + - *741 + - *392 + - *395 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -103040,9 +103133,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -103071,9 +103164,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *738 - - *370 - - *373 + - *741 + - *392 + - *395 requestBody: required: true content: @@ -103105,9 +103198,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103133,8 +103226,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *738 - - *370 + - *741 + - *392 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -103160,9 +103253,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -103191,8 +103284,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *738 - - *370 + - *741 + - *392 requestBody: required: true content: @@ -103224,9 +103317,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103250,7 +103343,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *738 + - *741 - *17 - *19 responses: @@ -103260,9 +103353,9 @@ paths: application/json: schema: type: array - items: *292 + items: *313 examples: - default: *293 + default: *314 headers: Link: *40 x-github: @@ -103288,7 +103381,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *738 + - *741 - name: role description: Filters members returned by their role in the team. in: query @@ -103311,7 +103404,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -103339,8 +103432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *738 - - *226 + - *741 + - *246 responses: '204': description: if user is a member @@ -103376,8 +103469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *738 - - *226 + - *741 + - *246 responses: '204': description: Response @@ -103416,8 +103509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *738 - - *226 + - *741 + - *246 responses: '204': description: Response @@ -103453,16 +103546,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *738 - - *226 + - *741 + - *246 responses: '200': description: Response content: application/json: - schema: *382 + schema: *404 examples: - response-if-user-is-a-team-maintainer: *743 + response-if-user-is-a-team-maintainer: *746 '404': *6 x-github: githubCloudOnly: false @@ -103495,8 +103588,8 @@ 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: - - *738 - - *226 + - *741 + - *246 requestBody: required: false content: @@ -103521,9 +103614,9 @@ paths: description: Response content: application/json: - schema: *382 + schema: *404 examples: - response-if-users-membership-with-team-is-now-pending: *744 + response-if-users-membership-with-team-is-now-pending: *747 '403': description: Forbidden if team synchronization is set up '422': @@ -103557,8 +103650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *738 - - *226 + - *741 + - *246 responses: '204': description: Response @@ -103586,7 +103679,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *738 + - *741 - *17 - *19 responses: @@ -103596,9 +103689,9 @@ paths: application/json: schema: type: array - items: *383 + items: *405 examples: - default: *745 + default: *748 headers: Link: *40 '404': *6 @@ -103624,16 +103717,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *738 - - *384 + - *741 + - *406 responses: '200': description: Response content: application/json: - schema: *383 + schema: *405 examples: - default: *746 + default: *749 '404': description: Not Found if project is not managed by this team x-github: @@ -103657,8 +103750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *738 - - *384 + - *741 + - *406 requestBody: required: false content: @@ -103725,8 +103818,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *738 - - *384 + - *741 + - *406 responses: '204': description: Response @@ -103753,7 +103846,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *738 + - *741 - *17 - *19 responses: @@ -103763,9 +103856,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '404': *6 @@ -103795,15 +103888,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *738 - - *385 - - *386 + - *741 + - *407 + - *408 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *747 + schema: *750 examples: alternative-response-with-extra-repository-information: value: @@ -103954,9 +104047,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *738 - - *385 - - *386 + - *741 + - *407 + - *408 requestBody: required: false content: @@ -104006,9 +104099,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *738 - - *385 - - *386 + - *741 + - *407 + - *408 responses: '204': description: Response @@ -104037,15 +104130,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *738 + - *741 responses: '200': description: Response content: application/json: - schema: *387 + schema: *409 examples: - default: *388 + default: *410 '403': *29 '404': *6 x-github: @@ -104072,7 +104165,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: - - *738 + - *741 requestBody: required: true content: @@ -104129,7 +104222,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *409 examples: default: value: @@ -104160,7 +104253,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *738 + - *741 - *17 - *19 responses: @@ -104170,9 +104263,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - response-if-child-teams-exist: *748 + response-if-child-teams-exist: *751 headers: Link: *40 '404': *6 @@ -104205,7 +104298,7 @@ paths: application/json: schema: oneOf: - - &750 + - &753 title: Private User description: Private User type: object @@ -104408,7 +104501,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *749 + - *752 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -104561,7 +104654,7 @@ paths: description: Response content: application/json: - schema: *750 + schema: *753 examples: default: value: @@ -104640,7 +104733,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '304': *37 '404': *6 '403': *29 @@ -104663,7 +104756,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *226 + - *246 responses: '204': description: If the user is blocked @@ -104691,7 +104784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *226 + - *246 responses: '204': description: Response @@ -104715,7 +104808,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *226 + - *246 responses: '204': description: Response @@ -104764,9 +104857,9 @@ paths: type: integer codespaces: type: array - items: *301 + items: *322 examples: - default: *302 + default: *323 '304': *37 '500': *88 '401': *25 @@ -104905,21 +104998,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '401': *25 '403': *29 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104959,7 +105052,7 @@ paths: type: integer secrets: type: array - items: &751 + items: &754 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -104999,7 +105092,7 @@ paths: - visibility - selected_repositories_url examples: - default: *498 + default: *520 headers: Link: *40 x-github: @@ -105069,13 +105162,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *214 + - *234 responses: '200': description: Response content: application/json: - schema: *751 + schema: *754 examples: default: value: @@ -105105,7 +105198,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *214 + - *234 requestBody: required: true content: @@ -105150,7 +105243,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -105178,7 +105271,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *214 + - *234 responses: '204': description: Response @@ -105203,7 +105296,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *214 + - *234 responses: '200': description: Response @@ -105219,9 +105312,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: *752 + default: *755 '401': *25 '403': *29 '404': *6 @@ -105246,7 +105339,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *214 + - *234 requestBody: required: true content: @@ -105300,7 +105393,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *214 + - *234 - name: repository_id in: path required: true @@ -105333,7 +105426,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *214 + - *234 - name: repository_id in: path required: true @@ -105365,15 +105458,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 responses: '200': description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '304': *37 '500': *88 '401': *25 @@ -105399,7 +105492,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 requestBody: required: false content: @@ -105429,9 +105522,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '401': *25 '403': *29 '404': *6 @@ -105453,7 +105546,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 responses: '202': *39 '304': *37 @@ -105482,13 +105575,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 responses: '202': description: Response content: application/json: - schema: &753 + schema: &756 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -105529,7 +105622,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &754 + default: &757 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -105561,7 +105654,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *303 + - *324 - name: export_id in: path required: true @@ -105574,9 +105667,9 @@ paths: description: Response content: application/json: - schema: *753 + schema: *756 examples: - default: *754 + default: *757 '404': *6 x-github: githubCloudOnly: false @@ -105597,7 +105690,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *303 + - *324 responses: '200': description: Response @@ -105613,9 +105706,9 @@ paths: type: integer machines: type: array - items: *755 + items: *758 examples: - default: *756 + default: *759 '304': *37 '500': *88 '401': *25 @@ -105644,7 +105737,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *303 + - *324 requestBody: required: true content: @@ -105694,13 +105787,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *398 + repository: *420 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *496 - required: *497 + properties: *518 + required: *519 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -106474,15 +106567,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 responses: '200': description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '304': *37 '500': *88 '400': *14 @@ -106514,15 +106607,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 responses: '200': description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '500': *88 '401': *25 '403': *29 @@ -106552,9 +106645,9 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: &769 + default: &772 value: - id: 197 name: hello_docker @@ -106655,7 +106748,7 @@ paths: application/json: schema: type: array - items: &757 + items: &760 title: Email description: Email type: object @@ -106720,9 +106813,9 @@ paths: application/json: schema: type: array - items: *757 + items: *760 examples: - default: &771 + default: &774 value: - email: octocat@github.com verified: true @@ -106797,7 +106890,7 @@ paths: application/json: schema: type: array - items: *757 + items: *760 examples: default: value: @@ -106907,7 +107000,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '304': *37 @@ -106940,7 +107033,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '304': *37 @@ -106962,7 +107055,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *226 + - *246 responses: '204': description: if the person is followed by the authenticated user @@ -106992,7 +107085,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *226 + - *246 responses: '204': description: Response @@ -107017,7 +107110,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *226 + - *246 responses: '204': description: Response @@ -107053,7 +107146,7 @@ paths: application/json: schema: type: array - items: &758 + items: &761 title: GPG Key description: A unique encryption key type: object @@ -107184,7 +107277,7 @@ paths: - subkeys - revoked examples: - default: &785 + default: &788 value: - id: 3 name: Octocat's GPG Key @@ -107269,9 +107362,9 @@ paths: description: Response content: application/json: - schema: *758 + schema: *761 examples: - default: &759 + default: &762 value: id: 3 name: Octocat's GPG Key @@ -107328,7 +107421,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: - - &760 + - &763 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -107340,9 +107433,9 @@ paths: description: Response content: application/json: - schema: *758 + schema: *761 examples: - default: *759 + default: *762 '404': *6 '304': *37 '403': *29 @@ -107365,7 +107458,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: - - *760 + - *763 responses: '204': description: Response @@ -107556,7 +107649,7 @@ paths: type: array items: *64 examples: - default: *761 + default: *764 headers: Link: *40 '404': *6 @@ -107581,7 +107674,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *199 + - *219 responses: '204': description: Response @@ -107607,7 +107700,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *199 + - *219 responses: '204': description: Response @@ -107641,12 +107734,12 @@ paths: application/json: schema: anyOf: - - *290 + - *311 - type: object properties: {} additionalProperties: false examples: - default: *291 + default: *312 '204': description: Response when there are no restrictions x-github: @@ -107670,7 +107763,7 @@ paths: required: true content: application/json: - schema: *578 + schema: *600 examples: default: value: @@ -107681,7 +107774,7 @@ paths: description: Response content: application/json: - schema: *290 + schema: *311 examples: default: value: @@ -107762,7 +107855,7 @@ paths: - closed - all default: open - - *298 + - *319 - name: sort description: What to sort results by. in: query @@ -107775,7 +107868,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - *17 - *19 responses: @@ -107785,9 +107878,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: *299 + default: *320 headers: Link: *40 '404': *6 @@ -107820,7 +107913,7 @@ paths: application/json: schema: type: array - items: &762 + items: &765 title: Key description: Key type: object @@ -107917,9 +108010,9 @@ paths: description: Response content: application/json: - schema: *762 + schema: *765 examples: - default: &763 + default: &766 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107952,15 +108045,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *607 + - *629 responses: '200': description: Response content: application/json: - schema: *762 + schema: *765 examples: - default: *763 + default: *766 '404': *6 '304': *37 '403': *29 @@ -107983,7 +108076,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *607 + - *629 responses: '204': description: Response @@ -108016,7 +108109,7 @@ paths: application/json: schema: type: array - items: &764 + items: &767 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -108073,7 +108166,7 @@ paths: - id - type - login - plan: *164 + plan: *184 required: - billing_cycle - next_billing_date @@ -108084,7 +108177,7 @@ paths: - account - plan examples: - default: &765 + default: &768 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -108146,9 +108239,9 @@ paths: application/json: schema: type: array - items: *764 + items: *767 examples: - default: *765 + default: *768 headers: Link: *40 '304': *37 @@ -108188,7 +108281,7 @@ paths: application/json: schema: type: array - items: *304 + items: *325 examples: default: value: @@ -108296,7 +108389,7 @@ paths: description: Response content: application/json: - schema: *304 + schema: *325 examples: default: value: @@ -108379,7 +108472,7 @@ paths: description: Response content: application/json: - schema: *304 + schema: *325 examples: default: value: @@ -108447,7 +108540,7 @@ paths: application/json: schema: type: array - items: *306 + items: *327 examples: default: value: @@ -108700,7 +108793,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -108880,7 +108973,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *307 + - *328 - name: exclude in: query required: false @@ -108893,7 +108986,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -109087,7 +109180,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *307 + - *328 responses: '302': description: Response @@ -109113,7 +109206,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *307 + - *328 responses: '204': description: Response @@ -109142,8 +109235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *307 - - *766 + - *328 + - *769 responses: '204': description: Response @@ -109167,7 +109260,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *307 + - *328 - *17 - *19 responses: @@ -109177,9 +109270,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '404': *6 @@ -109216,7 +109309,7 @@ paths: type: array items: *59 examples: - default: *767 + default: *770 headers: Link: *40 '304': *37 @@ -109258,7 +109351,7 @@ paths: - docker - nuget - container - - *768 + - *771 - *19 - *17 responses: @@ -109268,10 +109361,10 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: *769 - '400': *770 + default: *772 + '400': *773 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109291,16 +109384,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *315 - - *316 + - *336 + - *337 responses: '200': description: Response content: application/json: - schema: *313 + schema: *334 examples: - default: &786 + default: &789 value: id: 40201 name: octo-name @@ -109413,8 +109506,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *315 - - *316 + - *336 + - *337 responses: '204': description: Response @@ -109444,8 +109537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *315 - - *316 + - *336 + - *337 - name: token description: package token schema: @@ -109477,8 +109570,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *315 - - *316 + - *336 + - *337 - *19 - *17 - name: state @@ -109498,7 +109591,7 @@ paths: application/json: schema: type: array - items: *317 + items: *338 examples: default: value: @@ -109547,15 +109640,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *315 - - *316 - - *318 + - *336 + - *337 + - *339 responses: '200': description: Response content: application/json: - schema: *317 + schema: *338 examples: default: value: @@ -109591,9 +109684,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *315 - - *316 - - *318 + - *336 + - *337 + - *339 responses: '204': description: Response @@ -109623,9 +109716,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *315 - - *316 - - *318 + - *336 + - *337 + - *339 responses: '204': description: Response @@ -109681,7 +109774,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: default: value: @@ -109753,9 +109846,9 @@ paths: application/json: schema: type: array - items: *757 + items: *760 examples: - default: *771 + default: *774 headers: Link: *40 '304': *37 @@ -109868,7 +109961,7 @@ paths: type: array items: *64 examples: - default: &778 + default: &781 summary: Default response value: - id: 1296269 @@ -110172,9 +110265,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 + default: *422 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -110212,9 +110305,9 @@ paths: application/json: schema: type: array - items: *580 + items: *602 examples: - default: *772 + default: *775 headers: Link: *40 '304': *37 @@ -110237,7 +110330,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *294 + - *315 responses: '204': description: Response @@ -110260,7 +110353,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *294 + - *315 responses: '204': description: Response @@ -110293,7 +110386,7 @@ paths: application/json: schema: type: array - items: &773 + items: &776 title: Social account description: Social media account type: object @@ -110308,7 +110401,7 @@ paths: - provider - url examples: - default: &774 + default: &777 value: - provider: twitter url: https://twitter.com/github @@ -110370,9 +110463,9 @@ paths: application/json: schema: type: array - items: *773 + items: *776 examples: - default: *774 + default: *777 '422': *15 '304': *37 '404': *6 @@ -110459,7 +110552,7 @@ paths: application/json: schema: type: array - items: &775 + items: &778 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -110479,7 +110572,7 @@ paths: - title - created_at examples: - default: &787 + default: &790 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110545,9 +110638,9 @@ paths: description: Response content: application/json: - schema: *775 + schema: *778 examples: - default: &776 + default: &779 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110578,7 +110671,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: - - &777 + - &780 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -110590,9 +110683,9 @@ paths: description: Response content: application/json: - schema: *775 + schema: *778 examples: - default: *776 + default: *779 '404': *6 '304': *37 '403': *29 @@ -110615,7 +110708,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: - - *777 + - *780 responses: '204': description: Response @@ -110644,7 +110737,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: - - &788 + - &791 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 @@ -110669,11 +110762,11 @@ paths: type: array items: *64 examples: - default-response: *778 + default-response: *781 application/vnd.github.v3.star+json: schema: type: array - items: &789 + items: &792 title: Starred Repository description: Starred Repository type: object @@ -110829,8 +110922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response if this repository is starred by you @@ -110858,8 +110951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -110883,8 +110976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -110917,9 +111010,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '304': *37 @@ -110956,7 +111049,7 @@ paths: application/json: schema: type: array - items: *366 + items: *388 examples: default: value: @@ -111034,7 +111127,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *166 + - *186 responses: '200': description: Response @@ -111042,10 +111135,10 @@ paths: application/json: schema: oneOf: - - *750 - - *749 + - *753 + - *752 examples: - default-response: &780 + default-response: &783 summary: Default response value: login: octocat @@ -111080,7 +111173,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &781 + response-with-git-hub-plan-information: &784 summary: Response with GitHub plan information value: login: octocat @@ -111140,7 +111233,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *779 + - *782 - *17 responses: '200': @@ -111151,7 +111244,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: example: ; rel="next" @@ -111181,7 +111274,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *226 + - *246 responses: '200': description: Response @@ -111189,11 +111282,11 @@ paths: application/json: schema: oneOf: - - *750 - - *749 + - *753 + - *752 examples: - default-response: *780 - response-with-git-hub-plan-information: *781 + default-response: *783 + response-with-git-hub-plan-information: *784 '404': *6 x-github: githubCloudOnly: false @@ -111219,7 +111312,7 @@ paths: - *17 - *89 - *90 - - *226 + - *246 requestBody: required: true content: @@ -111242,8 +111335,8 @@ paths: required: - subject_digests examples: - default: *782 - withPredicateType: *783 + default: *785 + withPredicateType: *786 responses: '200': description: Response @@ -111296,7 +111389,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *784 + default: *787 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111314,7 +111407,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *226 + - *246 requestBody: required: true content: @@ -111379,7 +111472,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *226 + - *246 - name: subject_digest description: Subject Digest in: path @@ -111410,7 +111503,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *226 + - *246 - name: attestation_id description: Attestation ID in: path @@ -111448,7 +111541,7 @@ paths: - *17 - *89 - *90 - - *226 + - *246 - name: subject_digest description: Subject Digest in: path @@ -111498,12 +111591,12 @@ paths: bundle_url: type: string examples: - default: *438 + default: *460 '201': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -111529,7 +111622,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *226 + - *246 responses: '200': description: Response @@ -111537,9 +111630,9 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: *769 + default: *772 '403': *29 '401': *25 x-github: @@ -111562,7 +111655,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -111572,7 +111665,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111643,7 +111736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *226 + - *246 - *73 - *17 - *19 @@ -111654,7 +111747,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111733,7 +111826,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -111743,7 +111836,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111810,7 +111903,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -111822,7 +111915,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -111841,7 +111934,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *226 + - *246 - *17 - *19 responses: @@ -111853,7 +111946,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -111872,7 +111965,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-user-follows-another-user parameters: - - *226 + - *246 - name: target_user in: path required: true @@ -111899,8 +111992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *226 - - *150 + - *246 + - *170 - *17 - *19 responses: @@ -111910,9 +112003,9 @@ paths: application/json: schema: type: array - items: *151 + items: *171 examples: - default: *152 + default: *172 headers: Link: *40 '422': *15 @@ -111933,7 +112026,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -111943,9 +112036,9 @@ paths: application/json: schema: type: array - items: *758 + items: *761 examples: - default: *785 + default: *788 headers: Link: *40 x-github: @@ -111969,7 +112062,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *226 + - *246 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -112041,7 +112134,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *226 + - *246 responses: '200': description: Response @@ -112049,7 +112142,7 @@ paths: application/json: schema: *22 examples: - default: *577 + default: *599 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112067,7 +112160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -112118,7 +112211,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -112130,7 +112223,7 @@ paths: type: array items: *59 examples: - default: *767 + default: *770 headers: Link: *40 x-github: @@ -112169,8 +112262,8 @@ paths: - docker - nuget - container - - *768 - - *226 + - *771 + - *246 - *19 - *17 responses: @@ -112180,12 +112273,12 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: *769 + default: *772 '403': *29 '401': *25 - '400': *770 + '400': *773 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112205,17 +112298,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *315 - - *316 - - *226 + - *336 + - *337 + - *246 responses: '200': description: Response content: application/json: - schema: *313 + schema: *334 examples: - default: *786 + default: *789 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112236,9 +112329,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *315 - - *316 - - *226 + - *336 + - *337 + - *246 responses: '204': description: Response @@ -112270,9 +112363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *315 - - *316 - - *226 + - *336 + - *337 + - *246 - name: token description: package token schema: @@ -112304,9 +112397,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *315 - - *316 - - *226 + - *336 + - *337 + - *246 responses: '200': description: Response @@ -112314,7 +112407,7 @@ paths: application/json: schema: type: array - items: *317 + items: *338 examples: default: value: @@ -112372,16 +112465,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *315 - - *316 - - *318 - - *226 + - *336 + - *337 + - *339 + - *246 responses: '200': description: Response content: application/json: - schema: *317 + schema: *338 examples: default: value: @@ -112416,10 +112509,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *315 - - *316 - - *226 - - *318 + - *336 + - *337 + - *246 + - *339 responses: '204': description: Response @@ -112451,10 +112544,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *315 - - *316 - - *226 - - *318 + - *336 + - *337 + - *246 + - *339 responses: '204': description: Response @@ -112480,7 +112573,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-user-projects parameters: - - *226 + - *246 - name: state description: Indicates the state of the projects to return. in: query @@ -112501,7 +112594,7 @@ paths: application/json: schema: type: array - items: *329 + items: *350 examples: default: value: @@ -112563,7 +112656,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -112573,7 +112666,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -112652,7 +112745,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-received-by-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -112662,7 +112755,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -112739,7 +112832,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *226 + - *246 - name: type description: Limit results to repositories of the specified type. in: query @@ -112782,9 +112875,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -112808,15 +112901,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-actions-billing-for-a-user parameters: - - *226 + - *246 responses: '200': description: Response content: application/json: - schema: *353 + schema: *375 examples: - default: *354 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112838,15 +112931,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-a-user parameters: - - *226 + - *246 responses: '200': description: Response content: application/json: - schema: *358 + schema: *380 examples: - default: *359 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112868,15 +112961,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-a-user parameters: - - *226 + - *246 responses: '200': description: Response content: application/json: - schema: *360 + schema: *382 examples: - default: *361 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112896,11 +112989,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-a-user parameters: - - *226 - - *179 - - *180 - - *181 - - *182 + - *246 + - *199 + - *200 + - *201 + - *202 responses: '200': description: Response when getting a billing usage report @@ -112971,7 +113064,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112989,7 +113082,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -112999,9 +113092,9 @@ paths: application/json: schema: type: array - items: *773 + items: *776 examples: - default: *774 + default: *777 headers: Link: *40 x-github: @@ -113021,7 +113114,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -113031,9 +113124,9 @@ paths: application/json: schema: type: array - items: *775 + items: *778 examples: - default: *787 + default: *790 headers: Link: *40 x-github: @@ -113057,8 +113150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *226 - - *788 + - *246 + - *791 - *91 - *17 - *19 @@ -113070,11 +113163,11 @@ paths: schema: anyOf: - type: array - items: *789 + items: *792 - type: array items: *64 examples: - default-response: *778 + default-response: *781 headers: Link: *40 x-github: @@ -113093,7 +113186,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -113103,9 +113196,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -113233,7 +113326,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &790 + enterprise: &793 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -113291,7 +113384,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &791 + installation: &794 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -113310,7 +113403,7 @@ x-webhooks: required: - id - node_id - organization: &792 + organization: &795 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -113370,13 +113463,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &793 + repository: &796 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: &830 + properties: &833 id: description: Unique identifier of the repository example: 42 @@ -113396,8 +113489,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true organization: title: Simple User @@ -114059,7 +114152,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &831 + required: &834 - archive_url - assignees_url - blobs_url @@ -114210,10 +114303,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -114289,11 +114382,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - rule: &794 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + rule: &797 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) @@ -114516,11 +114609,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - rule: *794 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + rule: *797 sender: *4 required: - action @@ -114703,11 +114796,11 @@ x-webhooks: - everyone required: - from - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - rule: *794 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + rule: *797 sender: *4 required: - action @@ -114778,7 +114871,7 @@ x-webhooks: required: true content: application/json: - schema: &797 + schema: &800 title: Exemption request cancellation event type: object properties: @@ -114786,11 +114879,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - exemption_request: &795 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + exemption_request: &798 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -115023,7 +115116,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &796 + items: &799 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -115131,7 +115224,7 @@ x-webhooks: required: true content: application/json: - schema: &798 + schema: &801 title: Exemption request completed event type: object properties: @@ -115139,11 +115232,11 @@ x-webhooks: type: string enum: - completed - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - exemption_request: *795 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + exemption_request: *798 sender: *4 required: - action @@ -115213,7 +115306,7 @@ x-webhooks: required: true content: application/json: - schema: &799 + schema: &802 title: Exemption request created event type: object properties: @@ -115221,11 +115314,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - exemption_request: *795 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + exemption_request: *798 sender: *4 required: - action @@ -115295,7 +115388,7 @@ x-webhooks: required: true content: application/json: - schema: &800 + schema: &803 title: Exemption response dismissed event type: object properties: @@ -115303,12 +115396,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - exemption_request: *795 - exemption_response: *796 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + exemption_request: *798 + exemption_response: *799 sender: *4 required: - action @@ -115380,7 +115473,7 @@ x-webhooks: required: true content: application/json: - schema: &801 + schema: &804 title: Exemption response submitted event type: object properties: @@ -115388,12 +115481,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - exemption_request: *795 - exemption_response: *796 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + exemption_request: *798 + exemption_response: *799 sender: *4 required: - action @@ -115466,7 +115559,7 @@ x-webhooks: required: true content: application/json: - schema: *797 + schema: *800 responses: '200': description: Return a 200 status to indicate that the data was received @@ -115533,7 +115626,7 @@ x-webhooks: required: true content: application/json: - schema: *798 + schema: *801 responses: '200': description: Return a 200 status to indicate that the data was received @@ -115600,7 +115693,7 @@ x-webhooks: required: true content: application/json: - schema: *799 + schema: *802 responses: '200': description: Return a 200 status to indicate that the data was received @@ -115667,7 +115760,7 @@ x-webhooks: required: true content: application/json: - schema: *800 + schema: *803 responses: '200': description: Return a 200 status to indicate that the data was received @@ -115735,7 +115828,7 @@ x-webhooks: required: true content: application/json: - schema: *801 + schema: *804 responses: '200': description: Return a 200 status to indicate that the data was received @@ -115813,7 +115906,7 @@ x-webhooks: type: string enum: - completed - check_run: &803 + check_run: &806 title: CheckRun description: A check performed on the code of a given code change type: object @@ -115866,8 +115959,8 @@ x-webhooks: type: string pull_requests: type: array - items: *457 - repository: *204 + items: *479 + repository: *224 status: example: completed type: string @@ -115904,7 +115997,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *802 + deployment: *805 details_url: example: https://example.com type: string @@ -115954,7 +116047,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *457 + items: *479 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -115989,9 +116082,9 @@ x-webhooks: - output - app - pull_requests - installation: *791 - organization: *792 - repository: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - check_run @@ -116384,10 +116477,10 @@ x-webhooks: type: string enum: - created - check_run: *803 - installation: *791 - organization: *792 - repository: *793 + check_run: *806 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - check_run @@ -116783,10 +116876,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *803 - installation: *791 - organization: *792 - repository: *793 + check_run: *806 + installation: *794 + organization: *795 + repository: *796 requested_action: description: The action requested by the user. type: object @@ -117191,10 +117284,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *803 - installation: *791 - organization: *792 - repository: *793 + check_run: *806 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - check_run @@ -118171,10 +118264,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -118844,10 +118937,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -119511,10 +119604,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -119677,7 +119770,7 @@ x-webhooks: required: - login - id - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -119822,20 +119915,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &804 + commit_oid: &807 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: *790 - installation: *791 - organization: *792 - ref: &805 + enterprise: *793 + installation: *794 + organization: *795 + ref: &808 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: *793 + repository: *796 sender: *4 required: - action @@ -119997,7 +120090,7 @@ x-webhooks: required: - login - id - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -120227,12 +120320,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *804 - enterprise: *790 - installation: *791 - organization: *792 - ref: *805 - repository: *793 + commit_oid: *807 + enterprise: *793 + installation: *794 + organization: *795 + ref: *808 + repository: *796 sender: *4 required: - action @@ -120327,7 +120420,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120495,12 +120588,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *804 - enterprise: *790 - installation: *791 - organization: *792 - ref: *805 - repository: *793 + commit_oid: *807 + enterprise: *793 + installation: *794 + organization: *795 + ref: *808 + repository: *796 sender: *4 required: - action @@ -120663,7 +120756,7 @@ x-webhooks: required: - login - id - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -120829,12 +120922,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *804 - enterprise: *790 - installation: *791 - organization: *792 - ref: *805 - repository: *793 + commit_oid: *807 + enterprise: *793 + installation: *794 + organization: *795 + ref: *808 + repository: *796 sender: *4 required: - action @@ -120931,7 +121024,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -121099,16 +121192,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 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: *793 + repository: *796 sender: *4 required: - action @@ -121202,7 +121295,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -121342,12 +121435,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *804 - enterprise: *790 - installation: *791 - organization: *792 - ref: *805 - repository: *793 + commit_oid: *807 + enterprise: *793 + installation: *794 + organization: *795 + ref: *808 + repository: *796 sender: *4 required: - action @@ -121604,10 +121697,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -121687,18 +121780,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *792 - pusher_type: &806 + organization: *795 + pusher_type: &809 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &807 + ref: &810 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -121708,7 +121801,7 @@ x-webhooks: enum: - tag - branch - repository: *793 + repository: *796 sender: *4 required: - ref @@ -121791,9 +121884,9 @@ x-webhooks: enum: - created definition: *119 - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 sender: *4 required: - action @@ -121878,9 +121971,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 sender: *4 required: - action @@ -121958,9 +122051,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *119 - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 sender: *4 required: - action @@ -122038,9 +122131,9 @@ x-webhooks: enum: - updated definition: *119 - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 sender: *4 required: - action @@ -122117,19 +122210,19 @@ x-webhooks: type: string enum: - updated - enterprise: *790 - installation: *791 - repository: *793 - organization: *792 + enterprise: *793 + installation: *794 + repository: *796 + organization: *795 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *331 + items: *352 old_property_values: type: array description: The old custom property values for the repository. - items: *331 + items: *352 required: - action - repository @@ -122205,18 +122298,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *790 - installation: *791 - organization: *792 - pusher_type: *806 - ref: *807 + enterprise: *793 + installation: *794 + organization: *795 + pusher_type: *809 + ref: *810 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *793 + repository: *796 sender: *4 required: - ref @@ -122300,11 +122393,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122388,11 +122481,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122476,11 +122569,11 @@ x-webhooks: type: string enum: - created - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122562,11 +122655,11 @@ x-webhooks: type: string enum: - dismissed - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122648,11 +122741,11 @@ x-webhooks: type: string enum: - fixed - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122735,11 +122828,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122821,11 +122914,11 @@ x-webhooks: type: string enum: - reopened - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122902,9 +122995,9 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - key: &808 + enterprise: *793 + installation: *794 + key: &811 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -122940,8 +123033,8 @@ x-webhooks: - verified - created_at - read_only - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -123018,11 +123111,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - key: *808 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + key: *811 + organization: *795 + repository: *796 sender: *4 required: - action @@ -123583,12 +123676,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - workflow: &812 + workflow: &815 title: Workflow type: object nullable: true @@ -124314,13 +124407,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *533 + deployment: *555 pull_requests: type: array - items: *627 - repository: *793 - organization: *792 - installation: *791 + items: *649 + repository: *796 + organization: *795 + installation: *794 sender: *4 responses: '200': @@ -124391,7 +124484,7 @@ x-webhooks: type: string enum: - approved - approver: &809 + approver: &812 type: object properties: avatar_url: @@ -124434,11 +124527,11 @@ x-webhooks: type: string comment: type: string - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - reviewers: &810 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + reviewers: &813 type: array items: type: object @@ -124517,7 +124610,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &811 + workflow_job_run: &814 type: object properties: conclusion: @@ -125248,18 +125341,18 @@ x-webhooks: type: string enum: - rejected - approver: *809 + approver: *812 comment: type: string - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - reviewers: *810 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + reviewers: *813 sender: *4 since: type: string - workflow_job_run: *811 + workflow_job_run: *814 workflow_job_runs: type: array items: @@ -125963,13 +126056,13 @@ x-webhooks: type: string enum: - requested - enterprise: *790 + enterprise: *793 environment: type: string - installation: *791 - organization: *792 - repository: *793 - requestor: &817 + installation: *794 + organization: *795 + repository: *796 + requestor: &820 title: User type: object nullable: true @@ -127868,12 +127961,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - workflow: *812 + workflow: *815 workflow_run: title: Deployment Workflow Run type: object @@ -128553,7 +128646,7 @@ x-webhooks: type: string enum: - answered - answer: &815 + answer: &818 type: object properties: author_association: @@ -128710,7 +128803,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &813 + discussion: &816 title: Discussion description: A Discussion in a repository. type: object @@ -128996,7 +129089,7 @@ x-webhooks: - id labels: type: array - items: *589 + items: *611 required: - repository_url - category @@ -129018,10 +129111,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129148,11 +129241,11 @@ x-webhooks: - from required: - category - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129235,11 +129328,11 @@ x-webhooks: type: string enum: - closed - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129321,7 +129414,7 @@ x-webhooks: type: string enum: - created - comment: &814 + comment: &817 type: object properties: author_association: @@ -129478,11 +129571,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129565,12 +129658,12 @@ x-webhooks: type: string enum: - deleted - comment: *814 - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + comment: *817 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129665,12 +129758,12 @@ x-webhooks: - from required: - body - comment: *814 - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + comment: *817 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129754,11 +129847,11 @@ x-webhooks: type: string enum: - created - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129840,11 +129933,11 @@ x-webhooks: type: string enum: - deleted - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129944,11 +130037,11 @@ x-webhooks: type: string required: - from - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130030,10 +130123,10 @@ x-webhooks: type: string enum: - labeled - discussion: *813 - enterprise: *790 - installation: *791 - label: &816 + discussion: *816 + enterprise: *793 + installation: *794 + label: &819 title: Label type: object properties: @@ -130065,8 +130158,8 @@ x-webhooks: - color - default - description - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130149,11 +130242,11 @@ x-webhooks: type: string enum: - locked - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130235,11 +130328,11 @@ x-webhooks: type: string enum: - pinned - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130321,11 +130414,11 @@ x-webhooks: type: string enum: - reopened - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130410,16 +130503,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *813 - new_repository: *793 + new_discussion: *816 + new_repository: *796 required: - new_discussion - new_repository - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130502,10 +130595,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *813 - old_answer: *815 - organization: *792 - repository: *793 + discussion: *816 + old_answer: *818 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130587,12 +130680,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *813 - enterprise: *790 - installation: *791 - label: *816 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130675,11 +130768,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130761,11 +130854,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130834,7 +130927,7 @@ x-webhooks: required: true content: application/json: - schema: *799 + schema: *802 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130897,7 +130990,7 @@ x-webhooks: required: true content: application/json: - schema: *801 + schema: *804 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130963,7 +131056,7 @@ x-webhooks: required: true content: application/json: - schema: *797 + schema: *800 responses: '200': description: Return a 200 status to indicate that the data was received @@ -131029,7 +131122,7 @@ x-webhooks: required: true content: application/json: - schema: *798 + schema: *801 responses: '200': description: Return a 200 status to indicate that the data was received @@ -131095,7 +131188,7 @@ x-webhooks: required: true content: application/json: - schema: *799 + schema: *802 responses: '200': description: Return a 200 status to indicate that the data was received @@ -131161,7 +131254,7 @@ x-webhooks: required: true content: application/json: - schema: *800 + schema: *803 responses: '200': description: Return a 200 status to indicate that the data was received @@ -131227,7 +131320,7 @@ x-webhooks: required: true content: application/json: - schema: *801 + schema: *804 responses: '200': description: Return a 200 status to indicate that the data was received @@ -131294,7 +131387,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *790 + enterprise: *793 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -131954,9 +132047,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *791 - organization: *792 - repository: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - forkee @@ -132102,9 +132195,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pages: description: The pages that were updated. type: array @@ -132141,7 +132234,7 @@ x-webhooks: - action - sha - html_url - repository: *793 + repository: *796 sender: *4 required: - pages @@ -132217,10 +132310,10 @@ x-webhooks: type: string enum: - created - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories: &818 + organization: *795 + repositories: &821 description: An array of repository objects that the installation can access. type: array @@ -132246,8 +132339,8 @@ x-webhooks: - name - full_name - private - repository: *793 - requester: *817 + repository: *796 + requester: *820 sender: *4 required: - action @@ -132322,11 +132415,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories: *818 - repository: *793 + organization: *795 + repositories: *821 + repository: *796 requester: nullable: true sender: *4 @@ -132402,11 +132495,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories: *818 - repository: *793 + organization: *795 + repositories: *821 + repository: *796 requester: nullable: true sender: *4 @@ -132482,10 +132575,10 @@ x-webhooks: type: string enum: - added - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories_added: &819 + organization: *795 + repositories_added: &822 description: An array of repository objects, which were added to the installation. type: array @@ -132531,15 +132624,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *793 - repository_selection: &820 + repository: *796 + repository_selection: &823 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *817 + requester: *820 sender: *4 required: - action @@ -132618,10 +132711,10 @@ x-webhooks: type: string enum: - removed - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories_added: *819 + organization: *795 + repositories_added: *822 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -132648,9 +132741,9 @@ x-webhooks: - name - full_name - private - repository: *793 - repository_selection: *820 - requester: *817 + repository: *796 + repository_selection: *823 + requester: *820 sender: *4 required: - action @@ -132729,11 +132822,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories: *818 - repository: *793 + organization: *795 + repositories: *821 + repository: *796 requester: nullable: true sender: *4 @@ -132912,10 +133005,10 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 target_type: type: string @@ -132994,11 +133087,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories: *818 - repository: *793 + organization: *795 + repositories: *821 + repository: *796 requester: nullable: true sender: *4 @@ -133122,8 +133215,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 reactions: title: Reactions type: object @@ -133250,8 +133343,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -134074,7 +134167,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -134407,8 +134500,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -134488,7 +134581,7 @@ x-webhooks: type: string enum: - deleted - comment: &821 + comment: &824 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -134653,8 +134746,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -135473,7 +135566,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -135808,8 +135901,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -135889,7 +135982,7 @@ x-webhooks: type: string enum: - edited - changes: &849 + changes: &852 description: The changes to the comment. type: object properties: @@ -135901,9 +135994,9 @@ x-webhooks: type: string required: - from - comment: *821 - enterprise: *790 - installation: *791 + comment: *824 + enterprise: *793 + installation: *794 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -136725,7 +136818,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -137058,8 +137151,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -137141,10 +137234,10 @@ x-webhooks: type: string enum: - assigned - assignee: *817 - enterprise: *790 - installation: *791 - issue: &824 + assignee: *820 + enterprise: *793 + installation: *794 + issue: &827 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -137962,7 +138055,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -138063,8 +138156,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -138144,8 +138237,8 @@ x-webhooks: type: string enum: - closed - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -138968,7 +139061,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -139204,8 +139297,8 @@ x-webhooks: required: - state - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -139284,8 +139377,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140099,7 +140192,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -140199,8 +140292,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -140279,8 +140372,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141116,7 +141209,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -141195,7 +141288,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &822 + milestone: &825 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141333,8 +141426,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -141433,8 +141526,8 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -142249,7 +142342,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -142353,9 +142446,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *816 - organization: *792 - repository: *793 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -142435,8 +142528,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -143250,7 +143343,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -143354,9 +143447,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *816 - organization: *792 - repository: *793 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -143436,8 +143529,8 @@ x-webhooks: type: string enum: - locked - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -144275,7 +144368,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -144356,8 +144449,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -144436,8 +144529,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -145272,7 +145365,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -145350,9 +145443,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *822 - organization: *792 - repository: *793 + milestone: *825 + organization: *795 + repository: *796 sender: *4 required: - action @@ -146326,7 +146419,7 @@ x-webhooks: required: - login - id - type: *295 + type: *316 required: - id - number @@ -146795,8 +146888,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -147614,7 +147707,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -147714,8 +147807,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -147795,9 +147888,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *790 - installation: *791 - issue: &823 + enterprise: *793 + installation: *794 + issue: &826 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -148609,7 +148702,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -148709,8 +148802,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -148789,8 +148882,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149707,9 +149800,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *295 - organization: *792 - repository: *793 + type: *316 + organization: *795 + repository: *796 sender: *4 required: - action @@ -150604,7 +150697,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -151172,11 +151265,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *790 - installation: *791 - issue: *823 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *826 + organization: *795 + repository: *796 sender: *4 required: - action @@ -151256,12 +151349,12 @@ x-webhooks: type: string enum: - typed - enterprise: *790 - installation: *791 - issue: *824 - type: *295 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *827 + type: *316 + organization: *795 + repository: *796 sender: *4 required: - action @@ -151342,7 +151435,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &852 + assignee: &855 title: User type: object nullable: true @@ -151412,11 +151505,11 @@ x-webhooks: required: - login - id - enterprise: *790 - installation: *791 - issue: *824 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *827 + organization: *795 + repository: *796 sender: *4 required: - action @@ -151495,12 +151588,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *790 - installation: *791 - issue: *824 - label: *816 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *827 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -151580,8 +151673,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152420,7 +152513,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -152498,8 +152591,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152579,11 +152672,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *790 - installation: *791 - issue: *823 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *826 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152662,12 +152755,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *790 - installation: *791 - issue: *824 - type: *295 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *827 + type: *316 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152747,11 +152840,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - label: *816 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152829,11 +152922,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - label: *816 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152943,11 +153036,11 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - label: *816 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -153029,9 +153122,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *790 - installation: *791 - marketplace_purchase: &825 + enterprise: *793 + installation: *794 + marketplace_purchase: &828 title: Marketplace Purchase type: object required: @@ -153114,8 +153207,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *792 - previous_marketplace_purchase: &826 + organization: *795 + previous_marketplace_purchase: &829 title: Marketplace Purchase type: object properties: @@ -153195,7 +153288,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153275,10 +153368,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *790 - installation: *791 - marketplace_purchase: *825 - organization: *792 + enterprise: *793 + installation: *794 + marketplace_purchase: *828 + organization: *795 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153361,7 +153454,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153443,10 +153536,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *790 - installation: *791 - marketplace_purchase: *825 - organization: *792 + enterprise: *793 + installation: *794 + marketplace_purchase: *828 + organization: *795 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153528,7 +153621,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153609,8 +153702,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 marketplace_purchase: title: Marketplace Purchase type: object @@ -153692,9 +153785,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *792 - previous_marketplace_purchase: *826 - repository: *793 + organization: *795 + previous_marketplace_purchase: *829 + repository: *796 sender: *4 required: - action @@ -153774,12 +153867,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *790 - installation: *791 - marketplace_purchase: *825 - organization: *792 - previous_marketplace_purchase: *826 - repository: *793 + enterprise: *793 + installation: *794 + marketplace_purchase: *828 + organization: *795 + previous_marketplace_purchase: *829 + repository: *796 sender: *4 required: - action @@ -153881,11 +153974,11 @@ x-webhooks: type: string required: - to - enterprise: *790 - installation: *791 - member: *817 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + member: *820 + organization: *795 + repository: *796 sender: *4 required: - action @@ -153985,11 +154078,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *790 - installation: *791 - member: *817 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + member: *820 + organization: *795 + repository: *796 sender: *4 required: - action @@ -154068,11 +154161,11 @@ x-webhooks: type: string enum: - removed - enterprise: *790 - installation: *791 - member: *817 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + member: *820 + organization: *795 + repository: *796 sender: *4 required: - action @@ -154150,11 +154243,11 @@ x-webhooks: type: string enum: - added - enterprise: *790 - installation: *791 - member: *817 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + member: *820 + organization: *795 + repository: *796 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154230,7 +154323,7 @@ x-webhooks: required: - login - id - team: &827 + team: &830 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -154420,11 +154513,11 @@ x-webhooks: type: string enum: - removed - enterprise: *790 - installation: *791 - member: *817 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + member: *820 + organization: *795 + repository: *796 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154501,7 +154594,7 @@ x-webhooks: required: - login - id - team: *827 + team: *830 required: - action - scope @@ -154583,8 +154676,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *791 - merge_group: &829 + installation: *794 + merge_group: &832 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -154603,15 +154696,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *828 + head_commit: *831 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -154697,10 +154790,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *791 - merge_group: *829 - organization: *792 - repository: *793 + installation: *794 + merge_group: *832 + organization: *795 + repository: *796 sender: *4 required: - action @@ -154773,7 +154866,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 + enterprise: *793 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -154882,16 +154975,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *791 - organization: *792 + installation: *794 + organization: *795 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: *830 - required: *831 + properties: *833 + required: *834 nullable: true sender: *4 required: @@ -154972,11 +155065,11 @@ x-webhooks: type: string enum: - closed - enterprise: *790 - installation: *791 - milestone: *822 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + milestone: *825 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155055,9 +155148,9 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - milestone: &832 + enterprise: *793 + installation: *794 + milestone: &835 title: Milestone description: A collection of related issues and pull requests. type: object @@ -155194,8 +155287,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155274,11 +155367,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - milestone: *822 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + milestone: *825 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155388,11 +155481,11 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - milestone: *822 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + milestone: *825 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155472,11 +155565,11 @@ x-webhooks: type: string enum: - opened - enterprise: *790 - installation: *791 - milestone: *832 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + milestone: *835 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155555,11 +155648,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *817 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + blocked_user: *820 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155638,11 +155731,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *817 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + blocked_user: *820 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155721,9 +155814,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - membership: &833 + enterprise: *793 + installation: *794 + membership: &836 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -155830,8 +155923,8 @@ x-webhooks: - role - organization_url - user - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155909,11 +156002,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *790 - installation: *791 - membership: *833 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + membership: *836 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155992,8 +156085,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -156109,10 +156202,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 - user: *817 + user: *820 required: - action - invitation @@ -156190,11 +156283,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *790 - installation: *791 - membership: *833 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + membership: *836 + organization: *795 + repository: *796 sender: *4 required: - action @@ -156281,11 +156374,11 @@ x-webhooks: properties: from: type: string - enterprise: *790 - installation: *791 - membership: *833 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + membership: *836 + organization: *795 + repository: *796 sender: *4 required: - action @@ -156361,9 +156454,9 @@ x-webhooks: type: string enum: - published - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 package: description: Information about the package. type: object @@ -156862,7 +156955,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &834 + items: &837 title: Ruby Gems metadata type: object properties: @@ -156957,7 +157050,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -157033,9 +157126,9 @@ x-webhooks: type: string enum: - updated - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 package: description: Information about the package. type: object @@ -157388,7 +157481,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *834 + items: *837 source_url: type: string format: uri @@ -157458,7 +157551,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -157635,12 +157728,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *790 + enterprise: *793 id: type: integer - installation: *791 - organization: *792 - repository: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - id @@ -157717,7 +157810,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &835 + personal_access_token_request: &838 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -157863,10 +157956,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *790 - organization: *792 + enterprise: *793 + organization: *795 sender: *4 - installation: *791 + installation: *794 required: - action - personal_access_token_request @@ -157943,11 +158036,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *835 - enterprise: *790 - organization: *792 + personal_access_token_request: *838 + enterprise: *793 + organization: *795 sender: *4 - installation: *791 + installation: *794 required: - action - personal_access_token_request @@ -158023,11 +158116,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *835 - enterprise: *790 - organization: *792 + personal_access_token_request: *838 + enterprise: *793 + organization: *795 sender: *4 - installation: *791 + installation: *794 required: - action - personal_access_token_request @@ -158102,11 +158195,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *835 - organization: *792 - enterprise: *790 + personal_access_token_request: *838 + organization: *795 + enterprise: *793 sender: *4 - installation: *791 + installation: *794 required: - action - personal_access_token_request @@ -158211,7 +158304,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *836 + last_response: *839 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -158243,8 +158336,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 zen: description: Random string of GitHub zen. @@ -158489,10 +158582,10 @@ x-webhooks: - from required: - note - enterprise: *790 - installation: *791 - organization: *792 - project_card: &837 + enterprise: *793 + installation: *794 + organization: *795 + project_card: &840 title: Project Card type: object properties: @@ -158611,7 +158704,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -158692,11 +158785,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - project_card: *837 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project_card: *840 + repository: *796 sender: *4 required: - action @@ -158776,9 +158869,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 project_card: title: Project Card type: object @@ -158906,8 +158999,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: *830 - required: *831 + properties: *833 + required: *834 nullable: true sender: *4 required: @@ -159001,11 +159094,11 @@ x-webhooks: - from required: - note - enterprise: *790 - installation: *791 - organization: *792 - project_card: *837 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project_card: *840 + repository: *796 sender: *4 required: - action @@ -159099,9 +159192,9 @@ x-webhooks: - from required: - column_id - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 project_card: allOf: - title: Project Card @@ -159291,7 +159384,7 @@ x-webhooks: type: string required: - after_id - repository: *793 + repository: *796 sender: *4 required: - action @@ -159371,10 +159464,10 @@ x-webhooks: type: string enum: - closed - enterprise: *790 - installation: *791 - organization: *792 - project: &839 + enterprise: *793 + installation: *794 + organization: *795 + project: &842 title: Project type: object properties: @@ -159498,7 +159591,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -159578,10 +159671,10 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - project_column: &838 + enterprise: *793 + installation: *794 + organization: *795 + project_column: &841 title: Project Column type: object properties: @@ -159620,7 +159713,7 @@ x-webhooks: - name - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -159699,18 +159792,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - project_column: *838 + enterprise: *793 + installation: *794 + organization: *795 + project_column: *841 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: *830 - required: *831 + properties: *833 + required: *834 nullable: true sender: *4 required: @@ -159800,11 +159893,11 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - organization: *792 - project_column: *838 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project_column: *841 + repository: *796 sender: *4 required: - action @@ -159884,11 +159977,11 @@ x-webhooks: type: string enum: - moved - enterprise: *790 - installation: *791 - organization: *792 - project_column: *838 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project_column: *841 + repository: *796 sender: *4 required: - action @@ -159968,11 +160061,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - project: *839 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project: *842 + repository: *796 sender: *4 required: - action @@ -160052,18 +160145,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - project: *839 + enterprise: *793 + installation: *794 + organization: *795 + project: *842 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: *830 - required: *831 + properties: *833 + required: *834 nullable: true sender: *4 required: @@ -160165,11 +160258,11 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - organization: *792 - project: *839 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project: *842 + repository: *796 sender: *4 required: - action @@ -160248,11 +160341,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *790 - installation: *791 - organization: *792 - project: *839 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project: *842 + repository: *796 sender: *4 required: - action @@ -160333,9 +160426,9 @@ x-webhooks: type: string enum: - closed - installation: *791 - organization: *792 - projects_v2: &840 + installation: *794 + organization: *795 + projects_v2: &843 title: Projects v2 Project description: A projects v2 project type: object @@ -160478,9 +160571,9 @@ x-webhooks: type: string enum: - created - installation: *791 - organization: *792 - projects_v2: *840 + installation: *794 + organization: *795 + projects_v2: *843 sender: *4 required: - action @@ -160561,9 +160654,9 @@ x-webhooks: type: string enum: - deleted - installation: *791 - organization: *792 - projects_v2: *840 + installation: *794 + organization: *795 + projects_v2: *843 sender: *4 required: - action @@ -160680,9 +160773,9 @@ x-webhooks: type: string to: type: string - installation: *791 - organization: *792 - projects_v2: *840 + installation: *794 + organization: *795 + projects_v2: *843 sender: *4 required: - action @@ -160765,7 +160858,7 @@ x-webhooks: type: string enum: - archived - changes: &844 + changes: &847 type: object properties: archived_at: @@ -160779,9 +160872,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *791 - organization: *792 - projects_v2_item: &841 + installation: *794 + organization: *795 + projects_v2_item: &844 title: Projects v2 Item description: An item belonging to a project type: object @@ -160915,9 +161008,9 @@ x-webhooks: nullable: true to: type: string - installation: *791 - organization: *792 - projects_v2_item: *841 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -160999,9 +161092,9 @@ x-webhooks: type: string enum: - created - installation: *791 - organization: *792 - projects_v2_item: *841 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -161082,9 +161175,9 @@ x-webhooks: type: string enum: - deleted - installation: *791 - organization: *792 - projects_v2_item: *841 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -161190,7 +161283,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &842 + - &845 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -161208,7 +161301,7 @@ x-webhooks: required: - id - name - - &843 + - &846 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -161231,8 +161324,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *842 - - *843 + - *845 + - *846 required: - field_value - type: object @@ -161248,9 +161341,9 @@ x-webhooks: nullable: true required: - body - installation: *791 - organization: *792 - projects_v2_item: *841 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -161345,9 +161438,9 @@ x-webhooks: to: type: string nullable: true - installation: *791 - organization: *792 - projects_v2_item: *841 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -161430,10 +161523,10 @@ x-webhooks: type: string enum: - restored - changes: *844 - installation: *791 - organization: *792 - projects_v2_item: *841 + changes: *847 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -161515,9 +161608,9 @@ x-webhooks: type: string enum: - reopened - installation: *791 - organization: *792 - projects_v2: *840 + installation: *794 + organization: *795 + projects_v2: *843 sender: *4 required: - action @@ -161598,9 +161691,9 @@ x-webhooks: type: string enum: - created - installation: *791 - organization: *792 - projects_v2_status_update: &845 + installation: *794 + organization: *795 + projects_v2_status_update: &848 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -161727,9 +161820,9 @@ x-webhooks: type: string enum: - deleted - installation: *791 - organization: *792 - projects_v2_status_update: *845 + installation: *794 + organization: *795 + projects_v2_status_update: *848 sender: *4 required: - action @@ -161865,9 +161958,9 @@ x-webhooks: type: string format: date nullable: true - installation: *791 - organization: *792 - projects_v2_status_update: *845 + installation: *794 + organization: *795 + projects_v2_status_update: *848 sender: *4 required: - action @@ -161938,10 +162031,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - repository @@ -162018,13 +162111,13 @@ x-webhooks: type: string enum: - assigned - assignee: *817 - enterprise: *790 - installation: *791 - number: &846 + assignee: *820 + enterprise: *793 + installation: *794 + number: &849 description: The pull request number. type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -164307,7 +164400,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -164389,11 +164482,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -166671,7 +166764,7 @@ x-webhooks: - draft reason: type: string - repository: *793 + repository: *796 sender: *4 required: - action @@ -166753,11 +166846,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -169035,7 +169128,7 @@ x-webhooks: - draft reason: type: string - repository: *793 + repository: *796 sender: *4 required: - action @@ -169117,13 +169210,13 @@ x-webhooks: type: string enum: - closed - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: &847 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: &850 allOf: - - *627 + - *649 - type: object properties: allow_auto_merge: @@ -169185,7 +169278,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *793 + repository: *796 sender: *4 required: - action @@ -169266,12 +169359,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: *847 - repository: *793 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: *850 + repository: *796 sender: *4 required: - action @@ -169351,11 +169444,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *790 - milestone: *610 - number: *846 - organization: *792 - pull_request: &848 + enterprise: *793 + milestone: *632 + number: *849 + organization: *795 + pull_request: &851 title: Pull Request type: object properties: @@ -171618,7 +171711,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -171697,11 +171790,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -173983,7 +174076,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *793 + repository: *796 sender: *4 required: - action @@ -174107,12 +174200,12 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: *847 - repository: *793 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: *850 + repository: *796 sender: *4 required: - action @@ -174192,11 +174285,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -176463,7 +176556,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -176543,11 +176636,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *790 - installation: *791 - label: *816 - number: *846 - organization: *792 + enterprise: *793 + installation: *794 + label: *819 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -178829,7 +178922,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -178910,10 +179003,10 @@ x-webhooks: type: string enum: - locked - enterprise: *790 - installation: *791 - number: *846 - organization: *792 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -181193,7 +181286,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -181273,12 +181366,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *790 - milestone: *610 - number: *846 - organization: *792 - pull_request: *848 - repository: *793 + enterprise: *793 + milestone: *632 + number: *849 + organization: *795 + pull_request: *851 + repository: *796 sender: *4 required: - action @@ -181357,12 +181450,12 @@ x-webhooks: type: string enum: - opened - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: *847 - repository: *793 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: *850 + repository: *796 sender: *4 required: - action @@ -181443,12 +181536,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: *847 - repository: *793 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: *850 + repository: *796 sender: *4 required: - action @@ -181528,12 +181621,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: *847 - repository: *793 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: *850 + repository: *796 sender: *4 required: - action @@ -181899,9 +181992,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: type: object properties: @@ -184071,7 +184164,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -184151,7 +184244,7 @@ x-webhooks: type: string enum: - deleted - comment: &850 + comment: &853 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. @@ -184436,9 +184529,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: type: object properties: @@ -186596,7 +186689,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -186676,11 +186769,11 @@ x-webhooks: type: string enum: - edited - changes: *849 - comment: *850 - enterprise: *790 - installation: *791 - organization: *792 + changes: *852 + comment: *853 + enterprise: *793 + installation: *794 + organization: *795 pull_request: type: object properties: @@ -188841,7 +188934,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -188922,9 +189015,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: title: Simple Pull Request type: object @@ -191097,7 +191190,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 + repository: *796 review: description: The review that was affected. type: object @@ -191340,9 +191433,9 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: title: Simple Pull Request type: object @@ -193396,8 +193489,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 - review: &851 + repository: *796 + review: &854 description: The review that was affected. type: object properties: @@ -193626,12 +193719,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: description: The pull request number. type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -195914,7 +196007,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_reviewer: title: User type: object @@ -195998,12 +196091,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: description: The pull request number. type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -198293,7 +198386,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_team: title: Team description: Groups of organization members that gives permissions @@ -198485,12 +198578,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: description: The pull request number. type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -200775,7 +200868,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_reviewer: title: User type: object @@ -200860,12 +200953,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: description: The pull request number. type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -203141,7 +203234,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_team: title: Team description: Groups of organization members that gives permissions @@ -203322,9 +203415,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: title: Simple Pull Request type: object @@ -205499,8 +205592,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 - review: *851 + repository: *796 + review: *854 sender: *4 required: - action @@ -205580,9 +205673,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: title: Simple Pull Request type: object @@ -207652,7 +207745,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 + repository: *796 sender: *4 thread: type: object @@ -208035,9 +208128,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: title: Simple Pull Request type: object @@ -210093,7 +210186,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 + repository: *796 sender: *4 thread: type: object @@ -210479,10 +210572,10 @@ x-webhooks: type: string before: type: string - enterprise: *790 - installation: *791 - number: *846 - organization: *792 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -212753,7 +212846,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -212835,11 +212928,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *852 - enterprise: *790 - installation: *791 - number: *846 - organization: *792 + assignee: *855 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -215122,7 +215215,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -215201,11 +215294,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *790 - installation: *791 - label: *816 - number: *846 - organization: *792 + enterprise: *793 + installation: *794 + label: *819 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -217478,7 +217571,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -217559,10 +217652,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *790 - installation: *791 - number: *846 - organization: *792 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -219827,7 +219920,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -220027,7 +220120,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *790 + enterprise: *793 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -220119,8 +220212,8 @@ x-webhooks: - url - author - committer - installation: *791 - organization: *792 + installation: *794 + organization: *795 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -220695,9 +220788,9 @@ x-webhooks: type: string enum: - published - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 registry_package: type: object properties: @@ -221143,7 +221236,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *834 + items: *837 summary: type: string tag_name: @@ -221197,7 +221290,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -221275,9 +221368,9 @@ x-webhooks: type: string enum: - updated - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 registry_package: type: object properties: @@ -221585,7 +221678,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *834 + items: *837 summary: type: string tag_name: @@ -221634,7 +221727,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -221711,10 +221804,10 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - release: &853 + enterprise: *793 + installation: *794 + organization: *795 + release: &856 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -222027,7 +222120,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *793 + repository: *796 sender: *4 required: - action @@ -222104,11 +222197,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - release: *853 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + release: *856 + repository: *796 sender: *4 required: - action @@ -222225,11 +222318,11 @@ x-webhooks: type: boolean required: - to - enterprise: *790 - installation: *791 - organization: *792 - release: *853 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + release: *856 + repository: *796 sender: *4 required: - action @@ -222307,9 +222400,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -222626,7 +222719,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *793 + repository: *796 sender: *4 required: - action @@ -222702,10 +222795,10 @@ x-webhooks: type: string enum: - published - enterprise: *790 - installation: *791 - organization: *792 - release: &854 + enterprise: *793 + installation: *794 + organization: *795 + release: &857 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -223019,7 +223112,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *793 + repository: *796 sender: *4 required: - action @@ -223095,11 +223188,11 @@ x-webhooks: type: string enum: - released - enterprise: *790 - installation: *791 - organization: *792 - release: *853 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + release: *856 + repository: *796 sender: *4 required: - action @@ -223175,11 +223268,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *790 - installation: *791 - organization: *792 - release: *854 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + release: *857 + repository: *796 sender: *4 required: - action @@ -223255,11 +223348,11 @@ x-webhooks: type: string enum: - published - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - repository_advisory: *698 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + repository_advisory: *701 sender: *4 required: - action @@ -223335,11 +223428,11 @@ x-webhooks: type: string enum: - reported - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - repository_advisory: *698 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + repository_advisory: *701 sender: *4 required: - action @@ -223415,10 +223508,10 @@ x-webhooks: type: string enum: - archived - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -223495,10 +223588,10 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -223576,10 +223669,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -223663,10 +223756,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -223778,10 +223871,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -223853,10 +223946,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 status: type: string @@ -223937,10 +224030,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -224017,10 +224110,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -224114,10 +224207,10 @@ x-webhooks: - name required: - repository - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -224197,11 +224290,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - repository_ruleset: *133 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + repository_ruleset: *152 sender: *4 required: - action @@ -224279,11 +224372,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - repository_ruleset: *133 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + repository_ruleset: *152 sender: *4 required: - action @@ -224361,11 +224454,11 @@ x-webhooks: type: string enum: - edited - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - repository_ruleset: *133 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + repository_ruleset: *152 changes: type: object properties: @@ -224426,16 +224519,16 @@ x-webhooks: properties: added: type: array - items: *132 + items: *669 deleted: type: array - items: *132 + items: *669 updated: type: array items: type: object properties: - rule: *132 + rule: *669 changes: type: object properties: @@ -224669,10 +224762,10 @@ x-webhooks: - from required: - owner - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -224750,10 +224843,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -224831,7 +224924,7 @@ x-webhooks: type: string enum: - create - alert: &855 + alert: &858 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -224952,10 +225045,10 @@ x-webhooks: type: string enum: - open - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -225161,10 +225254,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -225242,11 +225335,11 @@ x-webhooks: type: string enum: - reopen - alert: *855 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + alert: *858 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -225445,10 +225538,10 @@ x-webhooks: enum: - fixed - open - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -225526,7 +225619,7 @@ x-webhooks: type: string enum: - created - alert: &856 + alert: &859 type: object properties: number: *103 @@ -225637,10 +225730,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -225721,11 +225814,11 @@ x-webhooks: type: string enum: - created - alert: *856 - installation: *791 - location: *857 - organization: *792 - repository: *793 + alert: *859 + installation: *794 + location: *860 + organization: *795 + repository: *796 sender: *4 required: - location @@ -225963,11 +226056,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *856 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + alert: *859 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -226045,11 +226138,11 @@ x-webhooks: type: string enum: - reopened - alert: *856 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + alert: *859 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -226127,11 +226220,11 @@ x-webhooks: type: string enum: - resolved - alert: *856 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + alert: *859 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -226209,11 +226302,11 @@ x-webhooks: type: string enum: - validated - alert: *856 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + alert: *859 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -226339,10 +226432,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *793 - enterprise: *790 - installation: *791 - organization: *792 + repository: *796 + enterprise: *793 + installation: *794 + organization: *795 sender: *4 required: - action @@ -226420,11 +226513,11 @@ x-webhooks: type: string enum: - published - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - security_advisory: &858 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + security_advisory: &861 description: The details of the security advisory, including summary, description, and severity. type: object @@ -226607,11 +226700,11 @@ x-webhooks: type: string enum: - updated - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - security_advisory: *858 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + security_advisory: *861 sender: *4 required: - action @@ -226684,10 +226777,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -226871,11 +226964,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *334 - enterprise: *790 - installation: *791 - organization: *792 - repository: *398 + security_and_analysis: *355 + enterprise: *793 + installation: *794 + organization: *795 + repository: *420 sender: *4 required: - changes @@ -226953,12 +227046,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: &859 + sponsorship: &862 type: object properties: created_at: @@ -227259,12 +227352,12 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: *859 + sponsorship: *862 required: - action - sponsorship @@ -227352,12 +227445,12 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: *859 + sponsorship: *862 required: - action - changes @@ -227434,17 +227527,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &860 + effective_date: &863 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: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: *859 + sponsorship: *862 required: - action - sponsorship @@ -227518,7 +227611,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &861 + changes: &864 type: object properties: tier: @@ -227562,13 +227655,13 @@ x-webhooks: - from required: - tier - effective_date: *860 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + effective_date: *863 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: *859 + sponsorship: *862 required: - action - changes @@ -227645,13 +227738,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *861 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + changes: *864 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: *859 + sponsorship: *862 required: - action - changes @@ -227725,10 +227818,10 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227811,10 +227904,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -228234,15 +228327,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *790 + enterprise: *793 id: description: The unique identifier of the status. type: integer - installation: *791 + installation: *794 name: type: string - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 sha: description: The Commit SHA. @@ -228351,15 +228444,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *160 + parent_issue: *180 parent_issue_repo: *64 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *160 - installation: *791 - organization: *792 - repository: *793 + sub_issue: *180 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -228443,15 +228536,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *160 + parent_issue: *180 parent_issue_repo: *64 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *160 - installation: *791 - organization: *792 - repository: *793 + sub_issue: *180 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -228535,15 +228628,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *160 + sub_issue: *180 sub_issue_repo: *64 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *160 - installation: *791 - organization: *792 - repository: *793 + parent_issue: *180 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -228627,15 +228720,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *160 + sub_issue: *180 sub_issue_repo: *64 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *160 - installation: *791 - organization: *792 - repository: *793 + parent_issue: *180 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -228712,12 +228805,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - team: &862 + team: &865 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -228907,9 +229000,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 repository: title: Repository description: A git repository @@ -229367,7 +229460,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -229443,9 +229536,9 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 repository: title: Repository description: A git repository @@ -229903,7 +229996,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -229980,9 +230073,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 repository: title: Repository description: A git repository @@ -230440,7 +230533,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -230584,9 +230677,9 @@ x-webhooks: - from required: - permissions - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 repository: title: Repository description: A git repository @@ -231044,7 +231137,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - changes @@ -231122,9 +231215,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 repository: title: Repository description: A git repository @@ -231582,7 +231675,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -231658,10 +231751,10 @@ x-webhooks: type: string enum: - started - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -231734,16 +231827,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *790 + enterprise: *793 inputs: type: object nullable: true additionalProperties: true - installation: *791 - organization: *792 + installation: *794 + organization: *795 ref: type: string - repository: *793 + repository: *796 sender: *4 workflow: type: string @@ -231825,10 +231918,10 @@ x-webhooks: type: string enum: - completed - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 workflow_job: allOf: @@ -232065,7 +232158,7 @@ x-webhooks: type: string required: - conclusion - deployment: *533 + deployment: *555 required: - action - repository @@ -232144,10 +232237,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 workflow_job: allOf: @@ -232407,7 +232500,7 @@ x-webhooks: required: - status - steps - deployment: *533 + deployment: *555 required: - action - repository @@ -232486,10 +232579,10 @@ x-webhooks: type: string enum: - queued - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 workflow_job: type: object @@ -232624,7 +232717,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *533 + deployment: *555 required: - action - repository @@ -232703,10 +232796,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 workflow_job: type: object @@ -232842,7 +232935,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *533 + deployment: *555 required: - action - repository @@ -232922,12 +233015,12 @@ x-webhooks: type: string enum: - completed - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - workflow: *812 + workflow: *815 workflow_run: title: Workflow Run type: object @@ -233926,12 +234019,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - workflow: *812 + workflow: *815 workflow_run: title: Workflow Run type: object @@ -234915,12 +235008,12 @@ x-webhooks: type: string enum: - requested - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - workflow: *812 + workflow: *815 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.deref.json b/descriptions/ghec/dereferenced/ghec.deref.json index 149b770f81..d4d8d2d601 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.json +++ b/descriptions/ghec/dereferenced/ghec.deref.json @@ -32256,7 +32256,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -32667,6 +32674,18 @@ ], "default": "disabled" }, + "code_scanning_options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -32907,7 +32926,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -33363,7 +33389,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -33562,6 +33595,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -33604,6 +33640,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -33752,7 +33791,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -34363,7 +34409,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -35174,7 +35227,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -35372,6 +35432,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -43343,83 +43406,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -47516,83 +47502,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -104635,7 +104544,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -105053,6 +104969,18 @@ ], "default": "disabled" }, + "code_scanning_options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -105333,7 +105261,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -105526,6 +105461,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -105681,7 +105619,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -105880,6 +105825,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -105922,6 +105870,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -106333,7 +106284,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -106526,6 +106484,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -106986,7 +106947,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -107179,6 +107147,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "disabled", "secret_scanning_push_protection": "disabled", @@ -107660,7 +107631,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -107858,6 +107836,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -158734,7 +158715,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -158937,7 +158923,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -159042,7 +159033,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -159377,7 +159373,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -159513,7 +159514,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -169428,83 +169434,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -173957,83 +173886,6 @@ } } }, - { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -277453,7 +277305,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -381391,7 +381250,7 @@ "/repos/{owner}/{repo}/issues/{issue_number}/sub_issues": { "get": { "summary": "List sub-issues", - "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\n\n- **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", "tags": [ "issues" ], diff --git a/descriptions/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index c8df19fcc2..50f97b29f6 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.deref.yaml @@ -859,7 +859,7 @@ paths: - subscriptions_url - type - url - type: &351 + type: &373 type: string description: The type of credit the user is receiving. enum: @@ -992,7 +992,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &188 + schema: &208 title: Validation Error Simple description: Validation Error Simple type: object @@ -1025,7 +1025,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: - - &700 + - &703 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1143,7 +1143,7 @@ paths: GitHub. type: object nullable: true - properties: &145 + properties: &165 id: description: Unique identifier of the GitHub app example: 37 @@ -1276,7 +1276,7 @@ paths: about itself. example: 5 type: integer - required: &146 + required: &166 - id - node_id - owner @@ -1581,7 +1581,7 @@ paths: schema: type: integer default: 30 - - &273 + - &294 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -1597,7 +1597,7 @@ paths: application/json: schema: type: array - items: &274 + items: &295 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -1677,7 +1677,7 @@ paths: - installation_id - repository_id examples: - default: &275 + default: &296 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -1709,7 +1709,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &710 + schema: &713 title: Scim Error description: Scim Error type: object @@ -1736,7 +1736,7 @@ paths: description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: &187 + schema: &207 title: Validation Error description: Validation Error type: object @@ -1805,7 +1805,7 @@ paths: description: Response content: application/json: - schema: &276 + schema: &297 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -1919,7 +1919,7 @@ paths: - request - response examples: - default: &277 + default: &298 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -2120,7 +2120,7 @@ paths: parameters: - *17 - *19 - - &150 + - &170 name: since description: 'Only show results that were last updated after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -2852,7 +2852,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &332 + properties: &353 id: description: Unique identifier of the repository example: 42 @@ -2872,7 +2872,7 @@ paths: title: License Simple description: License Simple type: object - properties: &161 + properties: &181 key: type: string example: mit @@ -2894,7 +2894,7 @@ paths: html_url: type: string format: uri - required: &162 + required: &182 - key - name - url @@ -3290,7 +3290,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &333 + required: &354 - archive_url - assignees_url - blobs_url @@ -7363,7 +7363,7 @@ paths: description: Response content: application/json: - schema: &189 + schema: &209 type: object properties: total_active_caches_count: @@ -7378,7 +7378,7 @@ paths: - total_active_caches_count - total_active_caches_size_in_bytes examples: - default: &190 + default: &210 value: total_active_caches_size_in_bytes: 3344284 total_active_caches_count: 5 @@ -7562,7 +7562,7 @@ paths: - public_ip_enabled - platform examples: - default: &191 + default: &211 value: total_count: 2 runners: @@ -7848,7 +7848,7 @@ paths: description: Response content: application/json: - schema: &192 + schema: &212 type: object properties: public_ips: @@ -7873,7 +7873,7 @@ paths: required: - public_ips examples: - default: &193 + default: &213 value: public_ips: current_usage: 17 @@ -7913,7 +7913,7 @@ paths: type: array items: *45 examples: - default: &194 + default: &214 value: id: 4-core cpu_cores: 4 @@ -8170,7 +8170,7 @@ paths: - all - local_only - selected - selected_actions_url: &197 + selected_actions_url: &217 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -8538,7 +8538,7 @@ paths: description: Success response content: application/json: - schema: &200 + schema: &220 type: object properties: default_workflow_permissions: &53 @@ -8586,7 +8586,7 @@ paths: required: true content: application/json: - schema: &201 + schema: &221 type: object properties: default_workflow_permissions: *53 @@ -9422,7 +9422,7 @@ paths: application/json: schema: type: array - items: &205 + items: &225 title: Runner Application description: Runner Application type: object @@ -9447,7 +9447,7 @@ paths: - download_url - filename examples: - default: &206 + default: &226 value: - os: osx architecture: x64 @@ -9531,7 +9531,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &207 + '201': &227 description: Response content: application/json: @@ -9646,7 +9646,7 @@ paths: - token - expires_at examples: - default: &208 + default: &228 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -9686,7 +9686,7 @@ paths: application/json: schema: *65 examples: - default: &209 + default: &229 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -9718,7 +9718,7 @@ paths: application/json: schema: *62 examples: - default: &210 + default: &230 value: id: 23 name: MBP @@ -9934,7 +9934,7 @@ paths: - *41 - *61 responses: - '200': &211 + '200': &231 description: Response content: application/json: @@ -9990,7 +9990,7 @@ paths: parameters: - *41 - *61 - - &212 + - &232 name: name description: The name of a self-hosted runner's custom label. in: path @@ -10081,7 +10081,7 @@ paths: required: true content: application/json: - schema: &219 + schema: &239 title: Enterprise Announcement description: Enterprise global announcement type: object @@ -10722,7 +10722,7 @@ paths: required: false schema: type: string - - &220 + - &240 name: include description: |- The event types to include: @@ -10740,7 +10740,7 @@ paths: - web - git - all - - &221 + - &241 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. @@ -10748,7 +10748,7 @@ paths: required: false schema: type: string - - &222 + - &242 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. @@ -10756,7 +10756,7 @@ paths: required: false schema: type: string - - &223 + - &243 name: order description: |- The order of audit log events. To list newest events first, specify `desc`. To list oldest events first, specify `asc`. @@ -10778,7 +10778,7 @@ paths: application/json: schema: type: array - items: &224 + items: &244 type: object properties: "@timestamp": @@ -10900,7 +10900,7 @@ paths: description: The repository visibility, for example `public` or `private`. examples: - default: &225 + default: &245 value: - "@timestamp": 1606929874512 action: team.add_member @@ -11501,7 +11501,7 @@ paths: in: query schema: type: string - - &227 + - &247 name: reviewer description: Filter bypass requests by the handle of the GitHub user who reviewed the bypass request. @@ -11509,7 +11509,7 @@ paths: required: false schema: type: string - - &228 + - &248 name: requester description: Filter bypass requests by the handle of the GitHub user who requested the bypass. @@ -11517,7 +11517,7 @@ paths: required: false schema: type: string - - &229 + - &249 name: time_period description: |- The time period to filter by. @@ -11533,7 +11533,7 @@ paths: - week - month default: day - - &230 + - &250 name: request_status description: The status of the bypass request to filter on. When specified, only requests with this status will be returned. @@ -11560,7 +11560,7 @@ paths: application/json: schema: type: array - items: &231 + items: &251 title: Push rule bypass request description: A bypass request made by a user asking to be exempted from a push rule in this repository. @@ -11677,7 +11677,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: &234 + items: &254 title: Bypass response description: A response made by a delegated bypasser to a bypass request. @@ -11721,7 +11721,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &232 + default: &252 value: - id: 21 number: 42 @@ -11808,7 +11808,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-enterprise parameters: - *41 - - &239 + - &259 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -11818,7 +11818,7 @@ paths: schema: &92 type: string description: The name of the tool used to generate the code scanning analysis. - - &240 + - &260 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -11841,7 +11841,7 @@ paths: be returned. in: query required: false - schema: &241 + schema: &261 type: string description: State of a code scanning alert. enum: @@ -11866,7 +11866,7 @@ paths: application/json: schema: type: array - items: &242 + items: &262 type: object properties: number: &103 @@ -11895,7 +11895,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &468 + instances_url: &490 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -11930,7 +11930,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &469 + dismissed_reason: &491 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -11939,13 +11939,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &470 + dismissed_comment: &492 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &471 + rule: &493 type: object properties: id: @@ -11998,7 +11998,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &472 + tool: &494 type: object properties: name: *92 @@ -12008,15 +12008,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *93 - most_recent_instance: &473 + most_recent_instance: &495 type: object properties: - ref: &466 + ref: &488 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &483 + analysis_key: &505 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -12027,7 +12027,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &484 + category: &506 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -12076,7 +12076,7 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: &177 + properties: &197 id: type: integer format: int64 @@ -12303,7 +12303,7 @@ paths: format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks description: The API URL to list the hooks on the repository. - required: &178 + required: &198 - archive_url - assignees_url - blobs_url @@ -12372,7 +12372,7 @@ paths: - most_recent_instance - repository examples: - default: &243 + default: &263 value: - number: 4 created_at: '2020-02-13T12:29:18Z' @@ -12603,7 +12603,7 @@ paths: headers: Link: *40 '404': *6 - '503': &137 + '503': &157 description: Service unavailable content: application/json: @@ -12725,6 +12725,11 @@ paths: type: object description: Feature options for code scanning nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default @@ -13020,6 +13025,15 @@ paths: - disabled - not_set default: disabled + code_scanning_options: &264 + type: object + description: Security Configuration feature options for code scanning + nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -13205,7 +13219,7 @@ paths: description: Response content: application/json: - schema: &245 + schema: &266 type: array description: A list of default code security configurations items: @@ -13221,7 +13235,7 @@ paths: default configuration: *95 examples: - default: &246 + default: &267 value: - default_for_new_repos: public configuration: @@ -13240,6 +13254,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: enabled @@ -13274,6 +13290,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: disabled @@ -13671,7 +13689,7 @@ paths: default: value: default_for_new_repos: all - configuration: &244 + configuration: &265 value: id: 1325 target_type: organization @@ -13688,6 +13706,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: enabled secret_scanning_push_protection: disabled @@ -13754,7 +13774,7 @@ paths: application/json: schema: type: array - items: &247 + items: &268 type: object description: Repositories associated with a code security configuration and attachment status @@ -13778,7 +13798,7 @@ paths: summary: Example of code security configuration repositories value: - status: attached - repository: &248 + repository: &269 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -14267,7 +14287,7 @@ paths: description: The team through which the assignee is granted access to GitHub Copilot, if applicable. oneOf: - - &235 + - &255 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -14326,7 +14346,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &310 + properties: &331 id: description: Unique identifier of the team type: integer @@ -14382,7 +14402,7 @@ paths: maps to within LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &311 + required: &332 - id - node_id - url @@ -14635,7 +14655,7 @@ paths: application/json: schema: type: array - items: &141 + items: &161 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -14942,7 +14962,7 @@ paths: - date additionalProperties: true examples: - default: &142 + default: &162 value: - date: '2024-06-24' total_active_users: 24 @@ -15044,7 +15064,7 @@ paths: '500': *88 '403': *29 '404': *6 - '422': &143 + '422': &163 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -15074,7 +15094,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - *41 - - &255 + - &276 name: state in: query description: |- @@ -15083,7 +15103,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &256 + - &277 name: severity in: query description: |- @@ -15092,7 +15112,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &257 + - &278 name: ecosystem in: query description: |- @@ -15101,14 +15121,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &258 + - &279 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &259 + - &280 name: epss_percentage in: query description: |- @@ -15120,7 +15140,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &260 + - &281 name: has in: query description: |- @@ -15134,7 +15154,7 @@ paths: type: string enum: - patch - - &261 + - &282 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -15144,7 +15164,7 @@ paths: enum: - development - runtime - - &262 + - &283 name: sort in: query description: |- @@ -15162,7 +15182,7 @@ paths: - *91 - *89 - *90 - - &263 + - &284 name: first description: |- **Deprecated**. The number of results per page (max 100), starting from the first matching result. @@ -15175,7 +15195,7 @@ paths: minimum: 1 maximum: 100 default: 30 - - &264 + - &285 name: last description: |- **Deprecated**. The number of results per page (max 100), starting from the last matching result. @@ -15195,7 +15215,7 @@ paths: application/json: schema: type: array - items: &265 + items: &286 type: object description: A Dependabot alert. properties: @@ -15258,7 +15278,7 @@ paths: - unknown - direct - transitive - security_advisory: &525 + security_advisory: &547 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -15490,7 +15510,7 @@ paths: nullable: true maxLength: 280 fixed_at: *113 - auto_dismissed_at: &526 + auto_dismissed_at: &548 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -15516,7 +15536,7 @@ paths: - repository additionalProperties: false examples: - default: &266 + default: &287 value: - number: 2 state: dismissed @@ -15933,7 +15953,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-an-enterprise-user parameters: - *41 - - &226 + - &246 name: username description: The handle for the GitHub user account. in: path @@ -16040,7 +16060,7 @@ paths: - name - created_on examples: - default: &362 + default: &384 value: total_count: 2 network_configurations: @@ -16263,7 +16283,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *41 - - &363 + - &385 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -16275,7 +16295,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &386 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -16309,7 +16329,7 @@ paths: - subnet_id - region examples: - default: &365 + default: &387 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -16605,7 +16625,7 @@ paths: required: true content: application/json: - schema: &330 + schema: &351 title: Custom Property Set Payload description: Custom property set payload type: object @@ -16785,7 +16805,7 @@ paths: - always - pull_request default: always - conditions: &135 + conditions: &154 title: Enterprise ruleset conditions type: object description: Conditions for an enterprise ruleset. The conditions @@ -16966,12 +16986,12 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: &132 + items: &155 title: Repository Rule type: object description: A repository rule. oneOf: - - &644 + - &132 title: creation description: Only allow users with bypass permission to create matching refs. @@ -16983,7 +17003,7 @@ paths: type: string enum: - creation - - &645 + - &133 title: update description: Only allow users with bypass permission to update matching refs. @@ -17004,7 +17024,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &647 + - &134 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -17016,7 +17036,7 @@ paths: type: string enum: - deletion - - &648 + - &135 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -17028,83 +17048,7 @@ paths: type: string enum: - required_linear_history - - &649 - title: merge_queue - description: Merges must be performed via a merge queue. - type: object - required: - - type - properties: - type: - type: string - enum: - - merge_queue - parameters: - type: object - properties: - check_response_timeout_minutes: - type: integer - description: Maximum time for a required status check - to report a conclusion. After this much time has elapsed, - checks that have not reported a conclusion will be - assumed to have failed - minimum: 1 - maximum: 360 - grouping_strategy: - type: string - description: When set to ALLGREEN, the merge commit - created by merge queue for each PR in the group must - pass all required checks to merge. When set to HEADGREEN, - only the commit at the head of the merge group, i.e. - the commit containing changes from all of the PRs - in the group, must pass its required checks to merge. - enum: - - ALLGREEN - - HEADGREEN - max_entries_to_build: - type: integer - description: Limit the number of queued pull requests - requesting checks and workflow runs at the same time. - minimum: 0 - maximum: 100 - max_entries_to_merge: - type: integer - description: The maximum number of PRs that will be - merged together in a group. - minimum: 0 - maximum: 100 - merge_method: - type: string - description: Method to use when merging changes from - queued pull requests. - enum: - - MERGE - - SQUASH - - REBASE - min_entries_to_merge: - type: integer - description: The minimum number of PRs that will be - merged together in a group. - minimum: 0 - maximum: 100 - min_entries_to_merge_wait_minutes: - type: integer - description: The time merge queue should wait after - the first PR is added to the queue for the minimum - group size to be met. After this time has elapsed, - the minimum group size will be ignored and a smaller - group will be merged. - minimum: 0 - maximum: 360 - required: - - check_response_timeout_minutes - - grouping_strategy - - max_entries_to_build - - max_entries_to_merge - - merge_method - - min_entries_to_merge - - min_entries_to_merge_wait_minutes - - &650 + - &136 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -17128,7 +17072,7 @@ paths: type: string required: - required_deployment_environments - - &651 + - &137 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -17140,7 +17084,7 @@ paths: type: string enum: - required_signatures - - &652 + - &138 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -17200,7 +17144,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &653 + - &139 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -17247,7 +17191,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &654 + - &140 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -17259,7 +17203,7 @@ paths: type: string enum: - non_fast_forward - - &655 + - &141 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -17295,7 +17239,7 @@ paths: required: - operator - pattern - - &656 + - &142 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -17331,7 +17275,7 @@ paths: required: - operator - pattern - - &657 + - &143 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -17367,7 +17311,7 @@ paths: required: - operator - pattern - - &658 + - &144 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -17403,7 +17347,7 @@ paths: required: - operator - pattern - - &659 + - &145 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -17439,7 +17383,7 @@ paths: required: - operator - pattern - - &660 + - &146 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit graph. @@ -17463,7 +17407,7 @@ paths: type: string required: - restricted_file_paths - - &661 + - &147 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed to the commit @@ -17487,7 +17431,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &662 + - &148 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -17510,7 +17454,7 @@ paths: type: string required: - restricted_file_extensions - - &663 + - &149 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit graph. @@ -17534,7 +17478,7 @@ paths: maximum: 100 required: - max_file_size - - &664 + - &150 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -17583,7 +17527,7 @@ paths: - repository_id required: - workflows - - &665 + - &151 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -17669,7 +17613,7 @@ paths: description: Response content: application/json: - schema: &133 + schema: &152 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -17740,7 +17684,7 @@ paths: nullable: true anyOf: - *126 - - &337 + - &358 title: Organization ruleset conditions type: object description: |- @@ -17787,7 +17731,109 @@ paths: - *129 rules: type: array - items: *132 + items: &669 + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - *132 + - *133 + - *134 + - *135 + - &667 + title: merge_queue + description: Merges must be performed via a merge queue. + type: object + required: + - type + properties: + type: + type: string + enum: + - merge_queue + parameters: + type: object + properties: + check_response_timeout_minutes: + type: integer + description: Maximum time for a required status check + to report a conclusion. After this much time has + elapsed, checks that have not reported a conclusion + will be assumed to have failed + minimum: 1 + maximum: 360 + grouping_strategy: + type: string + description: When set to ALLGREEN, the merge commit + created by merge queue for each PR in the group + must pass all required checks to merge. When set + to HEADGREEN, only the commit at the head of the + merge group, i.e. the commit containing changes + from all of the PRs in the group, must pass its + required checks to merge. + enum: + - ALLGREEN + - HEADGREEN + max_entries_to_build: + type: integer + description: Limit the number of queued pull requests + requesting checks and workflow runs at the same + time. + minimum: 0 + maximum: 100 + max_entries_to_merge: + type: integer + description: The maximum number of PRs that will be + merged together in a group. + minimum: 0 + maximum: 100 + merge_method: + type: string + description: Method to use when merging changes from + queued pull requests. + enum: + - MERGE + - SQUASH + - REBASE + min_entries_to_merge: + type: integer + description: The minimum number of PRs that will be + merged together in a group. + minimum: 0 + maximum: 100 + min_entries_to_merge_wait_minutes: + type: integer + description: The time merge queue should wait after + the first PR is added to the queue for the minimum + group size to be met. After this time has elapsed, + the minimum group size will be ignored and a smaller + group will be merged. + minimum: 0 + maximum: 360 + required: + - check_response_timeout_minutes + - grouping_strategy + - max_entries_to_build + - max_entries_to_merge + - merge_method + - min_entries_to_merge + - min_entries_to_merge_wait_minutes + - *136 + - *137 + - *138 + - *139 + - *140 + - *141 + - *142 + - *143 + - *144 + - *145 + - *146 + - *147 + - *148 + - *149 + - *150 + - *151 created_at: type: string format: date-time @@ -17795,7 +17841,7 @@ paths: type: string format: date-time examples: - default: &134 + default: &153 value: id: 21 name: super cool ruleset @@ -17854,9 +17900,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *134 + default: *153 '404': *6 '500': *88 x-github: @@ -17905,11 +17951,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *131 - conditions: *135 + conditions: *154 rules: description: An array of rules within the ruleset. type: array - items: *132 + items: *155 examples: default: value: @@ -17933,9 +17979,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *134 + default: *153 '404': *6 '500': *88 x-github: @@ -17997,7 +18043,7 @@ paths: application/json: schema: type: array - items: &136 + items: &156 title: Ruleset version type: object description: The historical version of a ruleset @@ -18021,7 +18067,7 @@ paths: type: string format: date-time examples: - default: &339 + default: &361 value: - version_id: 3 actor: @@ -18074,9 +18120,9 @@ paths: description: Response content: application/json: - schema: &340 + schema: &362 allOf: - - *136 + - *156 - type: object required: - state @@ -18129,7 +18175,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *41 - - &341 + - &363 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -18140,7 +18186,7 @@ paths: enum: - open - resolved - - &342 + - &364 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -18150,7 +18196,7 @@ paths: required: false schema: type: string - - &343 + - &365 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -18159,7 +18205,7 @@ paths: required: false schema: type: string - - &344 + - &366 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -18175,7 +18221,7 @@ paths: - *17 - *89 - *90 - - &345 + - &367 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -18184,7 +18230,7 @@ paths: required: false schema: type: string - - &346 + - &368 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -18193,7 +18239,7 @@ paths: schema: type: boolean default: false - - &347 + - &369 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -18202,7 +18248,7 @@ paths: schema: type: boolean default: false - - &348 + - &370 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -18218,7 +18264,7 @@ paths: application/json: schema: type: array - items: &349 + items: &371 type: object properties: number: *103 @@ -18237,14 +18283,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &678 + state: &681 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &679 + resolution: &682 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -18351,8 +18397,8 @@ paths: pull request. ' - oneOf: &680 - - &682 + oneOf: &683 + - &685 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -18404,7 +18450,7 @@ paths: - blob_url - commit_sha - commit_url - - &683 + - &686 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -18459,7 +18505,7 @@ paths: - page_url - commit_sha - commit_url - - &684 + - &687 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -18473,7 +18519,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_title_url - - &685 + - &688 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -18487,7 +18533,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/1347 required: - issue_body_url - - &686 + - &689 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -18501,7 +18547,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - issue_comment_url - - &687 + - &690 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -18515,7 +18561,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &688 + - &691 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -18529,7 +18575,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &689 + - &692 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -18543,7 +18589,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &690 + - &693 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -18557,7 +18603,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_title_url - - &691 + - &694 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -18571,7 +18617,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846 required: - pull_request_body_url - - &692 + - &695 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -18585,7 +18631,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1081119451 required: - pull_request_comment_url - - &693 + - &696 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -18599,7 +18645,7 @@ paths: example: https://api.github.com/repos/octocat/Hello-World/pulls/2846/reviews/80 required: - pull_request_review_url - - &694 + - &697 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -18619,7 +18665,7 @@ paths: description: A boolean value representing whether or not the token in the alert was detected in more than one location. examples: - default: &350 + default: &372 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -18870,7 +18916,7 @@ paths: headers: Link: *40 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -18901,7 +18947,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &375 type: object properties: total_minutes_used: @@ -18971,7 +19017,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &354 + default: &376 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -19002,7 +19048,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *41 - - &355 + - &377 name: advanced_security_product in: query description: | @@ -19022,7 +19068,7 @@ paths: description: Success content: application/json: - schema: &356 + schema: &378 type: object properties: total_advanced_security_committers: @@ -19077,7 +19123,7 @@ paths: required: - repositories examples: - default: &357 + default: &379 value: total_advanced_security_committers: 2 total_count: 2 @@ -19174,7 +19220,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19292,7 +19338,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-a-cost-center-by-id parameters: - *41 - - &140 + - &160 name: cost_center_id description: The ID corresponding to the cost center. in: path @@ -19304,7 +19350,7 @@ paths: description: Response when getting a cost center content: application/json: - schema: &138 + schema: &158 type: object properties: id: @@ -19332,7 +19378,7 @@ paths: - name - resources examples: - default: &139 + default: &159 value: - id: 2eeb8ffe-6903-11ee-8c99-0242ac120002 name: Cost Center Name @@ -19344,7 +19390,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19394,15 +19440,15 @@ paths: description: Response when updating a cost center content: application/json: - schema: *138 + schema: *158 examples: - default: *139 + default: *159 '400': *14 '403': *29 '404': *6 '409': *99 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19420,7 +19466,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#delete-a-cost-center parameters: - *41 - - *140 + - *160 responses: '200': description: Response when deleting a cost center @@ -19459,7 +19505,7 @@ paths: '404': *6 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19480,7 +19526,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#add-resources-to-a-cost-center parameters: - *41 - - *140 + - *160 requestBody: required: true content: @@ -19527,7 +19573,7 @@ paths: '403': *29 '409': *99 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19547,7 +19593,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#remove-resources-from-a-cost-center parameters: - *41 - - *140 + - *160 requestBody: required: true content: @@ -19594,7 +19640,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19625,7 +19671,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &380 type: object properties: total_gigabytes_bandwidth_used: @@ -19643,7 +19689,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &359 + default: &381 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -19678,7 +19724,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &382 type: object properties: days_left_in_billing_cycle: @@ -19696,7 +19742,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &361 + default: &383 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -19721,7 +19767,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/billing#get-billing-usage-report-for-an-enterprise parameters: - *41 - - &179 + - &199 name: year description: If specified, only return results for a single year. The value of `year` is an integer with four digits representing a year. For example, @@ -19730,7 +19776,7 @@ paths: required: false schema: type: integer - - &180 + - &200 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -19739,7 +19785,7 @@ paths: required: false schema: type: integer - - &181 + - &201 name: day description: If specified, only return results for a single day. The value of `day` is an integer between `1` and `31`. If no `year` or `month` is @@ -19748,7 +19794,7 @@ paths: required: false schema: type: integer - - &182 + - &202 name: hour description: If specified, only return results for a single hour. The value of `hour` is an integer between `0` and `23`. If no `year`, `month`, or @@ -19769,7 +19815,7 @@ paths: description: Response when getting a billing usage report content: application/json: - schema: &183 + schema: &203 type: object properties: usageItems: @@ -19822,7 +19868,7 @@ paths: - netAmount - organizationName examples: - default: &184 + default: &204 value: usageItems: - date: '2023-08-01' @@ -19839,7 +19885,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -19910,13 +19956,13 @@ paths: application/json: schema: type: array - items: *141 + items: *161 examples: - default: *142 + default: *162 '500': *88 '403': *29 '404': *6 - '422': *143 + '422': *163 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -20005,7 +20051,7 @@ paths: application/json: schema: type: array - items: &172 + items: &192 title: Event description: Event type: object @@ -20015,7 +20061,7 @@ paths: type: type: string nullable: true - actor: &144 + actor: &164 title: Actor description: Actor type: object @@ -20055,18 +20101,18 @@ paths: - id - name - url - org: *144 + org: *164 payload: type: object properties: action: type: string - issue: &160 + issue: &180 title: Issue description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &583 + properties: &605 id: type: integer format: int64 @@ -20178,7 +20224,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &510 + properties: &532 url: type: string format: uri @@ -20248,7 +20294,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &511 + required: &533 - closed_issues - creator - description @@ -20327,7 +20373,7 @@ paths: timeline_url: type: string format: uri - type: &295 + type: &316 title: Issue Type description: The type of issue. type: object @@ -20386,9 +20432,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 - author_association: &147 + properties: *165 + required: *166 + author_association: &167 title: author_association type: string example: OWNER @@ -20402,7 +20448,7 @@ paths: - MEMBER - NONE - OWNER - reactions: &148 + reactions: &168 title: Reaction Rollup type: object properties: @@ -20452,7 +20498,7 @@ paths: - total - completed - percent_completed - required: &584 + required: &606 - assignee - closed_at - comments @@ -20474,7 +20520,7 @@ paths: - author_association - created_at - updated_at - comment: &581 + comment: &603 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -20522,7 +20568,7 @@ paths: issue_url: type: string format: uri - author_association: *147 + author_association: *167 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -20532,9 +20578,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 - reactions: *148 + properties: *165 + required: *166 + reactions: *168 required: - id - node_id @@ -20629,7 +20675,7 @@ paths: created_at: '2022-06-07T07:50:26Z' '304': *37 '403': *29 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -20710,7 +20756,7 @@ paths: _links: type: object properties: - timeline: &149 + timeline: &169 title: Link With Type description: Hypermedia Link with Type type: object @@ -20722,17 +20768,17 @@ paths: required: - href - type - user: *149 - security_advisories: *149 - current_user: *149 - current_user_public: *149 - current_user_actor: *149 - current_user_organization: *149 + user: *169 + security_advisories: *169 + current_user: *169 + current_user_public: *169 + current_user_actor: *169 + current_user_organization: *169 current_user_organizations: type: array - items: *149 - repository_discussions: *149 - repository_discussions_category: *149 + items: *169 + repository_discussions: *169 + repository_discussions_category: *169 required: - timeline - user @@ -20794,7 +20840,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-the-authenticated-user parameters: - - *150 + - *170 - *17 - *19 responses: @@ -20804,7 +20850,7 @@ paths: application/json: schema: type: array - items: &151 + items: &171 title: Base Gist description: Base Gist type: object @@ -20903,7 +20949,7 @@ paths: - created_at - updated_at examples: - default: &152 + default: &172 value: - url: https://api.github.com/gists/aa5a315d61ae9438b18d forks_url: https://api.github.com/gists/aa5a315d61ae9438b18d/forks @@ -21024,7 +21070,7 @@ paths: description: Response content: application/json: - schema: &153 + schema: &173 title: Gist Simple description: Gist Simple type: object @@ -21041,7 +21087,7 @@ paths: url: type: string format: uri - user: &749 + user: &752 title: Public User description: Public User type: object @@ -21403,7 +21449,7 @@ paths: truncated: type: boolean examples: - default: &154 + default: &174 value: url: https://api.github.com/gists/2decf6c462d9b4418f2 forks_url: https://api.github.com/gists/2decf6c462d9b4418f2/forks @@ -21507,7 +21553,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-public-gists parameters: - - *150 + - *170 - *17 - *19 responses: @@ -21517,9 +21563,9 @@ paths: application/json: schema: type: array - items: *151 + items: *171 examples: - default: *152 + default: *172 headers: Link: *40 '422': *15 @@ -21541,7 +21587,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-starred-gists parameters: - - *150 + - *170 - *17 - *19 responses: @@ -21551,9 +21597,9 @@ paths: application/json: schema: type: array - items: *151 + items: *171 examples: - default: *152 + default: *172 headers: Link: *40 '401': *25 @@ -21581,7 +21627,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist parameters: - - &155 + - &175 name: gist_id description: The unique identifier of the gist. in: path @@ -21593,10 +21639,10 @@ paths: description: Response content: application/json: - schema: *153 + schema: *173 examples: - default: *154 - '403': &158 + default: *174 + '403': &178 description: Forbidden Gist content: application/json: @@ -21644,7 +21690,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#update-a-gist parameters: - - *155 + - *175 requestBody: required: true content: @@ -21704,9 +21750,9 @@ paths: description: Response content: application/json: - schema: *153 + schema: *173 examples: - updateGist: *154 + updateGist: *174 deleteFile: value: url: https://api.github.com/gists/2decf6c462d9b4418f2 @@ -21864,7 +21910,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#delete-a-gist parameters: - - *155 + - *175 responses: '204': description: Response @@ -21893,7 +21939,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#list-gist-comments parameters: - - *155 + - *175 - *17 - *19 responses: @@ -21903,7 +21949,7 @@ paths: application/json: schema: type: array - items: &156 + items: &176 title: Gist Comment description: A comment made to a gist. type: object @@ -21938,7 +21984,7 @@ paths: type: string format: date-time example: '2011-04-18T23:23:56Z' - author_association: *147 + author_association: *167 required: - url - id @@ -22003,7 +22049,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#create-a-gist-comment parameters: - - *155 + - *175 requestBody: required: true content: @@ -22028,9 +22074,9 @@ paths: description: Response content: application/json: - schema: *156 + schema: *176 examples: - default: &157 + default: &177 value: id: 1 node_id: MDExOkdpc3RDb21tZW50MQ== @@ -22088,8 +22134,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#get-a-gist-comment parameters: - - *155 - - &159 + - *175 + - &179 name: comment_id description: The unique identifier of the comment. in: path @@ -22102,12 +22148,12 @@ paths: description: Response content: application/json: - schema: *156 + schema: *176 examples: - default: *157 + default: *177 '304': *37 '404': *6 - '403': *158 + '403': *178 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -22129,8 +22175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#update-a-gist-comment parameters: - - *155 - - *159 + - *175 + - *179 requestBody: required: true content: @@ -22155,9 +22201,9 @@ paths: description: Response content: application/json: - schema: *156 + schema: *176 examples: - default: *157 + default: *177 '404': *6 x-github: githubCloudOnly: false @@ -22174,8 +22220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/comments#delete-a-gist-comment parameters: - - *155 - - *159 + - *175 + - *179 responses: '204': description: Response @@ -22198,7 +22244,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-commits parameters: - - *155 + - *175 - *17 - *19 responses: @@ -22299,7 +22345,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gist-forks parameters: - - *155 + - *175 - *17 - *19 responses: @@ -22309,7 +22355,7 @@ paths: application/json: schema: type: array - items: *153 + items: *173 examples: default: value: @@ -22374,13 +22420,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#fork-a-gist parameters: - - *155 + - *175 responses: '201': description: Response content: application/json: - schema: *151 + schema: *171 examples: default: value: @@ -22451,7 +22497,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#check-if-a-gist-is-starred parameters: - - *155 + - *175 responses: '204': description: Response if gist is starred @@ -22481,7 +22527,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#star-a-gist parameters: - - *155 + - *175 responses: '204': description: Response @@ -22503,7 +22549,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#unstar-a-gist parameters: - - *155 + - *175 responses: '204': description: Response @@ -22532,7 +22578,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#get-a-gist-revision parameters: - - *155 + - *175 - name: sha in: path required: true @@ -22543,9 +22589,9 @@ paths: description: Response content: application/json: - schema: *153 + schema: *173 examples: - default: *154 + default: *174 '422': *15 '404': *6 '403': *29 @@ -22911,7 +22957,7 @@ paths: - closed - all default: open - - &298 + - &319 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -22930,7 +22976,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - name: collab in: query required: false @@ -22960,9 +23006,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: &299 + default: &320 value: - id: 1 node_id: MDU6SXNzdWUx @@ -23246,8 +23292,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 examples: default: value: @@ -23532,7 +23578,7 @@ paths: example: '279' schema: type: string - X-CommonMarker-Version: &163 + X-CommonMarker-Version: &183 example: 0.17.4 schema: type: string @@ -23587,7 +23633,7 @@ paths: '200': description: Response headers: - X-CommonMarker-Version: *163 + X-CommonMarker-Version: *183 content: text/html: schema: @@ -23616,7 +23662,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account parameters: - - &166 + - &186 name: account_id description: account_id parameter in: path @@ -23628,7 +23674,7 @@ paths: description: Response content: application/json: - schema: &165 + schema: &185 title: Marketplace Purchase description: Marketplace Purchase type: object @@ -23658,7 +23704,7 @@ paths: nullable: true id: type: integer - plan: &164 + plan: &184 title: Marketplace Listing Plan description: Marketplace Listing Plan type: object @@ -23747,7 +23793,7 @@ paths: nullable: true updated_at: type: string - plan: *164 + plan: *184 required: - url - id @@ -23755,7 +23801,7 @@ paths: - login - marketplace_purchase examples: - default: &167 + default: &187 value: url: https://api.github.com/orgs/github type: Organization @@ -23840,9 +23886,9 @@ paths: application/json: schema: type: array - items: *164 + items: *184 examples: - default: &168 + default: &188 value: - url: https://api.github.com/marketplace_listing/plans/1313 accounts_url: https://api.github.com/marketplace_listing/plans/1313/accounts @@ -23882,14 +23928,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan parameters: - - &169 + - &189 name: plan_id description: The unique identifier of the plan. in: path required: true schema: type: integer - - &170 + - &190 name: sort description: The property to sort the results by. in: query @@ -23919,9 +23965,9 @@ paths: application/json: schema: type: array - items: *165 + items: *185 examples: - default: &171 + default: &191 value: - url: https://api.github.com/orgs/github type: Organization @@ -23995,15 +24041,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#get-a-subscription-plan-for-an-account-stubbed parameters: - - *166 + - *186 responses: '200': description: Response content: application/json: - schema: *165 + schema: *185 examples: - default: *167 + default: *187 '404': description: Not Found when the account has not purchased the listing '401': *25 @@ -24035,9 +24081,9 @@ paths: application/json: schema: type: array - items: *164 + items: *184 examples: - default: *168 + default: *188 headers: Link: *40 '401': *25 @@ -24060,8 +24106,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/marketplace#list-accounts-for-a-plan-stubbed parameters: - - *169 - - *170 + - *189 + - *190 - name: direction description: To return the oldest accounts first, set to `asc`. Ignored without the `sort` parameter. @@ -24081,9 +24127,9 @@ paths: application/json: schema: type: array - items: *165 + items: *185 examples: - default: *171 + default: *191 headers: Link: *40 '401': *25 @@ -24347,14 +24393,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &385 + - &407 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &386 + - &408 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -24371,7 +24417,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -24425,7 +24471,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &399 + '301': &421 description: Moved permanently content: application/json: @@ -24447,7 +24493,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &613 + - &635 name: all description: If `true`, show notifications marked as read. in: query @@ -24455,7 +24501,7 @@ paths: schema: type: boolean default: false - - &614 + - &636 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -24464,8 +24510,8 @@ paths: schema: type: boolean default: false - - *150 - - &615 + - *170 + - &637 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -24490,18 +24536,18 @@ paths: application/json: schema: type: array - items: &173 + items: &193 title: Thread description: Thread type: object properties: id: type: string - repository: &204 + repository: &224 title: Minimal Repository description: Minimal Repository type: object - properties: &268 + properties: &289 id: type: integer format: int64 @@ -24777,7 +24823,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &334 + security_and_analysis: &355 nullable: true type: object properties: @@ -24859,7 +24905,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &269 + required: &290 - archive_url - assignees_url - blobs_url @@ -24947,7 +24993,7 @@ paths: - url - subscription_url examples: - default: &616 + default: &638 value: - id: '1' repository: @@ -25113,7 +25159,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread parameters: - - &174 + - &194 name: thread_id description: The unique identifier of the notification thread. This corresponds to the value returned in the `id` field when you retrieve notifications @@ -25127,7 +25173,7 @@ paths: description: Response content: application/json: - schema: *173 + schema: *193 examples: default: value: @@ -25230,7 +25276,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-read parameters: - - *174 + - *194 responses: '205': description: Reset Content @@ -25253,7 +25299,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-a-thread-as-done parameters: - - *174 + - *194 responses: '204': description: No content @@ -25276,13 +25322,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#get-a-thread-subscription-for-the-authenticated-user parameters: - - *174 + - *194 responses: '200': description: Response content: application/json: - schema: &175 + schema: &195 title: Thread Subscription description: Thread Subscription type: object @@ -25319,7 +25365,7 @@ paths: - url - subscribed examples: - default: &176 + default: &196 value: subscribed: true ignored: false @@ -25350,7 +25396,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#set-a-thread-subscription parameters: - - *174 + - *194 requestBody: required: false content: @@ -25371,9 +25417,9 @@ paths: description: Response content: application/json: - schema: *175 + schema: *195 examples: - default: *176 + default: *196 '304': *37 '403': *29 '401': *25 @@ -25396,7 +25442,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#delete-a-thread-subscription parameters: - - *174 + - *194 responses: '204': description: Response @@ -25493,7 +25539,7 @@ paths: type: array items: *59 examples: - default: &767 + default: &770 value: - login: github id: 1 @@ -25557,7 +25603,7 @@ paths: type: integer custom_roles: type: array - items: &250 + items: &271 title: Organization Custom Repository Role description: Custom repository roles created by organization owners @@ -25605,7 +25651,7 @@ paths: - created_at - updated_at examples: - default: &251 + default: &272 value: id: 8030 name: Security Engineer @@ -25696,8 +25742,8 @@ paths: title: Simple Repository description: A GitHub repository. type: object - properties: *177 - required: *178 + properties: *197 + required: *198 nullable: true additionalProperties: false examples: @@ -25917,22 +25963,22 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-an-organization parameters: - *73 - - *179 - - *180 - - *181 - - *182 + - *199 + - *200 + - *201 + - *202 responses: '200': description: Billing usage report response for an organization content: application/json: - schema: *183 + schema: *203 examples: - default: *184 + default: *204 '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -25964,7 +26010,7 @@ paths: description: Response content: application/json: - schema: &185 + schema: &205 title: Organization Full description: |- Prevents users in the organization from using insecure methods of two-factor authentication to fulfill a two-factor requirement. @@ -26297,7 +26343,7 @@ paths: - updated_at - archived_at examples: - default-response: &186 + default-response: &206 value: login: github id: 1 @@ -26622,17 +26668,17 @@ paths: description: Response content: application/json: - schema: *185 + schema: *205 examples: - default: *186 + default: *206 '422': description: Validation failed content: application/json: schema: oneOf: - - *187 - - *188 + - *207 + - *208 '409': *99 x-github: githubCloudOnly: false @@ -26687,9 +26733,9 @@ paths: description: Response content: application/json: - schema: *189 + schema: *209 examples: - default: *190 + default: *210 headers: Link: *40 x-github: @@ -26730,7 +26776,7 @@ paths: type: integer repository_cache_usages: type: array - items: &404 + items: &426 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -26805,7 +26851,7 @@ paths: type: array items: *42 examples: - default: *191 + default: *211 headers: Link: *40 x-github: @@ -26989,9 +27035,9 @@ paths: description: Response content: application/json: - schema: *192 + schema: *212 examples: - default: *193 + default: *213 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27027,7 +27073,7 @@ paths: type: array items: *45 examples: - default: *194 + default: *214 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -27210,7 +27256,7 @@ paths: description: A JSON serialized template for OIDC subject claim customization content: application/json: - schema: &195 + schema: &215 title: Actions OIDC Subject customization description: Actions OIDC Subject customization type: object @@ -27224,7 +27270,7 @@ paths: required: - include_claim_keys examples: - default: &196 + default: &216 value: include_claim_keys: - repo @@ -27251,15 +27297,15 @@ paths: required: true content: application/json: - schema: *195 + schema: *215 examples: - default: *196 + default: *216 responses: '201': description: Empty response content: application/json: - schema: &215 + schema: &235 title: Empty Object description: An object without any properties. type: object @@ -27298,7 +27344,7 @@ paths: schema: type: object properties: - enabled_repositories: &198 + enabled_repositories: &218 type: string description: The policy that controls the repositories in the organization that are allowed to run GitHub Actions. @@ -27312,7 +27358,7 @@ paths: that are allowed to run GitHub Actions, when `enabled_repositories` is set to `selected`. allowed_actions: *49 - selected_actions_url: *197 + selected_actions_url: *217 required: - enabled_repositories examples: @@ -27352,7 +27398,7 @@ paths: schema: type: object properties: - enabled_repositories: *198 + enabled_repositories: *218 allowed_actions: *49 required: - enabled_repositories @@ -27400,7 +27446,7 @@ paths: type: array items: *64 examples: - default: &761 + default: &764 value: total_count: 1 repositories: @@ -27585,7 +27631,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#enable-a-selected-repository-for-github-actions-in-an-organization parameters: - *73 - - &199 + - &219 name: repository_id description: The unique identifier of the repository. in: path @@ -27614,7 +27660,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#disable-a-selected-repository-for-github-actions-in-an-organization parameters: - *73 - - *199 + - *219 responses: '204': description: Response @@ -27706,7 +27752,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *220 examples: default: *55 x-github: @@ -27740,7 +27786,7 @@ paths: required: false content: application/json: - schema: *201 + schema: *221 examples: default: *55 x-github: @@ -27787,7 +27833,7 @@ paths: type: number runner_groups: type: array - items: &202 + items: &222 type: object properties: id: @@ -27975,9 +28021,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *222 examples: - default: &203 + default: &223 value: id: 2 name: octo-runner-group @@ -28019,7 +28065,7 @@ paths: description: Response content: application/json: - schema: *202 + schema: *222 examples: default: value: @@ -28110,9 +28156,9 @@ paths: description: Response content: application/json: - schema: *202 + schema: *222 examples: - default: *203 + default: *223 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -28176,7 +28222,7 @@ paths: type: array items: *42 examples: - default: *191 + default: *211 headers: Link: *40 x-github: @@ -28217,9 +28263,9 @@ paths: type: number repositories: type: array - items: *204 + items: *224 examples: - default: &752 + default: &755 value: total_count: 1 repositories: @@ -28518,7 +28564,7 @@ paths: parameters: - *73 - *58 - - *199 + - *219 responses: '204': description: Response @@ -28542,7 +28588,7 @@ paths: parameters: - *73 - *58 - - *199 + - *219 responses: '204': description: Response @@ -28760,9 +28806,9 @@ paths: application/json: schema: type: array - items: *205 + items: *225 examples: - default: *206 + default: *226 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28827,7 +28873,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *207 + '201': *227 '404': *6 '422': *7 '409': *99 @@ -28866,7 +28912,7 @@ paths: application/json: schema: *65 examples: - default: *208 + default: *228 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28902,7 +28948,7 @@ paths: application/json: schema: *65 examples: - default: *209 + default: *229 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -28933,7 +28979,7 @@ paths: application/json: schema: *62 examples: - default: *210 + default: *230 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -29108,7 +29154,7 @@ paths: - *73 - *61 responses: - '200': *211 + '200': *231 '404': *6 x-github: githubCloudOnly: false @@ -29137,7 +29183,7 @@ paths: parameters: - *73 - *61 - - *212 + - *232 responses: '200': *67 '404': *6 @@ -29182,7 +29228,7 @@ paths: type: integer secrets: type: array - items: &213 + items: &233 title: Actions Secret for an Organization description: Secrets for GitHub Actions for an organization. type: object @@ -29261,7 +29307,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &446 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -29290,7 +29336,7 @@ paths: - key_id - key examples: - default: &425 + default: &447 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29316,7 +29362,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-organization-secret parameters: - *73 - - &214 + - &234 name: secret_name description: The name of the secret. in: path @@ -29328,7 +29374,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *233 examples: default: value: @@ -29359,7 +29405,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -29416,7 +29462,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -29443,7 +29489,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-organization-secret parameters: - *73 - - *214 + - *234 responses: '204': description: Response @@ -29470,7 +29516,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 - *19 - *17 responses: @@ -29488,9 +29534,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: &218 + default: &238 value: total_count: 1 repositories: @@ -29583,7 +29629,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#set-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -29636,7 +29682,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#add-selected-repository-to-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -29670,7 +29716,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#remove-selected-repository-from-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -29703,7 +29749,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *73 - - &409 + - &431 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -29727,7 +29773,7 @@ paths: type: integer variables: type: array - items: &216 + items: &236 title: Actions Variable for an Organization description: Organization variable for GitHub Actions. type: object @@ -29860,7 +29906,7 @@ paths: description: Response when creating a variable content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -29886,7 +29932,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-organization-variable parameters: - *73 - - &217 + - &237 name: name description: The name of the variable. in: path @@ -29898,7 +29944,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *236 examples: default: value: @@ -29929,7 +29975,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-organization-variable parameters: - *73 - - *217 + - *237 requestBody: required: true content: @@ -29992,7 +30038,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-organization-variable parameters: - *73 - - *217 + - *237 responses: '204': description: Response @@ -30019,7 +30065,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-selected-repositories-for-an-organization-variable parameters: - *73 - - *217 + - *237 - *19 - *17 responses: @@ -30037,9 +30083,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: *218 + default: *238 '409': description: Response when the visibility of the variable is not set to `selected` @@ -30066,7 +30112,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#set-selected-repositories-for-an-organization-variable parameters: - *73 - - *217 + - *237 requestBody: required: true content: @@ -30116,7 +30162,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#add-selected-repository-to-an-organization-variable parameters: - *73 - - *217 + - *237 - name: repository_id in: path required: true @@ -30151,7 +30197,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#remove-selected-repository-from-an-organization-variable parameters: - *73 - - *217 + - *237 - name: repository_id in: path required: true @@ -30209,7 +30255,7 @@ paths: required: true content: application/json: - schema: *219 + schema: *239 examples: default: *71 parameters: @@ -30288,12 +30334,12 @@ paths: required: - subject_digests examples: - default: &782 + default: &785 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &783 + withPredicateType: &786 value: subject_digests: - sha256:abc123 @@ -30351,7 +30397,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &784 + default: &787 value: attestations_subject_digests: - sha256:abc: @@ -30645,7 +30691,7 @@ paths: bundle_url: type: string examples: - default: &438 + default: &460 value: attestations: - bundle: @@ -30771,10 +30817,10 @@ paths: required: false schema: type: string - - *220 - - *221 - - *222 - - *223 + - *240 + - *241 + - *242 + - *243 - *17 responses: '200': @@ -30783,9 +30829,9 @@ paths: application/json: schema: type: array - items: *224 + items: *244 examples: - default: *225 + default: *245 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -30814,7 +30860,7 @@ paths: type: array items: *4 examples: - default: &300 + default: &321 value: - login: octocat id: 1 @@ -30853,7 +30899,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#check-if-a-user-is-blocked-by-an-organization parameters: - *73 - - *226 + - *246 responses: '204': description: If the user is blocked @@ -30879,7 +30925,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#block-a-user-from-an-organization parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -30900,7 +30946,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/blocking#unblock-a-user-from-an-organization parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -30927,16 +30973,16 @@ paths: subcategory: bypass-requests parameters: - *73 - - &233 + - &253 name: repository_name description: The name of the repository to filter on. in: query schema: type: string - - *227 - - *228 - - *229 - - *230 + - *247 + - *248 + - *249 + - *250 - *17 - *19 responses: @@ -30946,9 +30992,9 @@ paths: application/json: schema: type: array - items: *231 + items: *251 examples: - default: *232 + default: *252 '404': *6 '500': *88 "/orgs/{org}/bypass-requests/secret-scanning": @@ -30972,11 +31018,11 @@ paths: subcategory: delegated-bypass parameters: - *73 - - *233 - - *227 - - *228 - - *229 - - *230 + - *253 + - *247 + - *248 + - *249 + - *250 - *17 - *19 responses: @@ -30986,7 +31032,7 @@ paths: application/json: schema: type: array - items: &455 + items: &477 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -31100,7 +31146,7 @@ paths: type: array description: The responses to the bypass request. nullable: true - items: *234 + items: *254 url: type: string format: uri @@ -31111,7 +31157,7 @@ paths: format: uri example: https://github.com/octo-org/smile/exemptions/1 examples: - default: &456 + default: &478 value: - id: 21 number: 42 @@ -31203,7 +31249,7 @@ paths: description: If specified, only campaigns with this state will be returned. in: query required: false - schema: &236 + schema: &256 title: Campaign state description: Indicates whether a campaign is open or closed type: string @@ -31229,7 +31275,7 @@ paths: application/json: schema: type: array - items: &237 + items: &257 title: Campaign summary description: The campaign metadata and alert stats. type: object @@ -31260,7 +31306,7 @@ paths: team_managers: description: The campaign team managers type: array - items: *235 + items: *255 published_at: description: The date and time the campaign was published, in ISO 8601 format':' YYYY-MM-DDTHH:MM:SSZ. @@ -31278,7 +31324,7 @@ paths: type: string format: date-time nullable: true - state: *236 + state: *256 contact_link: description: The contact link of the campaign. type: string @@ -31375,7 +31421,7 @@ paths: headers: Link: *40 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31493,9 +31539,9 @@ paths: description: Response content: application/json: - schema: *237 + schema: *257 examples: - default: &238 + default: &258 value: number: 3 created_at: '2024-02-14T12:29:18Z' @@ -31544,7 +31590,7 @@ paths: schema: *3 '429': description: Too Many Requests - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31578,16 +31624,16 @@ paths: description: Response content: application/json: - schema: *237 + schema: *257 examples: - default: *238 + default: *258 '404': *6 '422': description: Unprocessable Entity content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31657,7 +31703,7 @@ paths: type: string format: uri nullable: true - state: *236 + state: *256 examples: default: value: @@ -31667,9 +31713,9 @@ paths: description: Response content: application/json: - schema: *237 + schema: *257 examples: - default: *238 + default: *258 '400': description: Bad Request content: @@ -31681,7 +31727,7 @@ paths: content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31713,7 +31759,7 @@ paths: '204': description: Deletion successful '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31736,8 +31782,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *73 - - *239 - - *240 + - *259 + - *260 - *89 - *90 - *19 @@ -31748,7 +31794,7 @@ paths: be returned. in: query required: false - schema: *241 + schema: *261 - name: sort description: The property by which to sort the results. in: query @@ -31764,7 +31810,7 @@ paths: be returned. in: query required: false - schema: &467 + schema: &489 type: string description: Severity of a code scanning alert. enum: @@ -31782,13 +31828,13 @@ paths: application/json: schema: type: array - items: *242 + items: *262 examples: - default: *243 + default: *263 headers: Link: *40 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -31999,6 +32045,7 @@ paths: - disabled - not_set default: disabled + code_scanning_options: *264 code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -32141,7 +32188,7 @@ paths: application/json: schema: *95 examples: - default: *244 + default: *265 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -32169,9 +32216,9 @@ paths: description: Response content: application/json: - schema: *245 + schema: *266 examples: - default: *246 + default: *267 '304': *37 '403': *29 '404': *6 @@ -32258,7 +32305,7 @@ paths: application/json: schema: *95 examples: - default: *244 + default: *265 '304': *37 '403': *29 '404': *6 @@ -32499,6 +32546,8 @@ paths: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: disabled secret_scanning_push_protection: disabled @@ -32678,7 +32727,7 @@ paths: default: value: default_for_new_repos: all - configuration: *244 + configuration: *265 '403': *29 '404': *6 x-github: @@ -32731,13 +32780,13 @@ paths: application/json: schema: type: array - items: *247 + items: *268 examples: default: summary: Example of code security configuration repositories value: - status: attached - repository: *248 + repository: *269 '403': *29 '404': *6 x-github: @@ -32777,7 +32826,7 @@ paths: type: integer codespaces: type: array - items: &301 + items: &322 type: object title: Codespace description: A codespace. @@ -32802,12 +32851,12 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *204 + repository: *224 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &496 + properties: &518 name: type: string description: The name of the machine. @@ -32849,7 +32898,7 @@ paths: - ready - in_progress nullable: true - required: &497 + required: &519 - name - display_name - operating_system @@ -33054,7 +33103,7 @@ paths: - pulls_url - recent_folders examples: - default: &302 + default: &323 value: total_count: 3 codespaces: @@ -33678,7 +33727,7 @@ paths: type: integer secrets: type: array - items: &249 + items: &270 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -33717,7 +33766,7 @@ paths: - updated_at - visibility examples: - default: &498 + default: &520 value: total_count: 2 secrets: @@ -33755,7 +33804,7 @@ paths: description: Response content: application/json: - schema: &499 + schema: &521 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -33784,7 +33833,7 @@ paths: - key_id - key examples: - default: &500 + default: &522 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33808,15 +33857,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#get-an-organization-secret parameters: - *73 - - *214 + - *234 responses: '200': description: Response content: application/json: - schema: *249 + schema: *270 examples: - default: &502 + default: &524 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33844,7 +33893,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#create-or-update-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -33899,7 +33948,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -33926,7 +33975,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#delete-an-organization-secret parameters: - *73 - - *214 + - *234 responses: '204': description: Response @@ -33952,7 +34001,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#list-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 - *19 - *17 responses: @@ -33970,9 +34019,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: *218 + default: *238 '404': *6 x-github: githubCloudOnly: false @@ -33995,7 +34044,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#set-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -34046,7 +34095,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#add-selected-repository-to-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -34080,7 +34129,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organization-secrets#remove-selected-repository-from-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -34669,13 +34718,13 @@ paths: application/json: schema: type: array - items: *141 + items: *161 examples: - default: *142 + default: *162 '500': *88 '403': *29 '404': *6 - '422': *143 + '422': *163 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -34887,7 +34936,7 @@ paths: type: integer custom_roles: type: array - items: *250 + items: *271 examples: default: value: @@ -34979,7 +35028,7 @@ paths: required: true content: application/json: - schema: &253 + schema: &274 type: object properties: name: @@ -35020,9 +35069,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '422': *15 '404': *6 x-github: @@ -35047,7 +35096,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#get-a-custom-repository-role parameters: - *73 - - &252 + - &273 name: role_id description: The unique identifier of the role. in: path @@ -35059,9 +35108,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '404': *6 x-github: githubCloudOnly: true @@ -35084,12 +35133,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#update-a-custom-repository-role parameters: - *73 - - *252 + - *273 requestBody: required: true content: application/json: - schema: &254 + schema: &275 type: object properties: name: @@ -35127,9 +35176,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '422': *15 '404': *6 x-github: @@ -35154,7 +35203,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#delete-a-custom-repository-role parameters: - *73 - - *252 + - *273 responses: '204': description: Response @@ -35187,7 +35236,7 @@ paths: required: true content: application/json: - schema: *253 + schema: *274 examples: default: value: @@ -35201,9 +35250,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '422': *15 '404': *6 x-github: @@ -35234,15 +35283,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---get-a-custom-role parameters: - *73 - - *252 + - *273 responses: '200': description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '404': *6 x-github: githubCloudOnly: true @@ -35271,12 +35320,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---update-a-custom-role parameters: - *73 - - *252 + - *273 requestBody: required: true content: application/json: - schema: *254 + schema: *275 examples: default: value: @@ -35291,9 +35340,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *271 examples: - default: *251 + default: *272 '422': *15 '404': *6 x-github: @@ -35324,7 +35373,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/custom-roles#closing-down---delete-a-custom-role parameters: - *73 - - *252 + - *273 responses: '204': description: Response @@ -35353,19 +35402,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - *73 - - *255 - - *256 - - *257 - - *258 - - *259 - - *260 - - *261 - - *262 + - *276 + - *277 + - *278 + - *279 + - *280 + - *281 + - *282 + - *283 - *91 - *89 - *90 - - *263 - - *264 + - *284 + - *285 - *17 responses: '200': @@ -35374,9 +35423,9 @@ paths: application/json: schema: type: array - items: *265 + items: *286 examples: - default: *266 + default: *287 '304': *37 '400': *14 '403': *29 @@ -35420,7 +35469,7 @@ paths: type: integer secrets: type: array - items: &267 + items: &288 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -35497,7 +35546,7 @@ paths: description: Response content: application/json: - schema: &529 + schema: &551 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -35514,7 +35563,7 @@ paths: - key_id - key examples: - default: &530 + default: &552 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -35538,13 +35587,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-an-organization-secret parameters: - *73 - - *214 + - *234 responses: '200': description: Response content: application/json: - schema: *267 + schema: *288 examples: default: value: @@ -35573,7 +35622,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -35628,7 +35677,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -35653,7 +35702,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-an-organization-secret parameters: - *73 - - *214 + - *234 responses: '204': description: Response @@ -35678,7 +35727,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 - *19 - *17 responses: @@ -35696,9 +35745,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: *218 + default: *238 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35720,7 +35769,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#set-selected-repositories-for-an-organization-secret parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -35771,7 +35820,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#add-selected-repository-to-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -35803,7 +35852,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#remove-selected-repository-from-an-organization-secret parameters: - *73 - - *214 + - *234 - name: repository_id in: path required: true @@ -35840,7 +35889,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *73 - - &538 + - &560 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -35848,7 +35897,7 @@ paths: required: false schema: type: string - - &539 + - &561 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -35856,7 +35905,7 @@ paths: required: false schema: type: string - - &540 + - &562 name: time_period description: |- The time period to filter by. @@ -35872,7 +35921,7 @@ paths: - week - month default: month - - &541 + - &563 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -35887,7 +35936,7 @@ paths: - denied - all default: all - - *233 + - *253 - *17 - *19 responses: @@ -35897,7 +35946,7 @@ paths: application/json: schema: type: array - items: &542 + items: &564 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -36053,7 +36102,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &543 + default: &565 value: - id: 21 number: 42 @@ -36140,11 +36189,11 @@ paths: subcategory: alert-dismissal-requests parameters: - *73 - - *233 - - *227 - - *228 - - *229 - - &544 + - *253 + - *247 + - *248 + - *249 + - &566 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -36170,7 +36219,7 @@ paths: application/json: schema: type: array - items: &545 + items: &567 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -36280,7 +36329,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *234 + items: *254 url: type: string format: uri @@ -36291,7 +36340,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &546 + default: &568 value: - id: 21 number: 42 @@ -36379,7 +36428,7 @@ paths: application/json: schema: type: array - items: &313 + items: &334 title: Package description: A software package type: object @@ -36429,8 +36478,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *268 - required: *269 + properties: *289 + required: *290 nullable: true created_at: type: string @@ -36449,7 +36498,7 @@ paths: - created_at - updated_at examples: - default: &314 + default: &335 value: - id: 197 name: hello_docker @@ -36537,7 +36586,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: 200-response: value: @@ -36633,7 +36682,7 @@ paths: description: Response content: application/json: - schema: &380 + schema: &402 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -36714,7 +36763,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &381 + default: &403 value: group_id: '123' group_name: Octocat admins @@ -36769,7 +36818,7 @@ paths: description: Response content: application/json: - schema: &378 + schema: &400 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -36806,7 +36855,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &379 + default: &401 value: groups: - group_id: '123' @@ -36850,7 +36899,7 @@ paths: application/json: schema: type: array - items: &292 + items: &313 title: Organization Invitation description: Organization Invitation type: object @@ -36897,7 +36946,7 @@ paths: - invitation_teams_url - node_id examples: - default: &293 + default: &314 value: - id: 1 login: monalisa @@ -36964,7 +37013,7 @@ paths: application/json: schema: type: array - items: &335 + items: &356 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -36978,7 +37027,7 @@ paths: - name - description examples: - default: &336 + default: &357 value: - name: add_assignee description: Assign or remove a user @@ -37019,7 +37068,7 @@ paths: application/json: schema: type: array - items: &270 + items: &291 title: Org Hook description: Org Hook type: object @@ -37188,9 +37237,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: &271 + default: &292 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -37235,7 +37284,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-an-organization-webhook parameters: - *73 - - &272 + - &293 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -37248,9 +37297,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 '404': *6 x-github: githubCloudOnly: false @@ -37272,7 +37321,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-an-organization-webhook parameters: - *73 - - *272 + - *293 requestBody: required: false content: @@ -37317,7 +37366,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: default: value: @@ -37357,7 +37406,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#delete-an-organization-webhook parameters: - *73 - - *272 + - *293 responses: '204': description: Response @@ -37383,7 +37432,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *73 - - *272 + - *293 responses: '200': description: Response @@ -37412,7 +37461,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *73 - - *272 + - *293 requestBody: required: false content: @@ -37461,9 +37510,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *73 - - *272 + - *293 - *17 - - *273 + - *294 responses: '200': description: Response @@ -37471,9 +37520,9 @@ paths: application/json: schema: type: array - items: *274 + items: *295 examples: - default: *275 + default: *296 '400': *14 '422': *15 x-github: @@ -37497,16 +37546,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *73 - - *272 + - *293 - *16 responses: '200': description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '400': *14 '422': *15 x-github: @@ -37530,7 +37579,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *73 - - *272 + - *293 - *16 responses: '202': *39 @@ -37557,7 +37606,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/webhooks#ping-an-organization-webhook parameters: - *73 - - *272 + - *293 responses: '204': description: Response @@ -37580,7 +37629,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-route-stats-by-actor parameters: - *73 - - &282 + - &303 name: actor_type in: path description: The type of the actor @@ -37593,14 +37642,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &283 + - &304 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &278 + - &299 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -37608,7 +37657,7 @@ paths: required: true schema: type: string - - &279 + - &300 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -37702,12 +37751,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-subject-stats parameters: - *73 - - *278 - - *279 + - *299 + - *300 - *19 - *17 - *91 - - &288 + - &309 name: sort description: The property to sort the results by. in: query @@ -37786,14 +37835,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats parameters: - *73 - - *278 - - *279 + - *299 + - *300 responses: '200': description: Response content: application/json: - schema: &280 + schema: &301 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -37809,7 +37858,7 @@ paths: type: integer format: int64 examples: - default: &281 + default: &302 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -37830,23 +37879,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-user parameters: - *73 - - &284 + - &305 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *278 - - *279 + - *299 + - *300 responses: '200': description: Response content: application/json: - schema: *280 + schema: *301 examples: - default: *281 + default: *302 x-github: enabledForGitHubApps: true category: orgs @@ -37865,18 +37914,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *73 - - *278 - - *279 - - *282 - - *283 + - *299 + - *300 + - *303 + - *304 responses: '200': description: Response content: application/json: - schema: *280 + schema: *301 examples: - default: *281 + default: *302 x-github: enabledForGitHubApps: true category: orgs @@ -37894,9 +37943,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats parameters: - *73 - - *278 - - *279 - - &285 + - *299 + - *300 + - &306 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -37909,7 +37958,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &307 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -37925,7 +37974,7 @@ paths: type: integer format: int64 examples: - default: &287 + default: &308 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -37962,18 +38011,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-user parameters: - *73 - - *284 - - *278 - - *279 - - *285 + - *305 + - *299 + - *300 + - *306 responses: '200': description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 x-github: enabledForGitHubApps: true category: orgs @@ -37991,19 +38040,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-time-stats-by-actor parameters: - *73 - - *282 - - *283 - - *278 - - *279 - - *285 + - *303 + - *304 + - *299 + - *300 + - *306 responses: '200': description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 x-github: enabledForGitHubApps: true category: orgs @@ -38021,13 +38070,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/api-insights#get-user-stats parameters: - *73 - - *284 - - *278 - - *279 + - *305 + - *299 + - *300 - *19 - *17 - *91 - - *288 + - *309 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -38108,7 +38157,7 @@ paths: application/json: schema: *22 examples: - default: &577 + default: &599 value: id: 1 account: @@ -38274,12 +38323,12 @@ paths: application/json: schema: anyOf: - - &290 + - &311 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &289 + limit: &310 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -38304,7 +38353,7 @@ paths: properties: {} additionalProperties: false examples: - default: &291 + default: &312 value: limit: collaborators_only origin: organization @@ -38333,13 +38382,13 @@ paths: required: true content: application/json: - schema: &578 + schema: &600 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *289 + limit: *310 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -38363,9 +38412,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *311 examples: - default: *291 + default: *312 '422': *15 x-github: githubCloudOnly: false @@ -38443,9 +38492,9 @@ paths: application/json: schema: type: array - items: *292 + items: *313 examples: - default: *293 + default: *314 headers: Link: *40 '404': *6 @@ -38523,7 +38572,7 @@ paths: description: Response content: application/json: - schema: *292 + schema: *313 examples: default: value: @@ -38580,7 +38629,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#cancel-an-organization-invitation parameters: - *73 - - &294 + - &315 name: invitation_id description: The unique identifier of the invitation. in: path @@ -38614,7 +38663,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams parameters: - *73 - - *294 + - *315 - *17 - *19 responses: @@ -38624,9 +38673,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: &312 + default: &333 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -38669,7 +38718,7 @@ paths: application/json: schema: type: array - items: *295 + items: *316 examples: default: value: @@ -38754,9 +38803,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *316 examples: - default: &296 + default: &317 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -38789,7 +38838,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *73 - - &297 + - &318 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -38842,9 +38891,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *316 examples: - default: *296 + default: *317 '404': *6 '422': *7 x-github: @@ -38869,7 +38918,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *73 - - *297 + - *318 responses: '204': description: Response @@ -38932,7 +38981,7 @@ paths: - closed - all default: open - - *298 + - *319 - name: type description: Can be the name of an issue type. in: query @@ -38951,7 +39000,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - *17 - *19 responses: @@ -38961,9 +39010,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: *299 + default: *320 headers: Link: *40 '404': *6 @@ -39023,7 +39072,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '422': *15 @@ -39044,7 +39093,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-organization-membership-for-a-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response if requester is an organization member and user is @@ -39079,7 +39128,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-an-organization-member parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -39106,7 +39155,7 @@ paths: - *17 - *19 - *73 - - *226 + - *246 responses: '200': description: Response @@ -39122,9 +39171,9 @@ paths: type: integer codespaces: type: array - items: *301 + items: *322 examples: - default: *302 + default: *323 '304': *37 '500': *88 '401': *25 @@ -39150,8 +39199,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#delete-a-codespace-from-the-organization parameters: - *73 - - *226 - - &303 + - *246 + - &324 name: codespace_name in: path required: true @@ -39185,16 +39234,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/organizations#stop-a-codespace-for-an-organization-user parameters: - *73 - - *226 - - *303 + - *246 + - *324 responses: '200': description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: &495 + default: &517 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -39368,7 +39417,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-user-management#get-copilot-seat-assignment-details-for-a-user parameters: - *73 - - *226 + - *246 responses: '200': description: The user's GitHub Copilot seat details, including usage. @@ -39443,13 +39492,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#get-organization-membership-for-a-user parameters: - *73 - - *226 + - *246 responses: '200': description: Response content: application/json: - schema: &304 + schema: &325 title: Org Membership description: Org Membership type: object @@ -39516,7 +39565,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &305 + response-if-user-has-an-active-admin-membership-with-organization: &326 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -39585,7 +39634,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-organization-membership-for-a-user parameters: - *73 - - *226 + - *246 requestBody: required: false content: @@ -39613,9 +39662,9 @@ paths: description: Response content: application/json: - schema: *304 + schema: *325 examples: - response-if-user-already-had-membership-with-organization: *305 + response-if-user-already-had-membership-with-organization: *326 '422': *15 '403': *29 x-github: @@ -39640,7 +39689,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-organization-membership-for-a-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -39686,7 +39735,7 @@ paths: application/json: schema: type: array - items: &306 + items: &327 title: Migration description: A migration. type: object @@ -40015,7 +40064,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -40194,7 +40243,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *73 - - &307 + - &328 name: migration_id description: The unique identifier of the migration. in: path @@ -40221,7 +40270,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -40391,7 +40440,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *73 - - *307 + - *328 responses: '302': description: Response @@ -40413,7 +40462,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *73 - - *307 + - *328 responses: '204': description: Response @@ -40437,8 +40486,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *73 - - *307 - - &766 + - *328 + - &769 name: repo_name description: repo_name parameter in: path @@ -40466,7 +40515,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *73 - - *307 + - *328 - *17 - *19 responses: @@ -40476,9 +40525,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: &319 + default: &340 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -40687,7 +40736,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &308 + items: &329 title: Organization Role description: Organization roles type: object @@ -40894,7 +40943,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *329 examples: default: value: @@ -40946,7 +40995,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *73 - - &309 + - &330 name: team_slug description: The slug of the team name. in: path @@ -40978,8 +41027,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *73 - - *309 - - *252 + - *330 + - *273 responses: '204': description: Response @@ -41009,8 +41058,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *73 - - *309 - - *252 + - *330 + - *273 responses: '204': description: Response @@ -41036,7 +41085,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -41062,8 +41111,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-user parameters: - *73 - - *226 - - *252 + - *246 + - *273 responses: '204': description: Response @@ -41094,8 +41143,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-user parameters: - *73 - - *226 - - *252 + - *246 + - *273 responses: '204': description: Response @@ -41124,13 +41173,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#get-an-organization-role parameters: - *73 - - *252 + - *273 responses: '200': description: Response content: application/json: - schema: *308 + schema: *329 examples: default: value: @@ -41188,7 +41237,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#update-a-custom-organization-role parameters: - *73 - - *252 + - *273 requestBody: required: true content: @@ -41227,7 +41276,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *329 examples: default: value: @@ -41281,7 +41330,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#delete-a-custom-organization-role parameters: - *73 - - *252 + - *273 responses: '204': description: Response @@ -41307,7 +41356,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *73 - - *252 + - *273 - *17 - *19 responses: @@ -41385,8 +41434,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *310 - required: *311 + properties: *331 + required: *332 nullable: true required: - id @@ -41401,7 +41450,7 @@ paths: - slug - parent examples: - default: *312 + default: *333 headers: Link: *40 '404': @@ -41431,7 +41480,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *73 - - *252 + - *273 - *17 - *19 responses: @@ -41459,13 +41508,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &352 + items: &374 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *310 - required: *311 + properties: *331 + required: *332 name: nullable: true type: string @@ -41560,7 +41609,7 @@ paths: - type - url examples: - default: *300 + default: *321 headers: Link: *40 '404': @@ -41611,7 +41660,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -41637,7 +41686,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#convert-an-organization-member-to-outside-collaborator parameters: - *73 - - *226 + - *246 requestBody: required: false content: @@ -41695,7 +41744,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/outside-collaborators#remove-outside-collaborator-from-an-organization parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -41753,7 +41802,7 @@ paths: - nuget - container - *73 - - &768 + - &771 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -41789,12 +41838,12 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: *314 + default: *335 '403': *29 '401': *25 - '400': &770 + '400': &773 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -41816,7 +41865,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &315 + - &336 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -41834,7 +41883,7 @@ paths: - docker - nuget - container - - &316 + - &337 name: package_name description: The name of the package. in: path @@ -41847,7 +41896,7 @@ paths: description: Response content: application/json: - schema: *313 + schema: *334 examples: default: value: @@ -41899,8 +41948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 responses: '204': @@ -41933,8 +41982,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 - name: token description: package token @@ -41967,8 +42016,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 - *19 - *17 @@ -41989,7 +42038,7 @@ paths: application/json: schema: type: array - items: &317 + items: &338 title: Package Version description: A version of a software package type: object @@ -42114,10 +42163,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 - - &318 + - &339 name: package_version_id description: Unique identifier of the package version. in: path @@ -42129,7 +42178,7 @@ paths: description: Response content: application/json: - schema: *317 + schema: *338 examples: default: value: @@ -42165,10 +42214,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 - - *318 + - *339 responses: '204': description: Response @@ -42200,10 +42249,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *315 - - *316 + - *336 + - *337 - *73 - - *318 + - *339 responses: '204': description: Response @@ -42233,7 +42282,7 @@ paths: - *73 - *17 - *19 - - &320 + - &341 name: sort description: The property by which to sort the results. in: query @@ -42244,7 +42293,7 @@ paths: - created_at default: created_at - *91 - - &321 + - &342 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -42255,7 +42304,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &322 + - &343 name: repository description: The name of the repository to use to filter the results. in: query @@ -42263,7 +42312,7 @@ paths: schema: type: string example: Hello-World - - &323 + - &344 name: permission description: The permission to use to filter the results. in: query @@ -42271,7 +42320,7 @@ paths: schema: type: string example: issues_read - - &324 + - &345 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -42281,7 +42330,7 @@ paths: schema: type: string format: date-time - - &325 + - &346 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -42291,7 +42340,7 @@ paths: schema: type: string format: date-time - - &326 + - &347 name: token_id description: The ID of the token in: query @@ -42602,9 +42651,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -42630,14 +42679,14 @@ paths: - *73 - *17 - *19 - - *320 + - *341 - *91 - - *321 - - *322 - - *323 - - *324 - - *325 - - *326 + - *342 + - *343 + - *344 + - *345 + - *346 + - *347 responses: '500': *88 '422': *15 @@ -42917,9 +42966,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -42961,7 +43010,7 @@ paths: type: integer configurations: type: array - items: &327 + items: &348 title: Organization private registry description: Private registry configuration for an organization type: object @@ -42983,6 +43032,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with @@ -43066,6 +43120,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -43164,6 +43223,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the @@ -43199,7 +43263,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &328 + org-private-registry-with-selected-visibility: &349 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -43289,15 +43353,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#get-a-private-registry-for-an-organization parameters: - *73 - - *214 + - *234 responses: '200': description: The specified private registry configuration for the organization content: application/json: - schema: *327 + schema: *348 examples: - default: *328 + default: *349 '404': *6 x-github: githubCloudOnly: false @@ -43319,7 +43383,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#update-a-private-registry-for-an-organization parameters: - *73 - - *214 + - *234 requestBody: required: true content: @@ -43341,6 +43405,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -43410,7 +43479,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/private-registries/organization-configurations#delete-a-private-registry-for-an-organization parameters: - *73 - - *214 + - *234 responses: '204': description: Response @@ -43456,7 +43525,7 @@ paths: application/json: schema: type: array - items: &329 + items: &350 title: Project description: Projects are a way to organize columns and cards of work. @@ -43629,7 +43698,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: default: value: @@ -43667,7 +43736,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &396 + '410': &418 description: Gone content: application/json: @@ -43833,7 +43902,7 @@ paths: required: true content: application/json: - schema: *330 + schema: *351 examples: default: value: @@ -43936,7 +44005,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &331 + items: &352 title: Custom Property Value description: Custom property name and associated value type: object @@ -44023,7 +44092,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *331 + items: *352 required: - repository_names - properties @@ -44076,7 +44145,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -44096,7 +44165,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#check-public-organization-membership-for-a-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response if user is a public member @@ -44121,7 +44190,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#set-public-organization-membership-for-the-authenticated-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -44143,7 +44212,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#remove-public-organization-membership-for-the-authenticated-user parameters: - *73 - - *226 + - *246 responses: '204': description: Response @@ -44214,9 +44283,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -44419,7 +44488,7 @@ paths: description: Response content: application/json: - schema: &398 + schema: &420 title: Full Repository description: Full Repository type: object @@ -44696,8 +44765,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *332 - required: *333 + properties: *353 + required: *354 nullable: true temp_clone_token: type: string @@ -44784,8 +44853,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true organization: title: Simple User @@ -44812,7 +44881,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &517 + properties: &539 url: type: string format: uri @@ -44828,12 +44897,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &518 + required: &540 - url - key - name - html_url - security_and_analysis: *334 + security_and_analysis: *355 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -44917,7 +44986,7 @@ paths: - network_count - subscribers_count examples: - default: &400 + default: &422 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -45443,9 +45512,9 @@ paths: application/json: schema: type: array - items: *335 + items: *356 examples: - default: *336 + default: *357 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45470,7 +45539,7 @@ paths: - *73 - *17 - *19 - - &666 + - &668 name: targets description: | A comma-separated list of rule targets to filter by. @@ -45488,7 +45557,7 @@ paths: application/json: schema: type: array - items: *133 + items: *152 examples: default: value: @@ -45561,11 +45630,35 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *131 - conditions: *337 + conditions: *358 rules: type: array description: An array of rules within the ruleset. - items: *132 + items: &360 + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - *132 + - *133 + - *134 + - *135 + - *136 + - *137 + - *138 + - *139 + - *140 + - *141 + - *142 + - *143 + - *144 + - *145 + - *146 + - *147 + - *148 + - *149 + - *150 + - *151 required: - name - enforcement @@ -45603,9 +45696,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: &338 + default: &359 value: id: 21 name: super cool ruleset @@ -45660,7 +45753,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *73 - - &667 + - &670 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -45670,16 +45763,16 @@ paths: schema: type: string x-multi-segment: true - - *233 - - *229 - - &668 + - *253 + - *249 + - &671 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &669 + - &672 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -45699,7 +45792,7 @@ paths: description: Response content: application/json: - schema: &670 + schema: &673 title: Rule Suites description: Response type: array @@ -45754,7 +45847,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &671 + default: &674 value: - id: 21 actor_id: 12 @@ -45798,7 +45891,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *73 - - &672 + - &675 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -45814,7 +45907,7 @@ paths: description: Response content: application/json: - schema: &673 + schema: &676 title: Rule Suite description: Response type: object @@ -45913,7 +46006,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &674 + default: &677 value: id: 21 actor_id: 12 @@ -45986,9 +46079,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *338 + default: *359 '404': *6 '500': *88 put: @@ -46037,11 +46130,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *131 - conditions: *337 + conditions: *358 rules: description: An array of rules within the ruleset. type: array - items: *132 + items: *360 examples: default: value: @@ -46076,9 +46169,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *338 + default: *359 '404': *6 '500': *88 delete: @@ -46135,9 +46228,9 @@ paths: application/json: schema: type: array - items: *136 + items: *156 examples: - default: *339 + default: *361 '404': *6 '500': *88 x-github: @@ -46174,7 +46267,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *362 examples: default: value: @@ -46237,14 +46330,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *73 - - *341 - - *342 - - *343 - - *344 + - *363 + - *364 + - *365 + - *366 - *91 - *19 - *17 - - &676 + - &679 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -46254,7 +46347,7 @@ paths: required: false schema: type: string - - &677 + - &680 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -46264,10 +46357,10 @@ paths: required: false schema: type: string - - *345 - - *346 - - *347 - - *348 + - *367 + - *368 + - *369 + - *370 responses: '200': description: Response @@ -46275,13 +46368,13 @@ paths: application/json: schema: type: array - items: *349 + items: *371 examples: - default: *350 + default: *372 headers: Link: *40 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46347,7 +46440,7 @@ paths: application/json: schema: type: array - items: &698 + items: &701 description: A repository security advisory. type: object properties: @@ -46567,7 +46660,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 credits_detailed: type: array nullable: true @@ -46577,7 +46670,7 @@ paths: type: object properties: user: *4 - type: *351 + type: *373 state: type: string description: The state of the user's acceptance of the @@ -46601,7 +46694,7 @@ paths: type: array description: A list of teams that collaborate on the advisory. nullable: true - items: *235 + items: *255 private_fork: readOnly: true nullable: true @@ -46638,7 +46731,7 @@ paths: - private_fork additionalProperties: false examples: - default: &699 + default: &702 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -47025,9 +47118,9 @@ paths: application/json: schema: type: array - items: *352 + items: *374 examples: - default: *312 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47051,7 +47144,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - *73 - - *309 + - *330 responses: '204': description: Response @@ -47077,7 +47170,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - *73 - - *309 + - *330 responses: '204': description: Response @@ -47112,9 +47205,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *375 examples: - default: *354 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47139,7 +47232,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *73 - - *355 + - *377 - *17 - *19 responses: @@ -47147,9 +47240,9 @@ paths: description: Success content: application/json: - schema: *356 + schema: *378 examples: - default: *357 + default: *379 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -47177,9 +47270,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *380 examples: - default: *359 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47207,9 +47300,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *382 examples: - default: *361 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47249,7 +47342,7 @@ paths: type: array items: *116 examples: - default: *362 + default: *384 headers: Link: *40 x-github: @@ -47450,15 +47543,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *73 - - *363 + - *385 responses: '200': description: Response content: application/json: - schema: *364 + schema: *386 examples: - default: *365 + default: *387 headers: Link: *40 x-github: @@ -47496,7 +47589,7 @@ paths: description: Response content: application/json: - schema: &387 + schema: &409 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -47542,7 +47635,7 @@ paths: type: string nullable: true examples: - default: &388 + default: &410 value: groups: - group_id: '123' @@ -47588,7 +47681,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *73 - - *309 + - *330 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -47620,13 +47713,13 @@ paths: application/json: schema: type: array - items: *141 + items: *161 examples: - default: *142 + default: *162 '500': *88 '403': *29 '404': *6 - '422': *143 + '422': *163 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47654,9 +47747,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 headers: Link: *40 '403': *29 @@ -47750,7 +47843,7 @@ paths: description: Response content: application/json: - schema: &366 + schema: &388 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -47813,8 +47906,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *310 - required: *311 + properties: *331 + required: *332 nullable: true members_count: type: integer @@ -48060,7 +48153,7 @@ paths: - repos_count - organization examples: - default: &367 + default: &389 value: id: 1 node_id: MDQ6VGVhbTE= @@ -48131,15 +48224,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - *73 - - *309 + - *330 responses: '200': description: Response content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '404': *6 x-github: githubCloudOnly: false @@ -48161,7 +48254,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - *73 - - *309 + - *330 requestBody: required: false content: @@ -48223,16 +48316,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '201': description: Response content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '404': *6 '422': *15 '403': *29 @@ -48258,7 +48351,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - *73 - - *309 + - *330 responses: '204': description: Response @@ -48285,7 +48378,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - *73 - - *309 + - *330 - *91 - *17 - *19 @@ -48302,7 +48395,7 @@ paths: application/json: schema: type: array - items: &368 + items: &390 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -48381,7 +48474,7 @@ paths: type: string format: uri example: https://api.github.com/organizations/1/team/2343027/discussions/1 - reactions: *148 + reactions: *168 required: - author - body @@ -48401,7 +48494,7 @@ paths: - updated_at - url examples: - default: &739 + default: &742 value: - author: login: octocat @@ -48476,7 +48569,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - *73 - - *309 + - *330 requestBody: required: true content: @@ -48510,9 +48603,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: &369 + default: &391 value: author: login: octocat @@ -48585,8 +48678,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - *73 - - *309 - - &370 + - *330 + - &392 name: discussion_number description: The number that identifies the discussion. in: path @@ -48598,9 +48691,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *369 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48623,8 +48716,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - *73 - - *309 - - *370 + - *330 + - *392 requestBody: required: false content: @@ -48647,9 +48740,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: &740 + default: &743 value: author: login: octocat @@ -48720,8 +48813,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - *73 - - *309 - - *370 + - *330 + - *392 responses: '204': description: Response @@ -48748,8 +48841,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - *73 - - *309 - - *370 + - *330 + - *392 - *91 - *17 - *19 @@ -48760,7 +48853,7 @@ paths: application/json: schema: type: array - items: &371 + items: &393 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -48817,7 +48910,7 @@ paths: type: string format: uri example: https://api.github.com/organizations/1/team/2403582/discussions/1/comments/1 - reactions: *148 + reactions: *168 required: - author - body @@ -48832,7 +48925,7 @@ paths: - updated_at - url examples: - default: &741 + default: &744 value: - author: login: octocat @@ -48901,8 +48994,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - *73 - - *309 - - *370 + - *330 + - *392 requestBody: required: true content: @@ -48924,9 +49017,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: &372 + default: &394 value: author: login: octocat @@ -48993,9 +49086,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - *73 - - *309 - - *370 - - &373 + - *330 + - *392 + - &395 name: comment_number description: The number that identifies the comment. in: path @@ -49007,9 +49100,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *372 + default: *394 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49032,9 +49125,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - *73 - - *309 - - *370 - - *373 + - *330 + - *392 + - *395 requestBody: required: true content: @@ -49056,9 +49149,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: &742 + default: &745 value: author: login: octocat @@ -49123,9 +49216,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *73 - - *309 - - *370 - - *373 + - *330 + - *392 + - *395 responses: '204': description: Response @@ -49152,9 +49245,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *73 - - *309 - - *370 - - *373 + - *330 + - *392 + - *395 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -49180,7 +49273,7 @@ paths: application/json: schema: type: array - items: &374 + items: &396 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -49223,7 +49316,7 @@ paths: - content - created_at examples: - default: &376 + default: &398 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -49274,9 +49367,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *73 - - *309 - - *370 - - *373 + - *330 + - *392 + - *395 requestBody: required: true content: @@ -49309,9 +49402,9 @@ paths: team discussion comment content: application/json: - schema: *374 + schema: *396 examples: - default: &375 + default: &397 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -49340,9 +49433,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49366,10 +49459,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *73 - - *309 - - *370 - - *373 - - &377 + - *330 + - *392 + - *395 + - &399 name: reaction_id description: The unique identifier of the reaction. in: path @@ -49402,8 +49495,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *73 - - *309 - - *370 + - *330 + - *392 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -49429,9 +49522,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -49458,8 +49551,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *73 - - *309 - - *370 + - *330 + - *392 requestBody: required: true content: @@ -49491,16 +49584,16 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -49524,9 +49617,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - *73 - - *309 - - *370 - - *377 + - *330 + - *392 + - *399 responses: '204': description: Response @@ -49550,15 +49643,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *73 - - *309 + - *330 responses: '200': description: Response content: application/json: - schema: *378 + schema: *400 examples: - default: *379 + default: *401 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -49578,7 +49671,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *73 - - *309 + - *330 requestBody: required: true content: @@ -49601,9 +49694,9 @@ paths: description: Response content: application/json: - schema: *380 + schema: *402 examples: - default: *381 + default: *403 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -49623,7 +49716,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *73 - - *309 + - *330 responses: '204': description: Response @@ -49648,7 +49741,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - *73 - - *309 + - *330 - *17 - *19 responses: @@ -49658,9 +49751,9 @@ paths: application/json: schema: type: array - items: *292 + items: *313 examples: - default: *293 + default: *314 headers: Link: *40 x-github: @@ -49683,7 +49776,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - *73 - - *309 + - *330 - name: role description: Filters members returned by their role in the team. in: query @@ -49706,7 +49799,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -49737,14 +49830,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - *73 - - *309 - - *226 + - *330 + - *246 responses: '200': description: Response content: application/json: - schema: &382 + schema: &404 title: Team Membership description: Team Membership type: object @@ -49771,7 +49864,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &743 + response-if-user-is-a-team-maintainer: &746 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -49808,8 +49901,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *73 - - *309 - - *226 + - *330 + - *246 requestBody: required: false content: @@ -49834,9 +49927,9 @@ paths: description: Response content: application/json: - schema: *382 + schema: *404 examples: - response-if-users-membership-with-team-is-now-pending: &744 + response-if-users-membership-with-team-is-now-pending: &747 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -49872,8 +49965,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - *73 - - *309 - - *226 + - *330 + - *246 responses: '204': description: Response @@ -49899,7 +49992,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - *73 - - *309 + - *330 - *17 - *19 responses: @@ -49909,7 +50002,7 @@ paths: application/json: schema: type: array - items: &383 + items: &405 title: Team Project description: A team's access to a project. type: object @@ -49977,7 +50070,7 @@ paths: - updated_at - permissions examples: - default: &745 + default: &748 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -50041,8 +50134,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - *73 - - *309 - - &384 + - *330 + - &406 name: project_id description: The unique identifier of the project. in: path @@ -50054,9 +50147,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *405 examples: - default: &746 + default: &749 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -50119,8 +50212,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - *73 - - *309 - - *384 + - *330 + - *406 requestBody: required: false content: @@ -50187,8 +50280,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - *73 - - *309 - - *384 + - *330 + - *406 responses: '204': description: Response @@ -50216,7 +50309,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - *73 - - *309 + - *330 - *17 - *19 responses: @@ -50226,9 +50319,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -50258,15 +50351,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - *73 - - *309 - - *385 - - *386 + - *330 + - *407 + - *408 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &747 + schema: &750 title: Team Repository description: A team's access to a repository. type: object @@ -50289,8 +50382,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true forks: type: integer @@ -50836,9 +50929,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - *73 - - *309 - - *385 - - *386 + - *330 + - *407 + - *408 requestBody: required: false content: @@ -50884,9 +50977,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - *73 - - *309 - - *385 - - *386 + - *330 + - *407 + - *408 responses: '204': description: Response @@ -50913,15 +51006,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - *73 - - *309 + - *330 responses: '200': description: Response content: application/json: - schema: *387 + schema: *409 examples: - default: *388 + default: *410 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -50944,7 +51037,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - *73 - - *309 + - *330 requestBody: required: true content: @@ -50987,7 +51080,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *409 examples: default: value: @@ -51020,7 +51113,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - *73 - - *309 + - *330 - *17 - *19 responses: @@ -51030,9 +51123,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - response-if-child-teams-exist: &748 + response-if-child-teams-exist: &751 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -51159,7 +51252,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#get-a-project-card parameters: - - &389 + - &411 name: card_id description: The unique identifier of the card. in: path @@ -51171,7 +51264,7 @@ paths: description: Response content: application/json: - schema: &390 + schema: &412 title: Project Card description: Project cards represent a scope of work. type: object @@ -51238,7 +51331,7 @@ paths: - created_at - updated_at examples: - default: &391 + default: &413 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -51294,7 +51387,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#update-an-existing-project-card parameters: - - *389 + - *411 requestBody: required: false content: @@ -51321,9 +51414,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *412 examples: - default: *391 + default: *413 '304': *37 '403': *29 '401': *25 @@ -51350,7 +51443,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#delete-a-project-card parameters: - - *389 + - *411 responses: '204': description: Response @@ -51394,7 +51487,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#move-a-project-card parameters: - - *389 + - *411 requestBody: required: true content: @@ -51505,7 +51598,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#get-a-project-column parameters: - - &392 + - &414 name: column_id description: The unique identifier of the column. in: path @@ -51517,7 +51610,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &415 title: Project Column description: Project columns contain cards of work. type: object @@ -51563,7 +51656,7 @@ paths: - created_at - updated_at examples: - default: &394 + default: &416 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -51598,7 +51691,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#update-an-existing-project-column parameters: - - *392 + - *414 requestBody: required: true content: @@ -51622,9 +51715,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *415 examples: - default: *394 + default: *416 '304': *37 '403': *29 '401': *25 @@ -51649,7 +51742,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#delete-a-project-column parameters: - - *392 + - *414 responses: '204': description: Response @@ -51678,7 +51771,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#list-project-cards parameters: - - *392 + - *414 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -51699,7 +51792,7 @@ paths: application/json: schema: type: array - items: *390 + items: *412 examples: default: value: @@ -51758,7 +51851,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#create-a-project-card parameters: - - *392 + - *414 requestBody: required: true content: @@ -51798,9 +51891,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *412 examples: - default: *391 + default: *413 '304': *37 '403': *29 '401': *25 @@ -51810,8 +51903,8 @@ paths: application/json: schema: oneOf: - - *187 - - *188 + - *207 + - *208 '503': description: Response content: @@ -51856,7 +51949,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#move-a-project-column parameters: - - *392 + - *414 requestBody: required: true content: @@ -51916,15 +52009,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-a-project parameters: - - *384 + - *406 responses: '200': description: Response content: application/json: - schema: *329 + schema: *350 examples: - default: &395 + default: &417 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -51981,7 +52074,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#update-a-project parameters: - - *384 + - *406 requestBody: required: false content: @@ -52027,9 +52120,9 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: - default: *395 + default: *417 '404': description: Not Found if the authenticated user does not have access to the project @@ -52050,7 +52143,7 @@ paths: items: type: string '401': *25 - '410': *396 + '410': *418 '422': *7 x-github: githubCloudOnly: false @@ -52073,7 +52166,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#delete-a-project parameters: - - *384 + - *406 responses: '204': description: Delete Success @@ -52094,7 +52187,7 @@ paths: items: type: string '401': *25 - '410': *396 + '410': *418 '404': *6 x-github: githubCloudOnly: false @@ -52118,7 +52211,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#list-project-collaborators parameters: - - *384 + - *406 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -52145,7 +52238,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -52175,8 +52268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#add-project-collaborator parameters: - - *384 - - *226 + - *406 + - *246 requestBody: required: false content: @@ -52228,8 +52321,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *384 - - *226 + - *406 + - *246 responses: '204': description: Response @@ -52260,8 +52353,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *384 - - *226 + - *406 + - *246 responses: '200': description: Response @@ -52334,7 +52427,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#list-project-columns parameters: - - *384 + - *406 - *17 - *19 responses: @@ -52344,7 +52437,7 @@ paths: application/json: schema: type: array - items: *393 + items: *415 examples: default: value: @@ -52382,7 +52475,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#create-a-project-column parameters: - - *384 + - *406 requestBody: required: true content: @@ -52405,7 +52498,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *415 examples: default: value: @@ -52470,7 +52563,7 @@ paths: resources: type: object properties: - core: &397 + core: &419 title: Rate Limit type: object properties: @@ -52487,21 +52580,21 @@ paths: - remaining - reset - used - graphql: *397 - search: *397 - code_search: *397 - source_import: *397 - integration_manifest: *397 - code_scanning_upload: *397 - actions_runner_registration: *397 - scim: *397 - dependency_snapshots: *397 - dependency_sbom: *397 - code_scanning_autofix: *397 + graphql: *419 + search: *419 + code_search: *419 + source_import: *419 + integration_manifest: *419 + code_scanning_upload: *419 + actions_runner_registration: *419 + scim: *419 + dependency_snapshots: *419 + dependency_sbom: *419 + code_scanning_autofix: *419 required: - core - search - rate: *397 + rate: *419 required: - rate - resources @@ -52605,14 +52698,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *398 + schema: *420 examples: default-response: summary: Default response @@ -53117,7 +53210,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *399 + '301': *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53135,8 +53228,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -53393,10 +53486,10 @@ paths: description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 - '307': &401 + default: *422 + '307': &423 description: Temporary Redirect content: application/json: @@ -53425,8 +53518,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -53448,7 +53541,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *401 + '307': *423 '404': *6 '409': *99 x-github: @@ -53472,11 +53565,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 - - &416 + - &438 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -53499,7 +53592,7 @@ paths: type: integer artifacts: type: array - items: &402 + items: &424 title: Artifact description: An artifact type: object @@ -53577,7 +53670,7 @@ paths: - expires_at - updated_at examples: - default: &417 + default: &439 value: total_count: 2 artifacts: @@ -53638,9 +53731,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *385 - - *386 - - &403 + - *407 + - *408 + - &425 name: artifact_id description: The unique identifier of the artifact. in: path @@ -53652,7 +53745,7 @@ paths: description: Response content: application/json: - schema: *402 + schema: *424 examples: default: value: @@ -53690,9 +53783,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *385 - - *386 - - *403 + - *407 + - *408 + - *425 responses: '204': description: Response @@ -53716,9 +53809,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *385 - - *386 - - *403 + - *407 + - *408 + - *425 - name: archive_format in: path required: true @@ -53732,7 +53825,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53755,14 +53848,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *404 + schema: *426 examples: default: value: @@ -53788,11 +53881,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 - - &405 + - &427 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -53826,7 +53919,7 @@ paths: description: Response content: application/json: - schema: &406 + schema: &428 title: Repository actions caches description: Repository actions caches type: object @@ -53868,7 +53961,7 @@ paths: - total_count - actions_caches examples: - default: &407 + default: &429 value: total_count: 1 actions_caches: @@ -53900,23 +53993,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *385 - - *386 + - *407 + - *408 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *405 + - *427 responses: '200': description: Response content: application/json: - schema: *406 + schema: *428 examples: - default: *407 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53936,8 +54029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *385 - - *386 + - *407 + - *408 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -53968,9 +54061,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *385 - - *386 - - &408 + - *407 + - *408 + - &430 name: job_id description: The unique identifier of the job. in: path @@ -53982,7 +54075,7 @@ paths: description: Response content: application/json: - schema: &420 + schema: &442 title: Job description: Information of a job execution in a workflow run type: object @@ -54289,9 +54382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *385 - - *386 + - *407 - *408 + - *430 responses: '302': description: Response @@ -54319,9 +54412,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *385 - - *386 + - *407 - *408 + - *430 requestBody: required: false content: @@ -54342,7 +54435,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -54366,8 +54459,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Status response @@ -54417,8 +54510,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -54452,7 +54545,7 @@ paths: description: Empty response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -54481,8 +54574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -54500,7 +54593,7 @@ paths: type: integer secrets: type: array - items: &422 + items: &444 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -54520,7 +54613,7 @@ paths: - created_at - updated_at examples: - default: &423 + default: &445 value: total_count: 2 secrets: @@ -54553,9 +54646,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *385 - - *386 - - *409 + - *407 + - *408 + - *431 - *19 responses: '200': @@ -54572,7 +54665,7 @@ paths: type: integer variables: type: array - items: &426 + items: &448 title: Actions Variable type: object properties: @@ -54602,7 +54695,7 @@ paths: - created_at - updated_at examples: - default: &427 + default: &449 value: total_count: 2 variables: @@ -54635,8 +54728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -54645,11 +54738,11 @@ paths: schema: type: object properties: - enabled: &410 + enabled: &432 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *49 - selected_actions_url: *197 + selected_actions_url: *217 required: - enabled examples: @@ -54678,8 +54771,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -54690,7 +54783,7 @@ paths: schema: type: object properties: - enabled: *410 + enabled: *432 allowed_actions: *49 required: - enabled @@ -54721,14 +54814,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: &411 + schema: &433 type: object properties: access_level: @@ -54746,7 +54839,7 @@ paths: required: - access_level examples: - default: &412 + default: &434 value: access_level: organization x-github: @@ -54771,15 +54864,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: application/json: - schema: *411 + schema: *433 examples: - default: *412 + default: *434 responses: '204': description: Response @@ -54803,8 +54896,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -54835,8 +54928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -54868,14 +54961,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *200 + schema: *220 examples: default: *55 x-github: @@ -54898,8 +54991,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Success response @@ -54910,7 +55003,7 @@ paths: required: true content: application/json: - schema: *201 + schema: *221 examples: default: *55 x-github: @@ -54939,8 +55032,8 @@ paths: in: query schema: type: string - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -54984,8 +55077,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -54993,9 +55086,9 @@ paths: application/json: schema: type: array - items: *205 + items: *225 examples: - default: *206 + default: *226 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55017,8 +55110,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -55061,7 +55154,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *207 + '201': *227 '404': *6 '422': *7 '409': *99 @@ -55092,8 +55185,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '201': description: Response @@ -55101,7 +55194,7 @@ paths: application/json: schema: *65 examples: - default: *208 + default: *228 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55129,8 +55222,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '201': description: Response @@ -55138,7 +55231,7 @@ paths: application/json: schema: *65 examples: - default: *209 + default: *229 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55160,8 +55253,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 responses: '200': @@ -55170,7 +55263,7 @@ paths: application/json: schema: *62 examples: - default: *210 + default: *230 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55191,8 +55284,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 responses: '204': @@ -55219,8 +55312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 responses: '200': *67 @@ -55245,8 +55338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 requestBody: required: true @@ -55295,8 +55388,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 requestBody: required: true @@ -55346,11 +55439,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 responses: - '200': *211 + '200': *231 '404': *6 x-github: githubCloudOnly: false @@ -55377,10 +55470,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *61 - - *212 + - *232 responses: '200': *67 '404': *6 @@ -55408,9 +55501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *385 - - *386 - - &430 + - *407 + - *408 + - &452 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -55418,7 +55511,7 @@ paths: required: false schema: type: string - - &431 + - &453 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -55426,7 +55519,7 @@ paths: required: false schema: type: string - - &432 + - &454 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -55435,7 +55528,7 @@ paths: required: false schema: type: string - - &433 + - &455 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -55462,7 +55555,7 @@ paths: - pending - *17 - *19 - - &434 + - &456 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -55471,7 +55564,7 @@ paths: schema: type: string format: date-time - - &413 + - &435 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -55480,13 +55573,13 @@ paths: schema: type: boolean default: false - - &435 + - &457 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &436 + - &458 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -55509,7 +55602,7 @@ paths: type: integer workflow_runs: type: array - items: &414 + items: &436 title: Workflow Run description: An invocation of a workflow type: object @@ -55604,7 +55697,7 @@ paths: that triggered the run. type: array nullable: true - items: &457 + items: &479 title: Pull Request Minimal type: object properties: @@ -55723,7 +55816,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &461 + properties: &483 id: type: string description: SHA for the commit @@ -55774,7 +55867,7 @@ paths: - name - email nullable: true - required: &462 + required: &484 - id - tree_id - message @@ -55782,8 +55875,8 @@ paths: - author - committer nullable: true - repository: *204 - head_repository: *204 + repository: *224 + head_repository: *224 head_repository_id: type: integer example: 5 @@ -55821,7 +55914,7 @@ paths: - workflow_url - pull_requests examples: - default: &437 + default: &459 value: total_count: 1 workflow_runs: @@ -56057,24 +56150,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *385 - - *386 - - &415 + - *407 + - *408 + - &437 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *413 + - *435 responses: '200': description: Response content: application/json: - schema: *414 + schema: *436 examples: - default: &418 + default: &440 value: id: 30433642 name: Build @@ -56315,9 +56408,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '204': description: Response @@ -56340,9 +56433,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '200': description: Response @@ -56461,15 +56554,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '201': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -56496,12 +56589,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 - *17 - *19 - - *416 + - *438 responses: '200': description: Response @@ -56517,9 +56610,9 @@ paths: type: integer artifacts: type: array - items: *402 + items: *424 examples: - default: *417 + default: *439 headers: Link: *40 x-github: @@ -56543,25 +56636,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *385 - - *386 - - *415 - - &419 + - *407 + - *408 + - *437 + - &441 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *413 + - *435 responses: '200': description: Response content: application/json: - schema: *414 + schema: *436 examples: - default: *418 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56584,10 +56677,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *385 - - *386 - - *415 - - *419 + - *407 + - *408 + - *437 + - *441 - *17 - *19 responses: @@ -56605,9 +56698,9 @@ paths: type: integer jobs: type: array - items: *420 + items: *442 examples: - default: &421 + default: &443 value: total_count: 1 jobs: @@ -56720,10 +56813,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *385 - - *386 - - *415 - - *419 + - *407 + - *408 + - *437 + - *441 responses: '302': description: Response @@ -56751,15 +56844,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '202': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -56786,9 +56879,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 requestBody: required: true content: @@ -56855,15 +56948,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '202': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -56890,9 +56983,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -56922,9 +57015,9 @@ paths: type: integer jobs: type: array - items: *420 + items: *442 examples: - default: *421 + default: *443 headers: Link: *40 x-github: @@ -56949,9 +57042,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '302': description: Response @@ -56978,9 +57071,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '204': description: Response @@ -57007,9 +57100,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '200': description: Response @@ -57069,7 +57162,7 @@ paths: items: type: object properties: - type: &547 + type: &569 type: string description: The type of reviewer. enum: @@ -57079,7 +57172,7 @@ paths: reviewer: anyOf: - *4 - - *235 + - *255 required: - environment - wait_timer @@ -57154,9 +57247,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 requestBody: required: true content: @@ -57203,7 +57296,7 @@ paths: application/json: schema: type: array - items: &533 + items: &555 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -57291,8 +57384,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 required: - id - node_id @@ -57309,7 +57402,7 @@ paths: - created_at - updated_at examples: - default: &534 + default: &556 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -57365,9 +57458,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 requestBody: required: false content: @@ -57388,7 +57481,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57411,9 +57504,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 requestBody: required: false content: @@ -57434,7 +57527,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57467,9 +57560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *385 - - *386 - - *415 + - *407 + - *408 + - *437 responses: '200': description: Response @@ -57606,8 +57699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -57625,9 +57718,9 @@ paths: type: integer secrets: type: array - items: *422 + items: *444 examples: - default: *423 + default: *445 headers: Link: *40 x-github: @@ -57652,16 +57745,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *424 + schema: *446 examples: - default: *425 + default: *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57683,17 +57776,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '200': description: Response content: application/json: - schema: *422 + schema: *444 examples: - default: &560 + default: &582 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -57719,9 +57812,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 requestBody: required: true content: @@ -57752,7 +57845,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57778,9 +57871,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '204': description: Response @@ -57805,9 +57898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *385 - - *386 - - *409 + - *407 + - *408 + - *431 - *19 responses: '200': @@ -57824,9 +57917,9 @@ paths: type: integer variables: type: array - items: *426 + items: *448 examples: - default: *427 + default: *449 headers: Link: *40 x-github: @@ -57849,8 +57942,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -57877,7 +57970,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57902,17 +57995,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *385 - - *386 - - *217 + - *407 + - *408 + - *237 responses: '200': description: Response content: application/json: - schema: *426 + schema: *448 examples: - default: &561 + default: &583 value: name: USERNAME value: octocat @@ -57938,9 +58031,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *385 - - *386 - - *217 + - *407 + - *408 + - *237 requestBody: required: true content: @@ -57982,9 +58075,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *385 - - *386 - - *217 + - *407 + - *408 + - *237 responses: '204': description: Response @@ -58009,8 +58102,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -58028,7 +58121,7 @@ paths: type: integer workflows: type: array - items: &428 + items: &450 title: Workflow description: A GitHub Actions workflow type: object @@ -58135,9 +58228,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *385 - - *386 - - &429 + - *407 + - *408 + - &451 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -58152,7 +58245,7 @@ paths: description: Response content: application/json: - schema: *428 + schema: *450 examples: default: value: @@ -58185,9 +58278,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *385 - - *386 - - *429 + - *407 + - *408 + - *451 responses: '204': description: Response @@ -58212,9 +58305,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *385 - - *386 - - *429 + - *407 + - *408 + - *451 responses: '204': description: Response @@ -58265,9 +58358,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *385 - - *386 - - *429 + - *407 + - *408 + - *451 responses: '204': description: Response @@ -58294,19 +58387,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *385 - - *386 - - *429 - - *430 - - *431 - - *432 - - *433 + - *407 + - *408 + - *451 + - *452 + - *453 + - *454 + - *455 - *17 - *19 - - *434 - - *413 + - *456 - *435 - - *436 + - *457 + - *458 responses: '200': description: Response @@ -58322,9 +58415,9 @@ paths: type: integer workflow_runs: type: array - items: *414 + items: *436 examples: - default: *437 + default: *459 headers: Link: *40 x-github: @@ -58357,9 +58450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *385 - - *386 - - *429 + - *407 + - *408 + - *451 responses: '200': description: Response @@ -58420,8 +58513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *385 - - *386 + - *407 + - *408 - *91 - *17 - *89 @@ -58585,8 +58678,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -58598,7 +58691,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -58623,8 +58716,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *385 - - *386 + - *407 + - *408 - name: assignee in: path required: true @@ -58660,8 +58753,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -58773,8 +58866,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *89 - *90 @@ -58828,7 +58921,7 @@ paths: bundle_url: type: string examples: - default: *438 + default: *460 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58848,8 +58941,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -58857,7 +58950,7 @@ paths: application/json: schema: type: array - items: &439 + items: &461 title: Autolink reference description: An autolink reference. type: object @@ -58907,8 +59000,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -58947,9 +59040,9 @@ paths: description: response content: application/json: - schema: *439 + schema: *461 examples: - default: &440 + default: &462 value: id: 1 key_prefix: TICKET- @@ -58980,9 +59073,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *385 - - *386 - - &441 + - *407 + - *408 + - &463 name: autolink_id description: The unique identifier of the autolink. in: path @@ -58994,9 +59087,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *461 examples: - default: *440 + default: *462 '404': *6 x-github: githubCloudOnly: false @@ -59016,9 +59109,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *385 - - *386 - - *441 + - *407 + - *408 + - *463 responses: '204': description: Response @@ -59042,8 +59135,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response if Dependabot is enabled @@ -59091,8 +59184,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -59113,8 +59206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -59134,8 +59227,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *385 - - *386 + - *407 + - *408 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -59173,7 +59266,7 @@ paths: - url protected: type: boolean - protection: &443 + protection: &465 title: Branch Protection description: Branch Protection type: object @@ -59215,7 +59308,7 @@ paths: required: - contexts - checks - enforce_admins: &446 + enforce_admins: &468 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -59230,7 +59323,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &448 + required_pull_request_reviews: &470 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -59251,7 +59344,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *235 + items: *255 apps: description: The list of apps with review dismissal access. @@ -59280,7 +59373,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *235 + items: *255 apps: description: The list of apps allowed to bypass pull request requirements. @@ -59306,7 +59399,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &445 + restrictions: &467 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -59613,9 +59706,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *385 - - *386 - - &444 + - *407 + - *408 + - &466 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -59629,14 +59722,14 @@ paths: description: Response content: application/json: - schema: &454 + schema: &476 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &506 + commit: &528 title: Commit description: Commit type: object @@ -59670,7 +59763,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &442 + properties: &464 name: type: string example: '"Chris Wanstrath"' @@ -59685,7 +59778,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *442 + properties: *464 nullable: true message: type: string @@ -59706,7 +59799,7 @@ paths: required: - sha - url - verification: &567 + verification: &589 title: Verification type: object properties: @@ -59740,12 +59833,12 @@ paths: nullable: true oneOf: - *4 - - *215 + - *235 committer: nullable: true oneOf: - *4 - - *215 + - *235 parents: type: array items: @@ -59776,7 +59869,7 @@ paths: type: integer files: type: array - items: &521 + items: &543 title: Diff Entry description: Diff Entry type: object @@ -59859,7 +59952,7 @@ paths: - self protected: type: boolean - protection: *443 + protection: *465 protection_url: type: string format: uri @@ -59966,7 +60059,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *399 + '301': *421 '404': *6 x-github: githubCloudOnly: false @@ -59988,15 +60081,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *443 + schema: *465 examples: default: value: @@ -60190,9 +60283,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -60447,7 +60540,7 @@ paths: url: type: string format: uri - required_status_checks: &451 + required_status_checks: &473 title: Status Check Policy description: Status Check Policy type: object @@ -60523,7 +60616,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 apps: type: array items: *5 @@ -60541,7 +60634,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 apps: type: array items: *5 @@ -60599,7 +60692,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *445 + restrictions: *467 required_conversation_resolution: type: object properties: @@ -60711,9 +60804,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -60738,17 +60831,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *446 + schema: *468 examples: - default: &447 + default: &469 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -60770,17 +60863,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *446 + schema: *468 examples: - default: *447 + default: *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60799,9 +60892,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -60826,17 +60919,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *448 + schema: *470 examples: - default: &449 + default: &471 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -60932,9 +61025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -61032,9 +61125,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *470 examples: - default: *449 + default: *471 '422': *15 x-github: githubCloudOnly: false @@ -61055,9 +61148,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -61084,17 +61177,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *446 + schema: *468 examples: - default: &450 + default: &472 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -61117,17 +61210,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *446 + schema: *468 examples: - default: *450 + default: *472 '404': *6 x-github: githubCloudOnly: false @@ -61147,9 +61240,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -61174,17 +61267,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *451 + schema: *473 examples: - default: &452 + default: &474 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -61210,9 +61303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -61264,9 +61357,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *473 examples: - default: *452 + default: *474 '404': *6 '422': *15 x-github: @@ -61288,9 +61381,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -61314,9 +61407,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response @@ -61350,9 +61443,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -61419,9 +61512,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -61485,9 +61578,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: content: application/json: @@ -61553,15 +61646,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response content: application/json: - schema: *445 + schema: *467 examples: default: value: @@ -61652,9 +61745,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '204': description: Response @@ -61677,9 +61770,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response @@ -61689,7 +61782,7 @@ paths: type: array items: *5 examples: - default: &453 + default: &475 value: - id: 1 slug: octoapp @@ -61746,9 +61839,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -61782,7 +61875,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61803,9 +61896,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -61839,7 +61932,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61860,9 +61953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -61896,7 +61989,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61918,9 +62011,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response @@ -61928,9 +62021,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '404': *6 x-github: githubCloudOnly: false @@ -61950,9 +62043,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -61988,9 +62081,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62011,9 +62104,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: false content: @@ -62049,9 +62142,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62072,9 +62165,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: content: application/json: @@ -62109,9 +62202,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62133,9 +62226,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 responses: '200': description: Response @@ -62145,7 +62238,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '404': *6 x-github: githubCloudOnly: false @@ -62169,9 +62262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -62204,7 +62297,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62229,9 +62322,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -62264,7 +62357,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62289,9 +62382,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -62324,7 +62417,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62351,9 +62444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 requestBody: required: true content: @@ -62375,7 +62468,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *476 examples: default: value: @@ -62489,12 +62582,12 @@ paths: category: repos subcategory: bypass-requests parameters: - - *385 - - *386 - - *227 - - *228 - - *229 - - *230 + - *407 + - *408 + - *247 + - *248 + - *249 + - *250 - *17 - *19 responses: @@ -62504,9 +62597,9 @@ paths: application/json: schema: type: array - items: *231 + items: *251 examples: - default: *232 + default: *252 '404': *6 '500': *88 "/repos/{owner}/{repo}/bypass-requests/push-rules/{bypass_request_number}": @@ -62526,8 +62619,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62541,7 +62634,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *251 examples: default: value: @@ -62600,12 +62693,12 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 - - *227 - - *228 - - *229 - - *230 + - *407 + - *408 + - *247 + - *248 + - *249 + - *250 - *17 - *19 responses: @@ -62615,9 +62708,9 @@ paths: application/json: schema: type: array - items: *455 + items: *477 examples: - default: *456 + default: *478 '404': *6 '403': *29 '500': *88 @@ -62641,8 +62734,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62654,7 +62747,7 @@ paths: description: A single bypass request. content: application/json: - schema: *455 + schema: *477 examples: default: value: @@ -62712,8 +62805,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62784,8 +62877,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_response_id in: path required: true @@ -62818,8 +62911,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -63098,7 +63191,7 @@ paths: description: Response content: application/json: - schema: &458 + schema: &480 title: CheckRun description: A check performed on the code of a given code change type: object @@ -63209,16 +63302,16 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 pull_requests: description: Pull requests that are open with a `head_sha` or `head_branch` that matches the check. The returned pull requests do not necessarily indicate pull requests that triggered the check. type: array - items: *457 - deployment: &802 + items: *479 + deployment: &805 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -63285,8 +63378,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 required: - id - node_id @@ -63498,9 +63591,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *385 - - *386 - - &459 + - *407 + - *408 + - &481 name: check_run_id description: The unique identifier of the check run. in: path @@ -63512,9 +63605,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *480 examples: - default: &460 + default: &482 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -63614,9 +63707,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *385 - - *386 - - *459 + - *407 + - *408 + - *481 requestBody: required: true content: @@ -63856,9 +63949,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *480 examples: - default: *460 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63878,9 +63971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *385 - - *386 - - *459 + - *407 + - *408 + - *481 - *17 - *19 responses: @@ -63975,15 +64068,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *385 - - *386 - - *459 + - *407 + - *408 + - *481 responses: '201': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -64021,8 +64114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -64044,7 +64137,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &463 + schema: &485 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -64108,7 +64201,7 @@ paths: nullable: true pull_requests: type: array - items: *457 + items: *479 nullable: true app: title: GitHub app @@ -64119,9 +64212,9 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 - repository: *204 + properties: *165 + required: *166 + repository: *224 created_at: type: string format: date-time @@ -64130,12 +64223,12 @@ paths: type: string format: date-time nullable: true - head_commit: &828 + head_commit: &831 title: Simple Commit description: A commit. type: object - properties: *461 - required: *462 + properties: *483 + required: *484 latest_check_runs_count: type: integer check_runs_url: @@ -64163,7 +64256,7 @@ paths: - check_runs_url - pull_requests examples: - default: &464 + default: &486 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -64454,9 +64547,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *463 + schema: *485 examples: - default: *464 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64475,8 +64568,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -64537,7 +64630,7 @@ paths: required: - app_id - setting - repository: *204 + repository: *224 examples: default: value: @@ -64785,9 +64878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *385 - - *386 - - &465 + - *407 + - *408 + - &487 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -64799,9 +64892,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *485 examples: - default: *464 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64824,17 +64917,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *385 - - *386 - - *465 - - &514 + - *407 + - *408 + - *487 + - &536 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &515 + - &537 name: status description: Returns check runs with the specified `status`. in: query @@ -64873,9 +64966,9 @@ paths: type: integer check_runs: type: array - items: *458 + items: *480 examples: - default: &516 + default: &538 value: total_count: 1 check_runs: @@ -64977,15 +65070,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *385 - - *386 - - *465 + - *407 + - *408 + - *487 responses: '201': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -65012,21 +65105,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *385 - - *386 - - *239 - - *240 + - *407 + - *408 + - *259 + - *260 - *19 - *17 - - &481 + - &503 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *466 - - &482 + schema: *488 + - &504 name: pr description: The number of the pull request for the results you want to list. in: query @@ -65051,13 +65144,13 @@ paths: be returned. in: query required: false - schema: *241 + schema: *261 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *467 + schema: *489 responses: '200': description: Response @@ -65073,7 +65166,7 @@ paths: updated_at: *111 url: *108 html_url: *109 - instances_url: *468 + instances_url: *490 state: *94 fixed_at: *113 dismissed_by: @@ -65084,11 +65177,11 @@ paths: required: *21 nullable: true dismissed_at: *112 - dismissed_reason: *469 - dismissed_comment: *470 - rule: *471 - tool: *472 - most_recent_instance: *473 + dismissed_reason: *491 + dismissed_comment: *492 + rule: *493 + tool: *494 + most_recent_instance: *495 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -65211,14 +65304,14 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &474 + '403': &496 description: Response if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65238,9 +65331,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *385 - - *386 - - &475 + - *407 + - *408 + - &497 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -65254,7 +65347,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &498 type: object properties: number: *103 @@ -65262,7 +65355,7 @@ paths: updated_at: *111 url: *108 html_url: *109 - instances_url: *468 + instances_url: *490 state: *94 fixed_at: *113 dismissed_by: @@ -65273,8 +65366,8 @@ paths: required: *21 nullable: true dismissed_at: *112 - dismissed_reason: *469 - dismissed_comment: *470 + dismissed_reason: *491 + dismissed_comment: *492 rule: type: object properties: @@ -65328,8 +65421,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *472 - most_recent_instance: *473 + tool: *494 + most_recent_instance: *495 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -65425,9 +65518,9 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65445,9 +65538,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 requestBody: required: true content: @@ -65462,8 +65555,8 @@ paths: enum: - open - dismissed - dismissed_reason: *469 - dismissed_comment: *470 + dismissed_reason: *491 + dismissed_comment: *492 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -65482,7 +65575,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *498 examples: default: value: @@ -65558,14 +65651,14 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &480 + '403': &502 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: application/json: schema: *3 '404': *6 - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -65585,15 +65678,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 responses: '200': description: Response content: application/json: - schema: &477 + schema: &499 type: object properties: status: @@ -65619,13 +65712,13 @@ paths: - description - started_at examples: - default: &478 + default: &500 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &479 + '400': &501 description: Bad Request content: application/json: @@ -65636,9 +65729,9 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65661,29 +65754,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 responses: '200': description: OK content: application/json: - schema: *477 + schema: *499 examples: - default: *478 + default: *500 '202': description: Accepted content: application/json: - schema: *477 + schema: *499 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *479 + '400': *501 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -65693,7 +65786,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65715,9 +65808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 requestBody: required: false content: @@ -65762,12 +65855,12 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *479 - '403': *480 + '400': *501 + '403': *502 '404': *6 '422': description: Unprocessable Entity - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65787,13 +65880,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 - *19 - *17 - - *481 - - *482 + - *503 + - *504 responses: '200': description: Response @@ -65801,7 +65894,7 @@ paths: application/json: schema: type: array - items: *473 + items: *495 examples: default: value: @@ -65840,9 +65933,9 @@ paths: end_column: 50 classifications: - source - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65874,25 +65967,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *385 - - *386 - - *239 - - *240 + - *407 + - *408 + - *259 + - *260 - *19 - *17 - - *482 + - *504 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *466 + schema: *488 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &485 + schema: &507 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -65913,23 +66006,23 @@ paths: application/json: schema: type: array - items: &486 + items: &508 type: object properties: - ref: *466 - commit_sha: &494 + ref: *488 + commit_sha: &516 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *483 + analysis_key: *505 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *484 + category: *506 error: type: string example: error reading field xyz @@ -65953,8 +66046,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *485 - tool: *472 + sarif_id: *507 + tool: *494 deletable: type: boolean warning: @@ -66015,9 +66108,9 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66051,8 +66144,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -66065,7 +66158,7 @@ paths: description: Response content: application/json: - schema: *486 + schema: *508 examples: response: summary: application/json response @@ -66119,14 +66212,14 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *474 + '403': *496 '404': *6 '422': description: Response if analysis could not be processed content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66206,8 +66299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -66260,9 +66353,9 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *480 + '403': *502 '404': *6 - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -66282,8 +66375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -66291,7 +66384,7 @@ paths: application/json: schema: type: array - items: &487 + items: &509 title: CodeQL Database description: A CodeQL database. type: object @@ -66402,9 +66495,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66431,8 +66524,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: language in: path description: The language of the CodeQL database. @@ -66444,7 +66537,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *509 examples: default: value: @@ -66476,11 +66569,11 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &523 + '302': &545 description: Found - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66500,8 +66593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *385 - - *386 + - *407 + - *408 - name: language in: path description: The language of the CodeQL database. @@ -66511,9 +66604,9 @@ paths: responses: '204': description: Response - '403': *480 + '403': *502 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66539,8 +66632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -66549,7 +66642,7 @@ paths: type: object additionalProperties: false properties: - language: &488 + language: &510 type: string description: The language targeted by the CodeQL query enum: @@ -66628,7 +66721,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &492 + schema: &514 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -66638,7 +66731,7 @@ paths: description: The ID of the variant analysis. controller_repo: *100 actor: *4 - query_language: *488 + query_language: *510 query_pack_url: type: string description: The download url for the query pack. @@ -66685,7 +66778,7 @@ paths: items: type: object properties: - repository: &489 + repository: &511 title: Repository Identifier description: Repository Identifier type: object @@ -66721,7 +66814,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &493 + analysis_status: &515 type: string description: The new status of the CodeQL variant analysis repository task. @@ -66753,7 +66846,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &490 + access_mismatch_repos: &512 type: object properties: repository_count: @@ -66767,7 +66860,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *489 + items: *511 required: - repository_count - repositories @@ -66789,8 +66882,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *490 - over_limit_repos: *490 + no_codeql_db_repos: *512 + over_limit_repos: *512 required: - access_mismatch_repos - not_found_repos @@ -66806,7 +66899,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &491 + value: &513 summary: Default response value: id: 1 @@ -66958,17 +67051,17 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *491 + value: *513 repository_lists: summary: Response for a successful variant analysis submission - value: *491 + value: *513 '404': *6 '422': description: Unable to process variant analysis submission content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66989,8 +67082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *385 - - *386 + - *407 + - *408 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -67002,11 +67095,11 @@ paths: description: Response content: application/json: - schema: *492 + schema: *514 examples: - default: *491 + default: *513 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67027,7 +67120,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *385 + - *407 - name: repo in: path description: The name of the controller repository. @@ -67062,7 +67155,7 @@ paths: type: object properties: repository: *100 - analysis_status: *493 + analysis_status: *515 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -67166,7 +67259,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67187,8 +67280,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -67273,9 +67366,9 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *474 + '403': *496 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67294,8 +67387,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -67362,7 +67455,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -67387,7 +67480,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *480 + '403': *502 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -67401,7 +67494,7 @@ paths: content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67458,8 +67551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -67467,7 +67560,7 @@ paths: schema: type: object properties: - commit_sha: *494 + commit_sha: *516 ref: type: string description: |- @@ -67525,7 +67618,7 @@ paths: schema: type: object properties: - id: *485 + id: *507 url: type: string description: The REST API URL for checking the status of the upload. @@ -67539,11 +67632,11 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *480 + '403': *502 '404': *6 '413': description: Payload Too Large if the sarif field is too large - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -67562,8 +67655,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *385 - - *386 + - *407 + - *408 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -67609,10 +67702,10 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *474 + '403': *496 '404': description: Not Found if the sarif id does not match any upload - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -67634,8 +67727,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -67716,8 +67809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *385 - - *386 + - *407 + - *408 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -67837,8 +67930,8 @@ paths: parameters: - *17 - *19 - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -67854,7 +67947,7 @@ paths: type: integer codespaces: type: array - items: *301 + items: *322 examples: default: value: @@ -68152,8 +68245,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -68216,22 +68309,22 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '400': *14 '401': *25 '403': *29 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -68255,8 +68348,8 @@ paths: parameters: - *17 - *19 - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -68320,8 +68413,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -68356,14 +68449,14 @@ paths: type: integer machines: type: array - items: &755 + items: &758 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *496 - required: *497 + properties: *518 + required: *519 examples: - default: &756 + default: &759 value: total_count: 2 machines: @@ -68403,8 +68496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *385 - - *386 + - *407 + - *408 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -68488,8 +68581,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *385 - - *386 + - *407 + - *408 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -68534,7 +68627,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68555,8 +68648,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -68574,7 +68667,7 @@ paths: type: integer secrets: type: array - items: &501 + items: &523 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -68594,7 +68687,7 @@ paths: - created_at - updated_at examples: - default: *498 + default: *520 headers: Link: *40 x-github: @@ -68617,16 +68710,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *499 + schema: *521 examples: - default: *500 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -68646,17 +68739,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '200': description: Response content: application/json: - schema: *501 + schema: *523 examples: - default: *502 + default: *524 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68676,9 +68769,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 requestBody: required: true content: @@ -68706,7 +68799,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -68730,9 +68823,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '204': description: Response @@ -68760,8 +68853,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *385 - - *386 + - *407 + - *408 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -68803,7 +68896,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &503 + properties: &525 login: type: string example: octocat @@ -68896,7 +68989,7 @@ paths: user_view_type: type: string example: public - required: &504 + required: &526 - avatar_url - events_url - followers_url @@ -68970,9 +69063,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *385 - - *386 - - *226 + - *407 + - *408 + - *246 responses: '204': description: Response if user is a collaborator @@ -69018,9 +69111,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *385 - - *386 - - *226 + - *407 + - *408 + - *246 requestBody: required: false content: @@ -69046,7 +69139,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &580 + schema: &602 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -69057,7 +69150,7 @@ paths: example: 42 type: integer format: int64 - repository: *204 + repository: *224 invitee: title: Simple User description: A GitHub user. @@ -69235,7 +69328,7 @@ paths: - an Enterprise Managed User (EMU) account was invited to a repository in an enterprise with personal user accounts content: application/json: - schema: *187 + schema: *207 '403': *29 x-github: triggersNotification: true @@ -69275,9 +69368,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *385 - - *386 - - *226 + - *407 + - *408 + - *246 responses: '204': description: No Content when collaborator was removed from the repository. @@ -69308,9 +69401,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *385 - - *386 - - *226 + - *407 + - *408 + - *246 responses: '200': description: if user has admin permissions @@ -69330,8 +69423,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *503 - required: *504 + properties: *525 + required: *526 nullable: true required: - permission @@ -69386,8 +69479,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -69397,7 +69490,7 @@ paths: application/json: schema: type: array - items: &505 + items: &527 title: Commit Comment description: Commit Comment type: object @@ -69438,8 +69531,8 @@ paths: updated_at: type: string format: date-time - author_association: *147 - reactions: *148 + author_association: *167 + reactions: *168 required: - url - html_url @@ -69455,7 +69548,7 @@ paths: - created_at - updated_at examples: - default: &508 + default: &530 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -69514,17 +69607,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '200': description: Response content: application/json: - schema: *505 + schema: *527 examples: - default: &509 + default: &531 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -69581,9 +69674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -69605,7 +69698,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *527 examples: default: value: @@ -69656,9 +69749,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '204': description: Response @@ -69679,9 +69772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a commit comment. @@ -69707,9 +69800,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -69730,9 +69823,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -69764,16 +69857,16 @@ paths: description: Reaction exists content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Reaction created content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -69795,10 +69888,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *385 - - *386 - - *159 - - *377 + - *407 + - *408 + - *179 + - *399 responses: '204': description: Response @@ -69847,8 +69940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *385 - - *386 + - *407 + - *408 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -69904,9 +69997,9 @@ paths: application/json: schema: type: array - items: *506 + items: *528 examples: - default: &631 + default: &653 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -70000,9 +70093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *385 - - *386 - - &507 + - *407 + - *408 + - &529 name: commit_sha description: The SHA of the commit. in: path @@ -70074,9 +70167,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *385 - - *386 - - *507 + - *407 + - *408 + - *529 - *17 - *19 responses: @@ -70086,9 +70179,9 @@ paths: application/json: schema: type: array - items: *505 + items: *527 examples: - default: *508 + default: *530 headers: Link: *40 x-github: @@ -70116,9 +70209,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *385 - - *386 - - *507 + - *407 + - *408 + - *529 requestBody: required: true content: @@ -70153,9 +70246,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *527 examples: - default: *509 + default: *531 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -70183,9 +70276,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *385 - - *386 - - *507 + - *407 + - *408 + - *529 - *17 - *19 responses: @@ -70195,7 +70288,7 @@ paths: application/json: schema: type: array - items: &622 + items: &644 title: Pull Request Simple description: Pull Request Simple type: object @@ -70301,8 +70394,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *510 - required: *511 + properties: *532 + required: *533 nullable: true active_lock_reason: type: string @@ -70347,7 +70440,7 @@ paths: nullable: true requested_teams: type: array - items: *235 + items: *255 nullable: true head: type: object @@ -70398,7 +70491,7 @@ paths: _links: type: object properties: - comments: &512 + comments: &534 title: Link description: Hypermedia Link type: object @@ -70407,13 +70500,13 @@ paths: type: string required: - href - commits: *512 - statuses: *512 - html: *512 - issue: *512 - review_comments: *512 - review_comment: *512 - self: *512 + commits: *534 + statuses: *534 + html: *534 + issue: *534 + review_comments: *534 + review_comment: *534 + self: *534 required: - comments - commits @@ -70423,8 +70516,8 @@ paths: - review_comments - review_comment - self - author_association: *147 - auto_merge: &624 + author_association: *167 + auto_merge: &646 title: Auto merge description: The status of auto merging a pull request. type: object @@ -70487,7 +70580,7 @@ paths: - author_association - auto_merge examples: - default: &623 + default: &645 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -71024,11 +71117,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *385 - - *386 + - *407 + - *408 - *19 - *17 - - &513 + - &535 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -71043,9 +71136,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *528 examples: - default: &609 + default: &631 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -71132,7 +71225,7 @@ paths: '422': *15 '404': *6 '500': *88 - '503': *137 + '503': *157 '409': *99 x-github: githubCloudOnly: false @@ -71158,11 +71251,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *385 - - *386 - - *513 - - *514 - - *515 + - *407 + - *408 + - *535 + - *536 + - *537 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -71196,9 +71289,9 @@ paths: type: integer check_runs: type: array - items: *458 + items: *480 examples: - default: *516 + default: *538 headers: Link: *40 x-github: @@ -71223,9 +71316,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *385 - - *386 - - *513 + - *407 + - *408 + - *535 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -71233,7 +71326,7 @@ paths: schema: type: integer example: 1 - - *514 + - *536 - *17 - *19 responses: @@ -71251,7 +71344,7 @@ paths: type: integer check_suites: type: array - items: *463 + items: *485 examples: default: value: @@ -71451,9 +71544,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *385 - - *386 - - *513 + - *407 + - *408 + - *535 - *17 - *19 responses: @@ -71520,7 +71613,7 @@ paths: type: string total_count: type: integer - repository: *204 + repository: *224 commit_url: type: string format: uri @@ -71651,9 +71744,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *385 - - *386 - - *513 + - *407 + - *408 + - *535 - *17 - *19 responses: @@ -71663,7 +71756,7 @@ paths: application/json: schema: type: array - items: &703 + items: &706 title: Status description: The status of a commit. type: object @@ -71744,7 +71837,7 @@ paths: site_admin: false headers: Link: *40 - '301': *399 + '301': *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71772,8 +71865,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -71802,20 +71895,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *517 - required: *518 + properties: *539 + required: *540 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &519 + properties: &541 url: type: string format: uri html_url: type: string format: uri - required: &520 + required: &542 - url - html_url nullable: true @@ -71823,32 +71916,32 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true contributing: title: Community Health File type: object - properties: *519 - required: *520 + properties: *541 + required: *542 nullable: true readme: title: Community Health File type: object - properties: *519 - required: *520 + properties: *541 + required: *542 nullable: true issue_template: title: Community Health File type: object - properties: *519 - required: *520 + properties: *541 + required: *542 nullable: true pull_request_template: title: Community Health File type: object - properties: *519 - required: *520 + properties: *541 + required: *542 nullable: true required: - code_of_conduct @@ -71975,8 +72068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *385 - - *386 + - *407 + - *408 - *19 - *17 - name: basehead @@ -72019,8 +72112,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *506 - merge_base_commit: *506 + base_commit: *528 + merge_base_commit: *528 status: type: string enum: @@ -72040,10 +72133,10 @@ paths: example: 6 commits: type: array - items: *506 + items: *528 files: type: array - items: *521 + items: *543 required: - url - html_url @@ -72287,7 +72380,7 @@ paths: module Test" '404': *6 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72329,8 +72422,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *385 - - *386 + - *407 + - *408 - name: path description: path parameter in: path @@ -72473,7 +72566,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &522 + response-if-content-is-a-file: &544 summary: Response if content is a file value: type: file @@ -72605,7 +72698,7 @@ paths: - size - type - url - - &636 + - &658 title: Content File description: Content File type: object @@ -72806,7 +72899,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *522 + response-if-content-is-a-file: *544 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -72875,7 +72968,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *523 + '302': *545 '304': *37 x-github: githubCloudOnly: false @@ -72898,8 +72991,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *385 - - *386 + - *407 + - *408 - name: path description: path parameter in: path @@ -72992,7 +73085,7 @@ paths: description: Response content: application/json: - schema: &524 + schema: &546 title: File Commit description: File Commit type: object @@ -73144,7 +73237,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *546 examples: example-for-creating-a-file: value: @@ -73198,7 +73291,7 @@ paths: schema: oneOf: - *3 - - &562 + - &584 description: Repository rule violation was detected type: object properties: @@ -73219,7 +73312,7 @@ paths: items: type: object properties: - placeholder_id: &695 + placeholder_id: &698 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -73251,8 +73344,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *385 - - *386 + - *407 + - *408 - name: path description: path parameter in: path @@ -73313,7 +73406,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *546 examples: default: value: @@ -73348,7 +73441,7 @@ paths: '422': *15 '404': *6 '409': *99 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73368,8 +73461,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *385 - - *386 + - *407 + - *408 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -73492,22 +73585,22 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *385 - - *386 - - *255 - - *256 - - *257 - - *258 + - *407 + - *408 + - *276 + - *277 + - *278 + - *279 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *259 - - *260 - - *261 - - *262 + - *280 + - *281 + - *282 + - *283 - *91 - name: page description: "**Closing down notice**. Page number of the results to fetch. @@ -73527,8 +73620,8 @@ paths: default: 30 - *89 - *90 - - *263 - - *264 + - *284 + - *285 responses: '200': description: Response @@ -73536,7 +73629,7 @@ paths: application/json: schema: type: array - items: &527 + items: &549 type: object description: A Dependabot alert. properties: @@ -73582,7 +73675,7 @@ paths: - unknown - direct - transitive - security_advisory: *525 + security_advisory: *547 security_vulnerability: *107 url: *108 html_url: *109 @@ -73613,7 +73706,7 @@ paths: nullable: true maxLength: 280 fixed_at: *113 - auto_dismissed_at: *526 + auto_dismissed_at: *548 required: - number - state @@ -73843,9 +73936,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *385 - - *386 - - &528 + - *407 + - *408 + - &550 name: alert_number in: path description: |- @@ -73860,7 +73953,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *549 examples: default: value: @@ -73973,9 +74066,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *385 - - *386 - - *528 + - *407 + - *408 + - *550 requestBody: required: true content: @@ -74020,7 +74113,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *549 examples: default: value: @@ -74149,8 +74242,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -74168,7 +74261,7 @@ paths: type: integer secrets: type: array - items: &531 + items: &553 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -74221,16 +74314,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *529 + schema: *551 examples: - default: *530 + default: *552 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74250,15 +74343,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '200': description: Response content: application/json: - schema: *531 + schema: *553 examples: default: value: @@ -74284,9 +74377,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 requestBody: required: true content: @@ -74314,7 +74407,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -74338,9 +74431,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *385 - - *386 - - *214 + - *407 + - *408 + - *234 responses: '204': description: Response @@ -74362,8 +74455,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *385 - - *386 + - *407 + - *408 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -74523,8 +74616,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -74763,8 +74856,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -74839,7 +74932,7 @@ paths: - version - url additionalProperties: false - metadata: &532 + metadata: &554 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -74872,7 +74965,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *532 + metadata: *554 resolved: type: object description: A collection of resolved package dependencies. @@ -74885,7 +74978,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *532 + metadata: *554 relationship: type: string description: A notation of whether a dependency is requested @@ -75014,8 +75107,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *385 - - *386 + - *407 + - *408 - name: sha description: The SHA recorded at creation time. in: query @@ -75055,9 +75148,9 @@ paths: application/json: schema: type: array - items: *533 + items: *555 examples: - default: *534 + default: *556 headers: Link: *40 x-github: @@ -75123,8 +75216,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -75205,7 +75298,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *555 examples: simple-example: summary: Simple example @@ -75278,9 +75371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *385 - - *386 - - &535 + - *407 + - *408 + - &557 name: deployment_id description: deployment_id parameter in: path @@ -75292,7 +75385,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *555 examples: default: value: @@ -75357,9 +75450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *385 - - *386 - - *535 + - *407 + - *408 + - *557 responses: '204': description: Response @@ -75381,9 +75474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *385 - - *386 - - *535 + - *407 + - *408 + - *557 - *17 - *19 responses: @@ -75393,7 +75486,7 @@ paths: application/json: schema: type: array - items: &536 + items: &558 title: Deployment Status description: The status of a deployment. type: object @@ -75484,8 +75577,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 required: - id - node_id @@ -75554,9 +75647,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *385 - - *386 - - *535 + - *407 + - *408 + - *557 requestBody: required: true content: @@ -75631,9 +75724,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *558 examples: - default: &537 + default: &559 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -75689,9 +75782,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *385 - - *386 - - *535 + - *407 + - *408 + - *557 - name: status_id in: path required: true @@ -75702,9 +75795,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *558 examples: - default: *537 + default: *559 '404': *6 x-github: githubCloudOnly: false @@ -75731,12 +75824,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 - - *538 - - *539 - - *540 - - *541 + - *407 + - *408 + - *560 + - *561 + - *562 + - *563 - *17 - *19 responses: @@ -75746,9 +75839,9 @@ paths: application/json: schema: type: array - items: *542 + items: *564 examples: - default: *543 + default: *565 '404': *6 '403': *29 '500': *88 @@ -75772,8 +75865,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75785,7 +75878,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *542 + schema: *564 examples: default: value: @@ -75841,8 +75934,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75901,12 +75994,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 - - *227 - - *228 - - *229 - - *544 + - *407 + - *408 + - *247 + - *248 + - *249 + - *566 - *17 - *19 responses: @@ -75916,9 +76009,9 @@ paths: application/json: schema: type: array - items: *545 + items: *567 examples: - default: *546 + default: *568 '404': *6 '403': *29 '500': *88 @@ -75943,8 +76036,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75956,7 +76049,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *545 + schema: *567 examples: default: value: @@ -76014,8 +76107,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -76084,8 +76177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -76142,8 +76235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -76160,7 +76253,7 @@ paths: type: integer environments: type: array - items: &548 + items: &570 title: Environment description: Details of a deployment environment type: object @@ -76212,7 +76305,7 @@ paths: type: type: string example: wait_timer - wait_timer: &550 + wait_timer: &572 type: integer example: 30 description: The amount of time to delay a job after @@ -76249,11 +76342,11 @@ paths: items: type: object properties: - type: *547 + type: *569 reviewer: anyOf: - *4 - - *235 + - *255 required: - id - node_id @@ -76273,7 +76366,7 @@ paths: - id - node_id - type - deployment_branch_policy: &551 + deployment_branch_policy: &573 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -76389,9 +76482,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *385 - - *386 - - &549 + - *407 + - *408 + - &571 name: environment_name in: path required: true @@ -76404,9 +76497,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *570 examples: - default: &552 + default: &574 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -76490,9 +76583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 requestBody: required: false content: @@ -76501,7 +76594,7 @@ paths: type: object nullable: true properties: - wait_timer: *550 + wait_timer: *572 prevent_self_review: type: boolean example: false @@ -76518,13 +76611,13 @@ paths: items: type: object properties: - type: *547 + type: *569 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *551 + deployment_branch_policy: *573 additionalProperties: false examples: default: @@ -76544,9 +76637,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *570 examples: - default: *552 + default: *574 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -76570,9 +76663,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 responses: '204': description: Default response @@ -76597,9 +76690,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 - *17 - *19 responses: @@ -76617,7 +76710,7 @@ paths: example: 2 branch_policies: type: array - items: &553 + items: &575 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -76674,9 +76767,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 requestBody: required: true content: @@ -76722,9 +76815,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *575 examples: - example-wildcard: &554 + example-wildcard: &576 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -76766,10 +76859,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *385 - - *386 - - *549 - - &555 + - *407 + - *408 + - *571 + - &577 name: branch_policy_id in: path required: true @@ -76781,9 +76874,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *575 examples: - default: *554 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76802,10 +76895,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *385 - - *386 - - *549 - - *555 + - *407 + - *408 + - *571 + - *577 requestBody: required: true content: @@ -76833,9 +76926,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *575 examples: - default: *554 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76854,10 +76947,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *385 - - *386 - - *549 - - *555 + - *407 + - *408 + - *571 + - *577 responses: '204': description: Response @@ -76882,9 +76975,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *549 - - *386 - - *385 + - *571 + - *408 + - *407 responses: '200': description: List of deployment protection rules @@ -76900,7 +76993,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &556 + items: &578 title: Deployment protection rule description: Deployment protection rule type: object @@ -76919,7 +77012,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &557 + app: &579 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -77018,9 +77111,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *549 - - *386 - - *385 + - *571 + - *408 + - *407 requestBody: content: application/json: @@ -77041,9 +77134,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *556 + schema: *578 examples: - default: &558 + default: &580 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -77078,9 +77171,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *549 - - *386 - - *385 + - *571 + - *408 + - *407 - *19 - *17 responses: @@ -77099,7 +77192,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *557 + items: *579 examples: default: value: @@ -77134,10 +77227,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *385 - - *386 - - *549 - - &559 + - *407 + - *408 + - *571 + - &581 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -77149,9 +77242,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *578 examples: - default: *558 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77172,10 +77265,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *549 - - *386 - - *385 - - *559 + - *571 + - *408 + - *407 + - *581 responses: '204': description: Response @@ -77201,9 +77294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 - *17 - *19 responses: @@ -77221,9 +77314,9 @@ paths: type: integer secrets: type: array - items: *422 + items: *444 examples: - default: *423 + default: *445 headers: Link: *40 x-github: @@ -77248,17 +77341,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 responses: '200': description: Response content: application/json: - schema: *424 + schema: *446 examples: - default: *425 + default: *447 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77280,18 +77373,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *385 - - *386 - - *549 - - *214 + - *407 + - *408 + - *571 + - *234 responses: '200': description: Response content: application/json: - schema: *422 + schema: *444 examples: - default: *560 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77313,10 +77406,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *385 - - *386 - - *549 - - *214 + - *407 + - *408 + - *571 + - *234 requestBody: required: true content: @@ -77347,7 +77440,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -77373,10 +77466,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *385 - - *386 - - *549 - - *214 + - *407 + - *408 + - *571 + - *234 responses: '204': description: Default response @@ -77401,10 +77494,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *385 - - *386 - - *549 - - *409 + - *407 + - *408 + - *571 + - *431 - *19 responses: '200': @@ -77421,9 +77514,9 @@ paths: type: integer variables: type: array - items: *426 + items: *448 examples: - default: *427 + default: *449 headers: Link: *40 x-github: @@ -77446,9 +77539,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *385 - - *386 - - *549 + - *407 + - *408 + - *571 requestBody: required: true content: @@ -77475,7 +77568,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -77500,18 +77593,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *385 - - *386 - - *549 - - *217 + - *407 + - *408 + - *571 + - *237 responses: '200': description: Response content: application/json: - schema: *426 + schema: *448 examples: - default: *561 + default: *583 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77532,10 +77625,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *385 - - *386 - - *217 - - *549 + - *407 + - *408 + - *237 + - *571 requestBody: required: true content: @@ -77577,10 +77670,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *385 - - *386 - - *217 - - *549 + - *407 + - *408 + - *237 + - *571 responses: '204': description: Response @@ -77602,8 +77695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -77613,7 +77706,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: 200-response: value: @@ -77680,8 +77773,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *385 - - *386 + - *407 + - *408 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -77703,7 +77796,7 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: default: value: @@ -77840,8 +77933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -77873,9 +77966,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 + default: *422 '400': *14 '422': *15 '403': *29 @@ -77896,8 +77989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -77956,8 +78049,8 @@ paths: application/json: schema: oneOf: - - *187 - - *562 + - *207 + - *584 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77982,8 +78075,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *385 - - *386 + - *407 + - *408 - name: file_sha in: path required: true @@ -78082,8 +78175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -78192,7 +78285,7 @@ paths: description: Response content: application/json: - schema: &563 + schema: &585 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -78406,15 +78499,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *385 - - *386 - - *507 + - *407 + - *408 + - *529 responses: '200': description: Response content: application/json: - schema: *563 + schema: *585 examples: default: value: @@ -78470,9 +78563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *385 - - *386 - - &564 + - *407 + - *408 + - &586 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -78489,7 +78582,7 @@ paths: application/json: schema: type: array - items: &565 + items: &587 title: Git Reference description: Git references within a repository type: object @@ -78564,17 +78657,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *385 - - *386 - - *564 + - *407 + - *408 + - *586 responses: '200': description: Response content: application/json: - schema: *565 + schema: *587 examples: - default: &566 + default: &588 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -78603,8 +78696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -78633,9 +78726,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *587 examples: - default: *566 + default: *588 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -78661,9 +78754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *385 - - *386 - - *564 + - *407 + - *408 + - *586 requestBody: required: true content: @@ -78692,9 +78785,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *587 examples: - default: *566 + default: *588 '422': *15 '409': *99 x-github: @@ -78712,9 +78805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *385 - - *386 - - *564 + - *407 + - *408 + - *586 responses: '204': description: Response @@ -78769,8 +78862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -78837,7 +78930,7 @@ paths: description: Response content: application/json: - schema: &568 + schema: &590 title: Git Tag description: Metadata for a Git tag type: object @@ -78888,7 +78981,7 @@ paths: - sha - type - url - verification: *567 + verification: *589 required: - sha - url @@ -78898,7 +78991,7 @@ paths: - tag - message examples: - default: &569 + default: &591 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -78971,8 +79064,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *385 - - *386 + - *407 + - *408 - name: tag_sha in: path required: true @@ -78983,9 +79076,9 @@ paths: description: Response content: application/json: - schema: *568 + schema: *590 examples: - default: *569 + default: *591 '404': *6 '409': *99 x-github: @@ -79009,8 +79102,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -79083,7 +79176,7 @@ paths: description: Response content: application/json: - schema: &570 + schema: &592 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -79179,8 +79272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *385 - - *386 + - *407 + - *408 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -79203,7 +79296,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *592 examples: default-response: summary: Default response @@ -79262,8 +79355,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -79273,7 +79366,7 @@ paths: application/json: schema: type: array - items: &571 + items: &593 title: Webhook description: Webhooks for repositories. type: object @@ -79327,7 +79420,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &836 + last_response: &839 title: Hook Response type: object properties: @@ -79401,8 +79494,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -79454,9 +79547,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *593 examples: - default: &572 + default: &594 value: type: Repository id: 12345678 @@ -79504,17 +79597,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 responses: '200': description: Response content: application/json: - schema: *571 + schema: *593 examples: - default: *572 + default: *594 '404': *6 x-github: githubCloudOnly: false @@ -79534,9 +79627,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 requestBody: required: true content: @@ -79581,9 +79674,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *593 examples: - default: *572 + default: *594 '422': *15 '404': *6 x-github: @@ -79604,9 +79697,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 responses: '204': description: Response @@ -79630,9 +79723,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 responses: '200': description: Response @@ -79659,9 +79752,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 requestBody: required: false content: @@ -79705,11 +79798,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 - *17 - - *273 + - *294 responses: '200': description: Response @@ -79717,9 +79810,9 @@ paths: application/json: schema: type: array - items: *274 + items: *295 examples: - default: *275 + default: *296 '400': *14 '422': *15 x-github: @@ -79738,18 +79831,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 - *16 responses: '200': description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 '400': *14 '422': *15 x-github: @@ -79768,9 +79861,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 - *16 responses: '202': *39 @@ -79793,9 +79886,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 responses: '204': description: Response @@ -79820,9 +79913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *385 - - *386 - - *272 + - *407 + - *408 + - *293 responses: '204': description: Response @@ -79880,14 +79973,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: &573 + schema: &595 title: Import description: A repository import from an external source. type: object @@ -79986,7 +80079,7 @@ paths: - html_url - authors_url examples: - default: &576 + default: &598 value: vcs: subversion use_lfs: true @@ -80002,7 +80095,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &574 + '503': &596 description: Unavailable due to service under maintenance. content: application/json: @@ -80031,8 +80124,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -80080,7 +80173,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *595 examples: default: value: @@ -80105,7 +80198,7 @@ paths: type: string '422': *15 '404': *6 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80133,8 +80226,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -80183,7 +80276,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *595 examples: example-1: summary: Example 1 @@ -80231,7 +80324,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80254,12 +80347,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80285,9 +80378,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *385 - - *386 - - &779 + - *407 + - *408 + - &782 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -80301,7 +80394,7 @@ paths: application/json: schema: type: array - items: &575 + items: &597 title: Porter Author description: Porter Author type: object @@ -80355,7 +80448,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80380,8 +80473,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *385 - - *386 + - *407 + - *408 - name: author_id in: path required: true @@ -80411,7 +80504,7 @@ paths: description: Response content: application/json: - schema: *575 + schema: *597 examples: default: value: @@ -80424,7 +80517,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80448,8 +80541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -80490,7 +80583,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80518,8 +80611,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -80546,11 +80639,11 @@ paths: description: Response content: application/json: - schema: *573 + schema: *595 examples: - default: *576 + default: *598 '422': *15 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80573,8 +80666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -80582,8 +80675,8 @@ paths: application/json: schema: *22 examples: - default: *577 - '301': *399 + default: *599 + '301': *421 '404': *6 x-github: githubCloudOnly: false @@ -80603,8 +80696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -80612,12 +80705,12 @@ paths: application/json: schema: anyOf: - - *290 + - *311 - type: object properties: {} additionalProperties: false examples: - default: &579 + default: &601 value: limit: collaborators_only origin: repository @@ -80642,13 +80735,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: application/json: - schema: *578 + schema: *600 examples: default: summary: Example request body @@ -80660,9 +80753,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *311 examples: - default: *579 + default: *601 '409': description: Response x-github: @@ -80684,8 +80777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -80708,8 +80801,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -80719,9 +80812,9 @@ paths: application/json: schema: type: array - items: *580 + items: *602 examples: - default: &772 + default: &775 value: - id: 1 repository: @@ -80852,9 +80945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *385 - - *386 - - *294 + - *407 + - *408 + - *315 requestBody: required: false content: @@ -80883,7 +80976,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *602 examples: default: value: @@ -81014,9 +81107,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *385 - - *386 - - *294 + - *407 + - *408 + - *315 responses: '204': description: Response @@ -81047,8 +81140,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *385 - - *386 + - *407 + - *408 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -81096,7 +81189,7 @@ paths: required: false schema: type: string - - *298 + - *319 - name: sort description: What to sort results by. in: query @@ -81109,7 +81202,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - *17 - *19 responses: @@ -81119,9 +81212,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: &591 + default: &613 value: - id: 1 node_id: MDU6SXNzdWUx @@ -81269,7 +81362,7 @@ paths: state_reason: completed headers: Link: *40 - '301': *399 + '301': *421 '422': *15 '404': *6 x-github: @@ -81298,8 +81391,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -81381,9 +81474,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: &586 + default: &608 value: id: 1 node_id: MDU6SXNzdWUx @@ -81537,9 +81630,9 @@ paths: '400': *14 '403': *29 '422': *15 - '503': *137 + '503': *157 '404': *6 - '410': *396 + '410': *418 x-github: triggersNotification: true githubCloudOnly: false @@ -81567,9 +81660,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *385 - - *386 - - *170 + - *407 + - *408 + - *190 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. in: query @@ -81579,7 +81672,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -81589,9 +81682,9 @@ paths: application/json: schema: type: array - items: *581 + items: *603 examples: - default: &588 + default: &610 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81649,17 +81742,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '200': description: Response content: application/json: - schema: *581 + schema: *603 examples: - default: &582 + default: &604 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81713,9 +81806,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -81737,9 +81830,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *603 examples: - default: *582 + default: *604 '422': *15 x-github: githubCloudOnly: false @@ -81757,9 +81850,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '204': description: Response @@ -81779,9 +81872,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue comment. @@ -81807,9 +81900,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -81830,9 +81923,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -81864,16 +81957,16 @@ paths: description: Reaction exists content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Reaction created content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -81895,10 +81988,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *385 - - *386 - - *159 - - *377 + - *407 + - *408 + - *179 + - *399 responses: '204': description: Response @@ -81918,8 +82011,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -81929,7 +82022,7 @@ paths: application/json: schema: type: array - items: &585 + items: &607 title: Issue Event description: Issue Event type: object @@ -81972,8 +82065,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *583 - required: *584 + properties: *605 + required: *606 nullable: true label: title: Issue Event Label @@ -82017,7 +82110,7 @@ paths: properties: *20 required: *21 nullable: true - requested_team: *235 + requested_team: *255 dismissed_review: title: Issue Event Dismissed Review type: object @@ -82082,7 +82175,7 @@ paths: required: - from - to - author_association: *147 + author_association: *167 lock_reason: type: string nullable: true @@ -82095,8 +82188,8 @@ paths: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 required: - id - node_id @@ -82280,8 +82373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *385 - - *386 + - *407 + - *408 - name: event_id in: path required: true @@ -82292,7 +82385,7 @@ paths: description: Response content: application/json: - schema: *585 + schema: *607 examples: default: value: @@ -82485,7 +82578,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *396 + '410': *418 '403': *29 x-github: githubCloudOnly: false @@ -82519,9 +82612,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *385 - - *386 - - &587 + - *407 + - *408 + - &609 name: issue_number description: The number that identifies the issue. in: path @@ -82533,12 +82626,12 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 - '301': *399 + default: *608 + '301': *421 '404': *6 - '410': *396 + '410': *418 '304': *37 x-github: githubCloudOnly: false @@ -82563,9 +82656,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: false content: @@ -82669,15 +82762,15 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 '422': *15 - '503': *137 + '503': *157 '403': *29 - '301': *399 + '301': *421 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82695,9 +82788,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: false content: @@ -82723,9 +82816,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82741,9 +82834,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: content: application/json: @@ -82768,9 +82861,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82792,9 +82885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - name: assignee in: path required: true @@ -82834,10 +82927,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *385 - - *386 - - *587 - - *150 + - *407 + - *408 + - *609 + - *170 - *17 - *19 responses: @@ -82847,13 +82940,13 @@ paths: application/json: schema: type: array - items: *581 + items: *603 examples: - default: *588 + default: *610 headers: Link: *40 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82882,9 +82975,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: true content: @@ -82906,16 +82999,16 @@ paths: description: Response content: application/json: - schema: *581 + schema: *603 examples: - default: *582 + default: *604 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *396 + '410': *418 '422': *15 '404': *6 x-github: @@ -82935,9 +83028,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - *17 - *19 responses: @@ -82951,7 +83044,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &592 + - &614 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -82982,8 +83075,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 label: type: object properties: @@ -83005,7 +83098,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &593 + - &615 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -83036,8 +83129,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 label: type: object properties: @@ -83125,8 +83218,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 assignee: *4 assigner: *4 required: @@ -83141,7 +83234,7 @@ paths: - performed_via_github_app - assignee - assigner - - &594 + - &616 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -83172,8 +83265,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 milestone: type: object properties: @@ -83192,7 +83285,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &595 + - &617 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -83223,8 +83316,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 milestone: type: object properties: @@ -83243,7 +83336,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &596 + - &618 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -83274,8 +83367,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 rename: type: object properties: @@ -83297,7 +83390,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &597 + - &619 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -83328,10 +83421,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 review_requester: *4 - requested_team: *235 + requested_team: *255 requested_reviewer: *4 required: - review_requester @@ -83344,7 +83437,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &598 + - &620 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -83375,10 +83468,10 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 review_requester: *4 - requested_team: *235 + requested_team: *255 requested_reviewer: *4 required: - review_requester @@ -83391,7 +83484,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &599 + - &621 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -83422,8 +83515,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 dismissed_review: type: object properties: @@ -83451,7 +83544,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &600 + - &622 title: Locked Issue Event description: Locked Issue Event type: object @@ -83482,8 +83575,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 lock_reason: type: string example: '"off-topic"' @@ -83499,7 +83592,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &601 + - &623 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -83530,8 +83623,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 project_card: type: object properties: @@ -83565,7 +83658,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &602 + - &624 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -83596,8 +83689,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 project_card: type: object properties: @@ -83631,7 +83724,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &603 + - &625 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -83662,8 +83755,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 project_card: type: object properties: @@ -83697,7 +83790,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &604 + - &626 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -83788,7 +83881,7 @@ paths: color: red headers: Link: *40 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83805,9 +83898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - *17 - *19 responses: @@ -83817,7 +83910,7 @@ paths: application/json: schema: type: array - items: &589 + items: &611 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -83864,7 +83957,7 @@ paths: - color - default examples: - default: &590 + default: &612 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83882,9 +83975,9 @@ paths: default: false headers: Link: *40 - '301': *399 + '301': *421 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83901,9 +83994,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: false content: @@ -83962,12 +84055,12 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 - '301': *399 + default: *612 + '301': *421 '404': *6 - '410': *396 + '410': *418 '422': *15 x-github: githubCloudOnly: false @@ -83984,9 +84077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: false content: @@ -84046,12 +84139,12 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 - '301': *399 + default: *612 + '301': *421 '404': *6 - '410': *396 + '410': *418 '422': *15 x-github: githubCloudOnly: false @@ -84068,15 +84161,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 responses: '204': description: Response - '301': *399 + '301': *421 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84095,9 +84188,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - name: name in: path required: true @@ -84110,7 +84203,7 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: default: value: @@ -84121,9 +84214,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *399 + '301': *421 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84143,9 +84236,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: false content: @@ -84173,7 +84266,7 @@ paths: '204': description: Response '403': *29 - '410': *396 + '410': *418 '404': *6 '422': *15 x-github: @@ -84191,9 +84284,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 responses: '204': description: Response @@ -84215,9 +84308,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -84243,13 +84336,13 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84267,9 +84360,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: true content: @@ -84301,16 +84394,16 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -84332,10 +84425,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *385 - - *386 - - *587 - - *377 + - *407 + - *408 + - *609 + - *399 responses: '204': description: Response @@ -84364,9 +84457,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: true content: @@ -84388,9 +84481,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -84410,11 +84503,11 @@ paths: description: |- You can use the REST API to list the sub-issues on an issue. - This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + This endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types). - - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. - - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. - - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`. - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. tags: - issues @@ -84423,9 +84516,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - *17 - *19 responses: @@ -84435,13 +84528,13 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: *591 + default: *613 headers: Link: *40 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84469,9 +84562,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: true content: @@ -84498,16 +84591,16 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *396 + '410': *418 '422': *15 '404': *6 x-github: @@ -84527,9 +84620,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 requestBody: required: true content: @@ -84560,13 +84653,13 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 '403': *29 '404': *6 '422': *7 - '503': *137 + '503': *157 x-github: triggersNotification: true githubCloudOnly: false @@ -84584,9 +84677,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *385 - - *386 - - *587 + - *407 + - *408 + - *609 - *17 - *19 responses: @@ -84601,19 +84694,19 @@ paths: description: Timeline Event type: object anyOf: - - *592 - - *593 - - *594 - - *595 - - *596 - - *597 - - *598 - - *599 - - *600 - - *601 - - *602 - - *603 - - *604 + - *614 + - *615 + - *616 + - *617 + - *618 + - *619 + - *620 + - *621 + - *622 + - *623 + - *624 + - *625 + - *626 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -84656,7 +84749,7 @@ paths: issue_url: type: string format: uri - author_association: *147 + author_association: *167 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. They @@ -84666,9 +84759,9 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 - reactions: *148 + properties: *165 + required: *166 + reactions: *168 required: - event - actor @@ -84699,7 +84792,7 @@ paths: properties: type: type: string - issue: *160 + issue: *180 required: - event - created_at @@ -84895,7 +84988,7 @@ paths: type: string body_text: type: string - author_association: *147 + author_association: *167 required: - event - id @@ -84918,7 +85011,7 @@ paths: type: string comments: type: array - items: &625 + items: &647 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -85007,7 +85100,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *147 + author_association: *167 _links: type: object properties: @@ -85091,7 +85184,7 @@ paths: enum: - line - file - reactions: *148 + reactions: *168 body_html: type: string example: '"

comment body

"' @@ -85127,7 +85220,7 @@ paths: type: string comments: type: array - items: *505 + items: *527 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -85158,8 +85251,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 assignee: *4 required: - id @@ -85202,8 +85295,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 assignee: *4 required: - id @@ -85246,8 +85339,8 @@ paths: are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 state_reason: type: string nullable: true @@ -85416,7 +85509,7 @@ paths: headers: Link: *40 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85433,8 +85526,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -85444,7 +85537,7 @@ paths: application/json: schema: type: array - items: &605 + items: &627 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -85509,8 +85602,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -85546,9 +85639,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *627 examples: - default: &606 + default: &628 value: id: 1 key: ssh-rsa AAA... @@ -85582,9 +85675,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *385 - - *386 - - &607 + - *407 + - *408 + - &629 name: key_id description: The unique identifier of the key. in: path @@ -85596,9 +85689,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *627 examples: - default: *606 + default: *628 '404': *6 x-github: githubCloudOnly: false @@ -85616,9 +85709,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *385 - - *386 - - *607 + - *407 + - *408 + - *629 responses: '204': description: Response @@ -85638,8 +85731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -85649,9 +85742,9 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 + default: *612 headers: Link: *40 '404': *6 @@ -85672,8 +85765,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -85709,9 +85802,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: - default: &608 + default: &630 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -85743,8 +85836,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *385 - - *386 + - *407 + - *408 - name: name in: path required: true @@ -85755,9 +85848,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: - default: *608 + default: *630 '404': *6 x-github: githubCloudOnly: false @@ -85774,8 +85867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *385 - - *386 + - *407 + - *408 - name: name in: path required: true @@ -85814,7 +85907,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: default: value: @@ -85840,8 +85933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *385 - - *386 + - *407 + - *408 - name: name in: path required: true @@ -85867,8 +85960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -85904,8 +85997,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '202': *39 '403': @@ -85933,8 +86026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -85960,9 +86053,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *385 - - *386 - - *481 + - *407 + - *408 + - *503 responses: '200': description: Response @@ -86024,8 +86117,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true required: - _links @@ -86107,8 +86200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -86173,8 +86266,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -86208,9 +86301,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *506 + schema: *528 examples: - default: *609 + default: *631 '204': description: Response when already merged '404': @@ -86235,8 +86328,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *385 - - *386 + - *407 + - *408 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -86277,12 +86370,12 @@ paths: application/json: schema: type: array - items: &610 + items: &632 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *510 - required: *511 + properties: *532 + required: *533 examples: default: value: @@ -86338,8 +86431,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -86379,9 +86472,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *632 examples: - default: &611 + default: &633 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -86440,9 +86533,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *385 - - *386 - - &612 + - *407 + - *408 + - &634 name: milestone_number description: The number that identifies the milestone. in: path @@ -86454,9 +86547,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *632 examples: - default: *611 + default: *633 '404': *6 x-github: githubCloudOnly: false @@ -86473,9 +86566,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *385 - - *386 - - *612 + - *407 + - *408 + - *634 requestBody: required: false content: @@ -86513,9 +86606,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *632 examples: - default: *611 + default: *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86531,9 +86624,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *385 - - *386 - - *612 + - *407 + - *408 + - *634 responses: '204': description: Response @@ -86554,9 +86647,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *385 - - *386 - - *612 + - *407 + - *408 + - *634 - *17 - *19 responses: @@ -86566,9 +86659,9 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 + default: *612 headers: Link: *40 x-github: @@ -86587,12 +86680,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *385 - - *386 - - *613 - - *614 - - *150 - - *615 + - *407 + - *408 + - *635 + - *636 + - *170 + - *637 - *17 - *19 responses: @@ -86602,9 +86695,9 @@ paths: application/json: schema: type: array - items: *173 + items: *193 examples: - default: *616 + default: *638 headers: Link: *40 x-github: @@ -86628,8 +86721,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -86687,14 +86780,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: &617 + schema: &639 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -86819,7 +86912,7 @@ paths: - custom_404 - public examples: - default: &618 + default: &640 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -86860,8 +86953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -86915,9 +87008,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *639 examples: - default: *618 + default: *640 '422': *15 '409': *99 x-github: @@ -86940,8 +87033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -87048,8 +87141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -87075,8 +87168,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -87086,7 +87179,7 @@ paths: application/json: schema: type: array - items: &619 + items: &641 title: Page Build description: Page Build type: object @@ -87180,8 +87273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *385 - - *386 + - *407 + - *408 responses: '201': description: Response @@ -87226,16 +87319,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *619 + schema: *641 examples: - default: &620 + default: &642 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -87283,8 +87376,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *385 - - *386 + - *407 + - *408 - name: build_id in: path required: true @@ -87295,9 +87388,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *641 examples: - default: *620 + default: *642 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87317,8 +87410,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -87423,9 +87516,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *385 - - *386 - - &621 + - *407 + - *408 + - &643 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -87483,9 +87576,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *385 - - *386 - - *621 + - *407 + - *408 + - *643 responses: '204': *123 '404': *6 @@ -87512,8 +87605,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -87744,7 +87837,7 @@ paths: description: Empty response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -87771,8 +87864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Private vulnerability reporting status @@ -87809,8 +87902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': *123 '422': *14 @@ -87831,8 +87924,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': *123 '422': *14 @@ -87855,8 +87948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-repository-projects parameters: - - *385 - - *386 + - *407 + - *408 - name: state description: Indicates the state of the projects to return. in: query @@ -87877,7 +87970,7 @@ paths: application/json: schema: type: array - items: *329 + items: *350 examples: default: value: @@ -87917,7 +88010,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *396 + '410': *418 '422': *7 x-github: githubCloudOnly: false @@ -87940,8 +88033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -87967,13 +88060,13 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: - default: *395 + default: *417 '401': *25 '403': *29 '404': *6 - '410': *396 + '410': *418 '422': *7 x-github: githubCloudOnly: false @@ -87996,8 +88089,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -88005,7 +88098,7 @@ paths: application/json: schema: type: array - items: *331 + items: *352 examples: default: value: @@ -88036,8 +88129,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -88049,7 +88142,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *331 + items: *352 required: - properties examples: @@ -88099,8 +88192,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -88160,9 +88253,9 @@ paths: application/json: schema: type: array - items: *622 + items: *644 examples: - default: *623 + default: *645 headers: Link: *40 '304': *37 @@ -88194,8 +88287,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -88260,7 +88353,7 @@ paths: description: Response content: application/json: - schema: &627 + schema: &649 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -88371,8 +88464,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *510 - required: *511 + properties: *532 + required: *533 nullable: true active_lock_reason: type: string @@ -88417,7 +88510,7 @@ paths: nullable: true requested_teams: type: array - items: *352 + items: *374 nullable: true head: type: object @@ -88456,14 +88549,14 @@ paths: _links: type: object properties: - comments: *512 - commits: *512 - statuses: *512 - html: *512 - issue: *512 - review_comments: *512 - review_comment: *512 - self: *512 + comments: *534 + commits: *534 + statuses: *534 + html: *534 + issue: *534 + review_comments: *534 + review_comment: *534 + self: *534 required: - comments - commits @@ -88473,8 +88566,8 @@ paths: - review_comments - review_comment - self - author_association: *147 - auto_merge: *624 + author_association: *167 + auto_merge: *646 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -88566,7 +88659,7 @@ paths: - merged_by - review_comments examples: - default: &628 + default: &650 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -89093,8 +89186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: sort in: query required: false @@ -89113,7 +89206,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -89123,9 +89216,9 @@ paths: application/json: schema: type: array - items: *625 + items: *647 examples: - default: &630 + default: &652 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -89202,17 +89295,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '200': description: Response content: application/json: - schema: *625 + schema: *647 examples: - default: &626 + default: &648 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -89287,9 +89380,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -89311,9 +89404,9 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: - default: *626 + default: *648 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89329,9 +89422,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 responses: '204': description: Response @@ -89352,9 +89445,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a pull request review comment. @@ -89380,9 +89473,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -89403,9 +89496,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *385 - - *386 - - *159 + - *407 + - *408 + - *179 requestBody: required: true content: @@ -89437,16 +89530,16 @@ paths: description: Reaction exists content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Reaction created content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -89468,10 +89561,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *385 - - *386 - - *159 - - *377 + - *407 + - *408 + - *179 + - *399 responses: '204': description: Response @@ -89514,9 +89607,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *385 - - *386 - - &629 + - *407 + - *408 + - &651 name: pull_number description: The number that identifies the pull request. in: path @@ -89529,9 +89622,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *627 + schema: *649 examples: - default: *628 + default: *650 '304': *37 '404': *6 '406': @@ -89540,7 +89633,7 @@ paths: application/json: schema: *3 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89566,9 +89659,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: false content: @@ -89610,9 +89703,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *649 examples: - default: *628 + default: *650 '422': *15 '403': *29 x-github: @@ -89634,9 +89727,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: true content: @@ -89696,21 +89789,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '401': *25 '403': *29 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89736,10 +89829,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *385 - - *386 - - *629 - - *170 + - *407 + - *408 + - *651 + - *190 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -89749,7 +89842,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -89759,9 +89852,9 @@ paths: application/json: schema: type: array - items: *625 + items: *647 examples: - default: *630 + default: *652 headers: Link: *40 x-github: @@ -89794,9 +89887,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: true content: @@ -89901,7 +89994,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: example-for-a-multi-line-comment: value: @@ -89989,10 +90082,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *385 - - *386 - - *629 - - *159 + - *407 + - *408 + - *651 + - *179 requestBody: required: true content: @@ -90014,7 +90107,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: default: value: @@ -90100,9 +90193,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 - *17 - *19 responses: @@ -90112,9 +90205,9 @@ paths: application/json: schema: type: array - items: *506 + items: *528 examples: - default: *631 + default: *653 headers: Link: *40 x-github: @@ -90144,9 +90237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 - *17 - *19 responses: @@ -90156,7 +90249,7 @@ paths: application/json: schema: type: array - items: *521 + items: *543 examples: default: value: @@ -90175,7 +90268,7 @@ paths: Link: *40 '422': *15 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90194,9 +90287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 responses: '204': description: Response if pull request has been merged @@ -90219,9 +90312,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: false content: @@ -90332,9 +90425,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 responses: '200': description: Response @@ -90350,7 +90443,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 required: - users - teams @@ -90409,9 +90502,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: false content: @@ -90448,7 +90541,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *644 examples: default: value: @@ -90984,9 +91077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: true content: @@ -91020,7 +91113,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *644 examples: default: value: @@ -91525,9 +91618,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 - *17 - *19 responses: @@ -91537,7 +91630,7 @@ paths: application/json: schema: type: array - items: &632 + items: &654 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -91606,7 +91699,7 @@ paths: type: string body_text: type: string - author_association: *147 + author_association: *167 required: - id - node_id @@ -91688,9 +91781,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: false content: @@ -91776,9 +91869,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: &634 + default: &656 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91841,10 +91934,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 - - &633 + - *407 + - *408 + - *651 + - &655 name: review_id description: The unique identifier of the review. in: path @@ -91856,9 +91949,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: &635 + default: &657 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91917,10 +92010,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 - - *633 + - *407 + - *408 + - *651 + - *655 requestBody: required: true content: @@ -91943,7 +92036,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: default: value: @@ -92005,18 +92098,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 - - *633 + - *407 + - *408 + - *651 + - *655 responses: '200': description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: *634 + default: *656 '422': *7 '404': *6 x-github: @@ -92043,10 +92136,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *385 - - *386 - - *629 - - *633 + - *407 + - *408 + - *651 + - *655 - *17 - *19 responses: @@ -92125,13 +92218,13 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/pulls/1 - author_association: *147 + author_association: *167 _links: type: object properties: - self: *512 - html: *512 - pull_request: *512 + self: *534 + html: *534 + pull_request: *534 required: - self - html @@ -92140,7 +92233,7 @@ paths: type: string body_html: type: string - reactions: *148 + reactions: *168 side: description: The side of the first line of the range for a multi-line comment. @@ -92281,10 +92374,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 - - *633 + - *407 + - *408 + - *651 + - *655 requestBody: required: true content: @@ -92312,7 +92405,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: default: value: @@ -92375,10 +92468,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *385 - - *386 - - *629 - - *633 + - *407 + - *408 + - *651 + - *655 requestBody: required: true content: @@ -92413,9 +92506,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: *635 + default: *657 '404': *6 '422': *7 '403': *29 @@ -92437,9 +92530,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *385 - - *386 - - *629 + - *407 + - *408 + - *651 requestBody: required: false content: @@ -92502,8 +92595,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *385 - - *386 + - *407 + - *408 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -92516,9 +92609,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *658 examples: - default: &637 + default: &659 value: type: file encoding: base64 @@ -92560,8 +92653,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *385 - - *386 + - *407 + - *408 - name: dir description: The alternate path to look for a README file in: path @@ -92581,9 +92674,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *658 examples: - default: *637 + default: *659 '404': *6 '422': *15 x-github: @@ -92605,8 +92698,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -92616,7 +92709,7 @@ paths: application/json: schema: type: array - items: &638 + items: &660 title: Release description: A release. type: object @@ -92683,7 +92776,7 @@ paths: author: *4 assets: type: array - items: &639 + items: &661 title: Release Asset description: Data related to a release. type: object @@ -92758,7 +92851,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *148 + reactions: *168 required: - assets_url - upload_url @@ -92870,8 +92963,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -92947,9 +93040,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *660 examples: - default: &642 + default: &664 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -93054,9 +93147,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *385 - - *386 - - &640 + - *407 + - *408 + - &662 name: asset_id description: The unique identifier of the asset. in: path @@ -93068,9 +93161,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *661 examples: - default: &641 + default: &663 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -93105,7 +93198,7 @@ paths: type: User site_admin: false '404': *6 - '302': *523 + '302': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93121,9 +93214,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *385 - - *386 - - *640 + - *407 + - *408 + - *662 requestBody: required: false content: @@ -93151,9 +93244,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *661 examples: - default: *641 + default: *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93169,9 +93262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *385 - - *386 - - *640 + - *407 + - *408 + - *662 responses: '204': description: Response @@ -93195,8 +93288,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -93281,16 +93374,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response content: application/json: - schema: *638 + schema: *660 examples: - default: *642 + default: *664 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93307,8 +93400,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *385 - - *386 + - *407 + - *408 - name: tag description: tag parameter in: path @@ -93321,9 +93414,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *660 examples: - default: *642 + default: *664 '404': *6 x-github: githubCloudOnly: false @@ -93345,9 +93438,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *385 - - *386 - - &643 + - *407 + - *408 + - &665 name: release_id description: The unique identifier of the release. in: path @@ -93361,9 +93454,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *638 + schema: *660 examples: - default: *642 + default: *664 '401': description: Unauthorized x-github: @@ -93381,9 +93474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 requestBody: required: false content: @@ -93447,9 +93540,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *660 examples: - default: *642 + default: *664 '404': description: Not Found if the discussion category name is invalid content: @@ -93470,9 +93563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 responses: '204': description: Response @@ -93492,9 +93585,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 - *17 - *19 responses: @@ -93504,7 +93597,7 @@ paths: application/json: schema: type: array - items: *639 + items: *661 examples: default: value: @@ -93586,9 +93679,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 - name: name in: query required: true @@ -93614,7 +93707,7 @@ paths: description: Response for successful upload content: application/json: - schema: *639 + schema: *661 examples: response-for-successful-upload: value: @@ -93669,9 +93762,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -93695,9 +93788,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -93718,9 +93811,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *385 - - *386 - - *643 + - *407 + - *408 + - *665 requestBody: required: true content: @@ -93750,16 +93843,16 @@ paths: description: Reaction exists content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '201': description: Reaction created content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -93781,10 +93874,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *385 - - *386 - - *643 - - *377 + - *407 + - *408 + - *665 + - *399 responses: '204': description: Response @@ -93808,9 +93901,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *385 - - *386 - - *444 + - *407 + - *408 + - *466 - *17 - *19 responses: @@ -93826,8 +93919,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *644 - - &646 + - *132 + - &666 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -93847,65 +93940,65 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *645 - - *646 + - *133 + - *666 - allOf: - - *647 - - *646 + - *134 + - *666 - allOf: - - *648 - - *646 + - *135 + - *666 - allOf: - - *649 - - *646 + - *667 + - *666 - allOf: - - *650 - - *646 + - *136 + - *666 - allOf: - - *651 - - *646 + - *137 + - *666 - allOf: - - *652 - - *646 + - *138 + - *666 - allOf: - - *653 - - *646 + - *139 + - *666 - allOf: - - *654 - - *646 + - *140 + - *666 - allOf: - - *655 - - *646 + - *141 + - *666 - allOf: - - *656 - - *646 + - *142 + - *666 - allOf: - - *657 - - *646 + - *143 + - *666 - allOf: - - *658 - - *646 + - *144 + - *666 - allOf: - - *659 - - *646 + - *145 + - *666 - allOf: - - *660 - - *646 + - *146 + - *666 - allOf: - - *661 - - *646 + - *147 + - *666 - allOf: - - *662 - - *646 + - *148 + - *666 - allOf: - - *663 - - *646 + - *149 + - *666 - allOf: - - *664 - - *646 + - *150 + - *666 - allOf: - - *665 - - *646 + - *151 + - *666 examples: default: value: @@ -93944,8 +94037,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 - name: includes_parents @@ -93956,7 +94049,7 @@ paths: schema: type: boolean default: true - - *666 + - *668 responses: '200': description: Response @@ -93964,7 +94057,7 @@ paths: application/json: schema: type: array - items: *133 + items: *152 examples: default: value: @@ -94011,8 +94104,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 requestBody: description: Request body required: true @@ -94041,7 +94134,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *132 + items: *669 required: - name - enforcement @@ -94072,9 +94165,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: &675 + default: &678 value: id: 42 name: super cool ruleset @@ -94121,12 +94214,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *385 - - *386 - - *667 - - *229 - - *668 - - *669 + - *407 + - *408 + - *670 + - *249 + - *671 + - *672 - *17 - *19 responses: @@ -94134,9 +94227,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *673 examples: - default: *671 + default: *674 '404': *6 '500': *88 x-github: @@ -94157,17 +94250,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *385 - - *386 - - *672 + - *407 + - *408 + - *675 responses: '200': description: Response content: application/json: - schema: *673 + schema: *676 examples: - default: *674 + default: *677 '404': *6 '500': *88 x-github: @@ -94195,8 +94288,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94216,9 +94309,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *675 + default: *678 '404': *6 '500': *88 put: @@ -94236,8 +94329,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94271,7 +94364,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *132 + items: *669 examples: default: value: @@ -94299,9 +94392,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *675 + default: *678 '404': *6 '500': *88 delete: @@ -94319,8 +94412,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94343,8 +94436,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 - name: ruleset_id @@ -94360,9 +94453,9 @@ paths: application/json: schema: type: array - items: *136 + items: *156 examples: - default: *339 + default: *361 '404': *6 '500': *88 x-github: @@ -94381,8 +94474,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94400,7 +94493,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *362 examples: default: value: @@ -94455,21 +94548,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *385 - - *386 - - *341 - - *342 - - *343 - - *344 + - *407 + - *408 + - *363 + - *364 + - *365 + - *366 - *91 - *19 - *17 - - *676 - - *677 - - *345 - - *346 - - *347 - - *348 + - *679 + - *680 + - *367 + - *368 + - *369 + - *370 responses: '200': description: Response @@ -94477,7 +94570,7 @@ paths: application/json: schema: type: array - items: &681 + items: &684 type: object properties: number: *103 @@ -94496,8 +94589,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *678 - resolution: *679 + state: *681 + resolution: *682 resolved_at: type: string format: date-time @@ -94593,7 +94686,7 @@ paths: pull request. ' - oneOf: *680 + oneOf: *683 nullable: true has_more_locations: type: boolean @@ -94721,7 +94814,7 @@ paths: '404': description: Repository is public or secret scanning is disabled for the repository - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94743,16 +94836,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *385 - - *386 - - *475 - - *348 + - *407 + - *408 + - *497 + - *370 responses: '200': description: Response content: application/json: - schema: *681 + schema: *684 examples: default: value: @@ -94783,7 +94876,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94804,9 +94897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 requestBody: required: true content: @@ -94814,8 +94907,8 @@ paths: schema: type: object properties: - state: *678 - resolution: *679 + state: *681 + resolution: *682 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -94833,7 +94926,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *684 examples: default: value: @@ -94886,7 +94979,7 @@ paths: repository, or the resource is not found '422': description: State does not match the resolution or resolution comment - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -94908,9 +95001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *385 - - *386 - - *475 + - *407 + - *408 + - *497 - *19 - *17 responses: @@ -94921,7 +95014,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &857 + items: &860 type: object properties: type: @@ -94947,9 +95040,6 @@ paths: example: commit details: oneOf: - - *682 - - *683 - - *684 - *685 - *686 - *687 @@ -94960,6 +95050,9 @@ paths: - *692 - *693 - *694 + - *695 + - *696 + - *697 examples: default: value: @@ -95023,7 +95116,7 @@ paths: '404': description: Repository is public, or secret scanning is disabled for the repository, or the resource is not found - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95045,8 +95138,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -95054,14 +95147,14 @@ paths: schema: type: object properties: - reason: &696 + reason: &699 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *695 + placeholder_id: *698 required: - reason - placeholder_id @@ -95078,7 +95171,7 @@ paths: schema: type: object properties: - reason: *696 + reason: *699 expire_at: type: string format: date-time @@ -95101,7 +95194,7 @@ paths: this repository. '422': description: Bad request, input data missing or incorrect. - '503': *137 + '503': *157 x-github: enabledForGitHubApps: true githubCloudOnly: false @@ -95121,13 +95214,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '404': description: Repository does not have GitHub Advanced Security or secret scanning enabled - '503': *137 + '503': *157 '200': description: Response content: @@ -95137,7 +95230,7 @@ paths: properties: incremental_scans: type: array - items: &697 + items: &700 description: Information on a single scan performed by secret scanning on the repository type: object @@ -95163,15 +95256,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *697 + items: *700 backfill_scans: type: array - items: *697 + items: *700 custom_pattern_backfill_scans: type: array items: allOf: - - *697 + - *700 - type: object properties: pattern_name: @@ -95241,8 +95334,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *385 - - *386 + - *407 + - *408 - *91 - name: sort description: The property to sort the results by. @@ -95286,9 +95379,9 @@ paths: application/json: schema: type: array - items: *698 + items: *701 examples: - default: *699 + default: *702 '400': *14 '404': *6 x-github: @@ -95311,8 +95404,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -95385,7 +95478,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 required: - login - type @@ -95472,9 +95565,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *701 examples: - default: &701 + default: &704 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -95707,8 +95800,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -95812,7 +95905,7 @@ paths: description: Response content: application/json: - schema: *698 + schema: *701 examples: default: value: @@ -95959,17 +96052,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *385 - - *386 - - *700 + - *407 + - *408 + - *703 responses: '200': description: Response content: application/json: - schema: *698 + schema: *701 examples: - default: *701 + default: *704 '403': *29 '404': *6 x-github: @@ -95993,9 +96086,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *385 - - *386 - - *700 + - *407 + - *408 + - *703 requestBody: required: true content: @@ -96068,7 +96161,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 required: - login - type @@ -96154,17 +96247,17 @@ paths: description: Response content: application/json: - schema: *698 + schema: *701 examples: - default: *701 - add_credit: *701 + default: *704 + add_credit: *704 '403': *29 '404': *6 '422': description: Validation failed, or the endpoint has been spammed. content: application/json: - schema: *187 + schema: *207 examples: invalid_state_transition: value: @@ -96195,9 +96288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *385 - - *386 - - *700 + - *407 + - *408 + - *703 responses: '202': *39 '400': *14 @@ -96224,17 +96317,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *385 - - *386 - - *700 + - *407 + - *408 + - *703 responses: '202': description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 + default: *422 '400': *14 '422': *15 '403': *29 @@ -96260,8 +96353,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -96360,8 +96453,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -96370,7 +96463,7 @@ paths: application/json: schema: type: array - items: &702 + items: &705 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -96403,8 +96496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -96480,8 +96573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -96577,8 +96670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -96732,8 +96825,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -96743,7 +96836,7 @@ paths: application/json: schema: type: array - items: *702 + items: *705 examples: default: value: @@ -96776,8 +96869,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *385 - - *386 + - *407 + - *408 - name: sha in: path required: true @@ -96831,7 +96924,7 @@ paths: description: Response content: application/json: - schema: *703 + schema: *706 examples: default: value: @@ -96885,8 +96978,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -96898,7 +96991,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -96918,14 +97011,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &704 + schema: &707 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -96993,8 +97086,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: false content: @@ -97020,7 +97113,7 @@ paths: description: Response content: application/json: - schema: *704 + schema: *707 examples: default: value: @@ -97047,8 +97140,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -97068,8 +97161,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -97148,8 +97241,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -97157,7 +97250,7 @@ paths: application/json: schema: type: array - items: &705 + items: &708 title: Tag protection description: Tag protection type: object @@ -97209,8 +97302,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -97233,7 +97326,7 @@ paths: description: Response content: application/json: - schema: *705 + schema: *708 examples: default: value: @@ -97264,8 +97357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -97302,8 +97395,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *385 - - *386 + - *407 + - *408 - name: ref in: path required: true @@ -97339,8 +97432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -97350,9 +97443,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 headers: Link: *40 '404': *6 @@ -97372,8 +97465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *385 - - *386 + - *407 + - *408 - *19 - *17 responses: @@ -97381,7 +97474,7 @@ paths: description: Response content: application/json: - schema: &706 + schema: &709 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -97393,7 +97486,7 @@ paths: required: - names examples: - default: &707 + default: &710 value: names: - octocat @@ -97416,8 +97509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -97448,9 +97541,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *709 examples: - default: *707 + default: *710 '404': *6 '422': *7 x-github: @@ -97471,9 +97564,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *385 - - *386 - - &708 + - *407 + - *408 + - &711 name: per description: The time frame to display results for. in: query @@ -97502,7 +97595,7 @@ paths: example: 128 clones: type: array - items: &709 + items: &712 title: Traffic type: object properties: @@ -97589,8 +97682,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -97680,8 +97773,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -97741,9 +97834,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *385 - - *386 - - *708 + - *407 + - *408 + - *711 responses: '200': description: Response @@ -97762,7 +97855,7 @@ paths: example: 3782 views: type: array - items: *709 + items: *712 required: - uniques - count @@ -97839,8 +97932,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *385 - - *386 + - *407 + - *408 requestBody: required: true content: @@ -97876,7 +97969,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *224 examples: default: value: @@ -98114,8 +98207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -98138,8 +98231,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -98161,8 +98254,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -98188,8 +98281,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *385 - - *386 + - *407 + - *408 - name: ref in: path required: true @@ -98281,9 +98374,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 + default: *422 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -98324,7 +98417,7 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: default: value: @@ -98434,7 +98527,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &717 + - &720 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -98443,7 +98536,7 @@ paths: schema: type: string example: members - - &722 + - &725 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -98454,7 +98547,7 @@ paths: default: 1 format: int32 example: 1 - - &723 + - &726 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -98496,7 +98589,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &711 + items: &714 allOf: - type: object required: @@ -98571,7 +98664,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: &724 + meta: &727 type: object description: The metadata associated with the creation/updates to the user. @@ -98631,31 +98724,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &712 + '400': &715 description: Bad request content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 - '401': &713 + schema: *713 + '401': &716 description: Authorization failure - '403': &714 + '403': &717 description: Permission denied - '429': &715 + '429': &718 description: Too many requests content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 - '500': &716 + schema: *713 + '500': &719 description: Internal server error content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 + schema: *713 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98679,7 +98772,7 @@ paths: required: true content: application/json: - schema: &720 + schema: &723 type: object required: - schemas @@ -98735,9 +98828,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *711 + schema: *714 examples: - group: &718 + group: &721 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -98756,13 +98849,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': *712 - '401': *713 - '403': *714 - '409': &721 + '400': *715 + '401': *716 + '403': *717 + '409': &724 description: Duplicate record detected - '429': *715 - '500': *716 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98779,7 +98872,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: - - &719 + - &722 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -98787,22 +98880,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *717 + - *720 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *711 + schema: *714 examples: - default: *718 - '400': *712 - '401': *713 - '403': *714 + default: *721 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '429': *715 - '500': *716 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98821,13 +98914,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: - - *719 + - *722 - *41 requestBody: required: true content: application/json: - schema: *720 + schema: *723 examples: group: summary: Group @@ -98853,17 +98946,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *711 + schema: *714 examples: - group: *718 - groupWithMembers: *718 - '400': *712 - '401': *713 - '403': *714 + group: *721 + groupWithMembers: *721 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '409': *721 - '429': *715 - '500': *716 + '409': *724 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98887,13 +98980,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: - - *719 + - *722 - *41 requestBody: required: true content: application/json: - schema: &731 + schema: &734 type: object required: - Operations @@ -98953,17 +99046,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *711 + schema: *714 examples: - updateGroup: *718 - addMembers: *718 - '400': *712 - '401': *713 - '403': *714 + updateGroup: *721 + addMembers: *721 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '409': *721 - '429': *715 - '500': *716 + '409': *724 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98979,17 +99072,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: - - *719 + - *722 - *41 responses: '204': description: Group was deleted, no content - '400': *712 - '401': *713 - '403': *714 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '429': *715 - '500': *716 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99023,8 +99116,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *722 - - *723 + - *725 + - *726 - *41 responses: '200': @@ -99057,7 +99150,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &726 + items: &729 allOf: - type: object required: @@ -99136,7 +99229,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &725 + roles: &728 type: array description: The roles assigned to the user. items: @@ -99192,7 +99285,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *724 + meta: *727 startIndex: type: integer description: A starting index for the returned page @@ -99229,11 +99322,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *712 - '401': *713 - '403': *714 - '429': *715 - '500': *716 + '400': *715 + '401': *716 + '403': *717 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99257,7 +99350,7 @@ paths: required: true content: application/json: - schema: &729 + schema: &732 type: object required: - schemas @@ -99339,9 +99432,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *725 + roles: *728 examples: - user: &730 + user: &733 summary: User value: schemas: @@ -99388,9 +99481,9 @@ paths: description: User has been created content: application/scim+json: - schema: *726 + schema: *729 examples: - user: &727 + user: &730 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -99416,13 +99509,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: *727 - '400': *712 - '401': *713 - '403': *714 - '409': *721 - '429': *715 - '500': *716 + enterpriseOwner: *730 + '400': *715 + '401': *716 + '403': *717 + '409': *724 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99439,7 +99532,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: - - &728 + - &731 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -99452,15 +99545,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *726 + schema: *729 examples: - default: *727 - '400': *712 - '401': *713 - '403': *714 + default: *730 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '429': *715 - '500': *716 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99482,30 +99575,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: - - *728 + - *731 - *41 requestBody: required: true content: application/json: - schema: *729 + schema: *732 examples: - user: *730 + user: *733 responses: '200': description: User was updated content: application/scim+json: - schema: *726 + schema: *729 examples: - user: *727 - '400': *712 - '401': *713 - '403': *714 + user: *730 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '409': *721 - '429': *715 - '500': *716 + '409': *724 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99540,13 +99633,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: - - *728 + - *731 - *41 requestBody: required: true content: application/json: - schema: *731 + schema: *734 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -99586,18 +99679,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *726 + schema: *729 examples: - userMultiValuedProperties: *727 - userSingleValuedProperties: *727 - disableUser: *727 - '400': *712 - '401': *713 - '403': *714 + userMultiValuedProperties: *730 + userSingleValuedProperties: *730 + disableUser: *730 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '409': *721 - '429': *715 - '500': *716 + '409': *724 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99617,17 +99710,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: - - *728 + - *731 - *41 responses: '204': description: User was deleted, no content - '400': *712 - '401': *713 - '403': *714 + '400': *715 + '401': *716 + '403': *717 '404': *6 - '429': *715 - '500': *716 + '429': *718 + '500': *719 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -99714,7 +99807,7 @@ paths: example: 1 Resources: type: array - items: &732 + items: &735 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -99945,22 +100038,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': &733 + '404': &736 description: Resource not found content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 - '403': &734 + schema: *713 + '403': &737 description: Forbidden content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 - '400': *712 - '429': *715 + schema: *713 + '400': *715 + '429': *718 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -99986,9 +100079,9 @@ paths: description: Response content: application/scim+json: - schema: *732 + schema: *735 examples: - default: &735 + default: &738 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -100011,17 +100104,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': *733 - '403': *734 - '500': *716 + '404': *736 + '403': *737 + '500': *719 '409': description: Conflict content: application/json: - schema: *710 + schema: *713 application/scim+json: - schema: *710 - '400': *712 + schema: *713 + '400': *715 requestBody: required: true content: @@ -100119,17 +100212,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *73 - - *728 + - *731 responses: '200': description: Response content: application/scim+json: - schema: *732 + schema: *735 examples: - default: *735 - '404': *733 - '403': *734 + default: *738 + '404': *736 + '403': *737 '304': *37 x-github: githubCloudOnly: true @@ -100153,18 +100246,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *73 - - *728 + - *731 responses: '200': description: Response content: application/scim+json: - schema: *732 + schema: *735 examples: - default: *735 + default: *738 '304': *37 - '404': *733 - '403': *734 + '404': *736 + '403': *737 requestBody: required: true content: @@ -100277,19 +100370,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *73 - - *728 + - *731 responses: '200': description: Response content: application/scim+json: - schema: *732 + schema: *735 examples: - default: *735 + default: *738 '304': *37 - '404': *733 - '403': *734 - '400': *712 + '404': *736 + '403': *737 + '400': *715 '429': description: Response content: @@ -100380,12 +100473,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *73 - - *728 + - *731 responses: '204': description: Response - '404': *733 - '403': *734 + '404': *736 + '403': *737 '304': *37 x-github: githubCloudOnly: true @@ -100500,7 +100593,7 @@ paths: html_url: type: string format: uri - repository: *204 + repository: *224 score: type: number file_size: @@ -100518,7 +100611,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &736 + text_matches: &739 title: Search Result Text Matches type: array items: @@ -100632,7 +100725,7 @@ paths: releases_url: http://api.github.com/repos/octocat/Hello-World/releases{/id} score: 1 '304': *37 - '503': *137 + '503': *157 '422': *15 '403': *29 x-github: @@ -100681,7 +100774,7 @@ paths: enum: - author-date - committer-date - - &737 + - &740 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 @@ -100752,7 +100845,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *442 + properties: *464 nullable: true comment_count: type: integer @@ -100772,7 +100865,7 @@ paths: url: type: string format: uri - verification: *567 + verification: *589 required: - author - committer @@ -100791,7 +100884,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *442 + properties: *464 nullable: true parents: type: array @@ -100804,12 +100897,12 @@ paths: type: string sha: type: string - repository: *204 + repository: *224 score: type: number node_id: type: string - text_matches: *736 + text_matches: *739 required: - sha - node_id @@ -100992,7 +101085,7 @@ paths: - interactions - created - updated - - *737 + - *740 - *17 - *19 - name: advanced_search @@ -101119,8 +101212,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *510 - required: *511 + properties: *532 + required: *533 nullable: true comments: type: integer @@ -101134,7 +101227,7 @@ paths: type: string format: date-time nullable: true - text_matches: *736 + text_matches: *739 pull_request: type: object properties: @@ -101167,7 +101260,7 @@ paths: type: string score: type: number - author_association: *147 + author_association: *167 draft: type: boolean repository: *64 @@ -101178,7 +101271,7 @@ paths: timeline_url: type: string format: uri - type: *295 + type: *316 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -101188,9 +101281,9 @@ paths: GitHub apps are first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 - reactions: *148 + properties: *165 + required: *166 + reactions: *168 required: - assignee - closed_at @@ -101306,7 +101399,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *137 + '503': *157 '422': *15 '304': *37 '403': *29 @@ -101362,7 +101455,7 @@ paths: enum: - created - updated - - *737 + - *740 - *17 - *19 responses: @@ -101406,7 +101499,7 @@ paths: nullable: true score: type: number - text_matches: *736 + text_matches: *739 required: - id - node_id @@ -101492,7 +101585,7 @@ paths: - forks - help-wanted-issues - updated - - *737 + - *740 - *17 - *19 responses: @@ -101711,8 +101804,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true permissions: type: object @@ -101731,7 +101824,7 @@ paths: - admin - pull - push - text_matches: *736 + text_matches: *739 temp_clone_token: type: string allow_merge_commit: @@ -101933,7 +102026,7 @@ paths: spdx_id: MIT node_id: MDc6TGljZW5zZW1pdA== html_url: https://api.github.com/licenses/mit - '503': *137 + '503': *157 '422': *15 '304': *37 x-github: @@ -102032,7 +102125,7 @@ paths: type: string format: uri nullable: true - text_matches: *736 + text_matches: *739 related: type: array nullable: true @@ -102225,7 +102318,7 @@ paths: - followers - repositories - joined - - *737 + - *740 - *17 - *19 responses: @@ -102329,7 +102422,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *736 + text_matches: *739 blog: type: string nullable: true @@ -102388,7 +102481,7 @@ paths: events_url: https://api.github.com/users/mojombo/events{/privacy} site_admin: true '304': *37 - '503': *137 + '503': *157 '422': *15 x-github: githubCloudOnly: false @@ -102408,7 +102501,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &738 + - &741 name: team_id description: The unique identifier of the team. in: path @@ -102420,9 +102513,9 @@ paths: description: Response content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '404': *6 x-github: githubCloudOnly: false @@ -102449,7 +102542,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *738 + - *741 requestBody: required: true content: @@ -102512,16 +102605,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '201': description: Response content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '404': *6 '422': *15 '403': *29 @@ -102549,7 +102642,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *738 + - *741 responses: '204': description: Response @@ -102580,7 +102673,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *738 + - *741 - *91 - *17 - *19 @@ -102591,9 +102684,9 @@ paths: application/json: schema: type: array - items: *368 + items: *390 examples: - default: *739 + default: *742 headers: Link: *40 x-github: @@ -102622,7 +102715,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *738 + - *741 requestBody: required: true content: @@ -102656,9 +102749,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *369 + default: *391 x-github: triggersNotification: true githubCloudOnly: false @@ -102685,16 +102778,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *738 - - *370 + - *741 + - *392 responses: '200': description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *369 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102719,8 +102812,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *738 - - *370 + - *741 + - *392 requestBody: required: false content: @@ -102743,9 +102836,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *740 + default: *743 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102770,8 +102863,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *738 - - *370 + - *741 + - *392 responses: '204': description: Response @@ -102800,8 +102893,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *738 - - *370 + - *741 + - *392 - *91 - *17 - *19 @@ -102812,9 +102905,9 @@ paths: application/json: schema: type: array - items: *371 + items: *393 examples: - default: *741 + default: *744 headers: Link: *40 x-github: @@ -102843,8 +102936,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *738 - - *370 + - *741 + - *392 requestBody: required: true content: @@ -102866,9 +102959,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *372 + default: *394 x-github: triggersNotification: true githubCloudOnly: false @@ -102895,17 +102988,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *738 - - *370 - - *373 + - *741 + - *392 + - *395 responses: '200': description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *372 + default: *394 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102930,9 +103023,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *738 - - *370 - - *373 + - *741 + - *392 + - *395 requestBody: required: true content: @@ -102954,9 +103047,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *742 + default: *745 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102981,9 +103074,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *738 - - *370 - - *373 + - *741 + - *392 + - *395 responses: '204': description: Response @@ -103012,9 +103105,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *738 - - *370 - - *373 + - *741 + - *392 + - *395 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -103040,9 +103133,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -103071,9 +103164,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *738 - - *370 - - *373 + - *741 + - *392 + - *395 requestBody: required: true content: @@ -103105,9 +103198,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103133,8 +103226,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *738 - - *370 + - *741 + - *392 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -103160,9 +103253,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -103191,8 +103284,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *738 - - *370 + - *741 + - *392 requestBody: required: true content: @@ -103224,9 +103317,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103250,7 +103343,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *738 + - *741 - *17 - *19 responses: @@ -103260,9 +103353,9 @@ paths: application/json: schema: type: array - items: *292 + items: *313 examples: - default: *293 + default: *314 headers: Link: *40 x-github: @@ -103288,7 +103381,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *738 + - *741 - name: role description: Filters members returned by their role in the team. in: query @@ -103311,7 +103404,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -103339,8 +103432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *738 - - *226 + - *741 + - *246 responses: '204': description: if user is a member @@ -103376,8 +103469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *738 - - *226 + - *741 + - *246 responses: '204': description: Response @@ -103416,8 +103509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *738 - - *226 + - *741 + - *246 responses: '204': description: Response @@ -103453,16 +103546,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *738 - - *226 + - *741 + - *246 responses: '200': description: Response content: application/json: - schema: *382 + schema: *404 examples: - response-if-user-is-a-team-maintainer: *743 + response-if-user-is-a-team-maintainer: *746 '404': *6 x-github: githubCloudOnly: false @@ -103495,8 +103588,8 @@ 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: - - *738 - - *226 + - *741 + - *246 requestBody: required: false content: @@ -103521,9 +103614,9 @@ paths: description: Response content: application/json: - schema: *382 + schema: *404 examples: - response-if-users-membership-with-team-is-now-pending: *744 + response-if-users-membership-with-team-is-now-pending: *747 '403': description: Forbidden if team synchronization is set up '422': @@ -103557,8 +103650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *738 - - *226 + - *741 + - *246 responses: '204': description: Response @@ -103586,7 +103679,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *738 + - *741 - *17 - *19 responses: @@ -103596,9 +103689,9 @@ paths: application/json: schema: type: array - items: *383 + items: *405 examples: - default: *745 + default: *748 headers: Link: *40 '404': *6 @@ -103624,16 +103717,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *738 - - *384 + - *741 + - *406 responses: '200': description: Response content: application/json: - schema: *383 + schema: *405 examples: - default: *746 + default: *749 '404': description: Not Found if project is not managed by this team x-github: @@ -103657,8 +103750,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *738 - - *384 + - *741 + - *406 requestBody: required: false content: @@ -103725,8 +103818,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *738 - - *384 + - *741 + - *406 responses: '204': description: Response @@ -103753,7 +103846,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *738 + - *741 - *17 - *19 responses: @@ -103763,9 +103856,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '404': *6 @@ -103795,15 +103888,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *738 - - *385 - - *386 + - *741 + - *407 + - *408 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *747 + schema: *750 examples: alternative-response-with-extra-repository-information: value: @@ -103954,9 +104047,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *738 - - *385 - - *386 + - *741 + - *407 + - *408 requestBody: required: false content: @@ -104006,9 +104099,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *738 - - *385 - - *386 + - *741 + - *407 + - *408 responses: '204': description: Response @@ -104037,15 +104130,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *738 + - *741 responses: '200': description: Response content: application/json: - schema: *387 + schema: *409 examples: - default: *388 + default: *410 '403': *29 '404': *6 x-github: @@ -104072,7 +104165,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: - - *738 + - *741 requestBody: required: true content: @@ -104129,7 +104222,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *409 examples: default: value: @@ -104160,7 +104253,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *738 + - *741 - *17 - *19 responses: @@ -104170,9 +104263,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - response-if-child-teams-exist: *748 + response-if-child-teams-exist: *751 headers: Link: *40 '404': *6 @@ -104205,7 +104298,7 @@ paths: application/json: schema: oneOf: - - &750 + - &753 title: Private User description: Private User type: object @@ -104408,7 +104501,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *749 + - *752 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -104561,7 +104654,7 @@ paths: description: Response content: application/json: - schema: *750 + schema: *753 examples: default: value: @@ -104640,7 +104733,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '304': *37 '404': *6 '403': *29 @@ -104663,7 +104756,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#check-if-a-user-is-blocked-by-the-authenticated-user parameters: - - *226 + - *246 responses: '204': description: If the user is blocked @@ -104691,7 +104784,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#block-a-user parameters: - - *226 + - *246 responses: '204': description: Response @@ -104715,7 +104808,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/blocking#unblock-a-user parameters: - - *226 + - *246 responses: '204': description: Response @@ -104764,9 +104857,9 @@ paths: type: integer codespaces: type: array - items: *301 + items: *322 examples: - default: *302 + default: *323 '304': *37 '500': *88 '401': *25 @@ -104905,21 +104998,21 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '401': *25 '403': *29 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -104959,7 +105052,7 @@ paths: type: integer secrets: type: array - items: &751 + items: &754 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -104999,7 +105092,7 @@ paths: - visibility - selected_repositories_url examples: - default: *498 + default: *520 headers: Link: *40 x-github: @@ -105069,13 +105162,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#get-a-secret-for-the-authenticated-user parameters: - - *214 + - *234 responses: '200': description: Response content: application/json: - schema: *751 + schema: *754 examples: default: value: @@ -105105,7 +105198,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#create-or-update-a-secret-for-the-authenticated-user parameters: - - *214 + - *234 requestBody: required: true content: @@ -105150,7 +105243,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -105178,7 +105271,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#delete-a-secret-for-the-authenticated-user parameters: - - *214 + - *234 responses: '204': description: Response @@ -105203,7 +105296,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#list-selected-repositories-for-a-user-secret parameters: - - *214 + - *234 responses: '200': description: Response @@ -105219,9 +105312,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: *752 + default: *755 '401': *25 '403': *29 '404': *6 @@ -105246,7 +105339,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#set-selected-repositories-for-a-user-secret parameters: - - *214 + - *234 requestBody: required: true content: @@ -105300,7 +105393,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#add-a-selected-repository-to-a-user-secret parameters: - - *214 + - *234 - name: repository_id in: path required: true @@ -105333,7 +105426,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/secrets#remove-a-selected-repository-from-a-user-secret parameters: - - *214 + - *234 - name: repository_id in: path required: true @@ -105365,15 +105458,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 responses: '200': description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '304': *37 '500': *88 '401': *25 @@ -105399,7 +105492,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 requestBody: required: false content: @@ -105429,9 +105522,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '401': *25 '403': *29 '404': *6 @@ -105453,7 +105546,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 responses: '202': *39 '304': *37 @@ -105482,13 +105575,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 responses: '202': description: Response content: application/json: - schema: &753 + schema: &756 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -105529,7 +105622,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &754 + default: &757 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -105561,7 +105654,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *303 + - *324 - name: export_id in: path required: true @@ -105574,9 +105667,9 @@ paths: description: Response content: application/json: - schema: *753 + schema: *756 examples: - default: *754 + default: *757 '404': *6 x-github: githubCloudOnly: false @@ -105597,7 +105690,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *303 + - *324 responses: '200': description: Response @@ -105613,9 +105706,9 @@ paths: type: integer machines: type: array - items: *755 + items: *758 examples: - default: *756 + default: *759 '304': *37 '500': *88 '401': *25 @@ -105644,7 +105737,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *303 + - *324 requestBody: required: true content: @@ -105694,13 +105787,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *398 + repository: *420 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *496 - required: *497 + properties: *518 + required: *519 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -106474,15 +106567,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 responses: '200': description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '304': *37 '500': *88 '400': *14 @@ -106514,15 +106607,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *303 + - *324 responses: '200': description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '500': *88 '401': *25 '403': *29 @@ -106552,9 +106645,9 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: &769 + default: &772 value: - id: 197 name: hello_docker @@ -106655,7 +106748,7 @@ paths: application/json: schema: type: array - items: &757 + items: &760 title: Email description: Email type: object @@ -106720,9 +106813,9 @@ paths: application/json: schema: type: array - items: *757 + items: *760 examples: - default: &771 + default: &774 value: - email: octocat@github.com verified: true @@ -106797,7 +106890,7 @@ paths: application/json: schema: type: array - items: *757 + items: *760 examples: default: value: @@ -106907,7 +107000,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '304': *37 @@ -106940,7 +107033,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '304': *37 @@ -106962,7 +107055,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-person-is-followed-by-the-authenticated-user parameters: - - *226 + - *246 responses: '204': description: if the person is followed by the authenticated user @@ -106992,7 +107085,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#follow-a-user parameters: - - *226 + - *246 responses: '204': description: Response @@ -107017,7 +107110,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#unfollow-a-user parameters: - - *226 + - *246 responses: '204': description: Response @@ -107053,7 +107146,7 @@ paths: application/json: schema: type: array - items: &758 + items: &761 title: GPG Key description: A unique encryption key type: object @@ -107184,7 +107277,7 @@ paths: - subkeys - revoked examples: - default: &785 + default: &788 value: - id: 3 name: Octocat's GPG Key @@ -107269,9 +107362,9 @@ paths: description: Response content: application/json: - schema: *758 + schema: *761 examples: - default: &759 + default: &762 value: id: 3 name: Octocat's GPG Key @@ -107328,7 +107421,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: - - &760 + - &763 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -107340,9 +107433,9 @@ paths: description: Response content: application/json: - schema: *758 + schema: *761 examples: - default: *759 + default: *762 '404': *6 '304': *37 '403': *29 @@ -107365,7 +107458,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: - - *760 + - *763 responses: '204': description: Response @@ -107556,7 +107649,7 @@ paths: type: array items: *64 examples: - default: *761 + default: *764 headers: Link: *40 '404': *6 @@ -107581,7 +107674,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#add-a-repository-to-an-app-installation parameters: - *23 - - *199 + - *219 responses: '204': description: Response @@ -107607,7 +107700,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/apps/installations#remove-a-repository-from-an-app-installation parameters: - *23 - - *199 + - *219 responses: '204': description: Response @@ -107641,12 +107734,12 @@ paths: application/json: schema: anyOf: - - *290 + - *311 - type: object properties: {} additionalProperties: false examples: - default: *291 + default: *312 '204': description: Response when there are no restrictions x-github: @@ -107670,7 +107763,7 @@ paths: required: true content: application/json: - schema: *578 + schema: *600 examples: default: value: @@ -107681,7 +107774,7 @@ paths: description: Response content: application/json: - schema: *290 + schema: *311 examples: default: value: @@ -107762,7 +107855,7 @@ paths: - closed - all default: open - - *298 + - *319 - name: sort description: What to sort results by. in: query @@ -107775,7 +107868,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - *17 - *19 responses: @@ -107785,9 +107878,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: *299 + default: *320 headers: Link: *40 '404': *6 @@ -107820,7 +107913,7 @@ paths: application/json: schema: type: array - items: &762 + items: &765 title: Key description: Key type: object @@ -107917,9 +108010,9 @@ paths: description: Response content: application/json: - schema: *762 + schema: *765 examples: - default: &763 + default: &766 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107952,15 +108045,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *607 + - *629 responses: '200': description: Response content: application/json: - schema: *762 + schema: *765 examples: - default: *763 + default: *766 '404': *6 '304': *37 '403': *29 @@ -107983,7 +108076,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *607 + - *629 responses: '204': description: Response @@ -108016,7 +108109,7 @@ paths: application/json: schema: type: array - items: &764 + items: &767 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -108073,7 +108166,7 @@ paths: - id - type - login - plan: *164 + plan: *184 required: - billing_cycle - next_billing_date @@ -108084,7 +108177,7 @@ paths: - account - plan examples: - default: &765 + default: &768 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -108146,9 +108239,9 @@ paths: application/json: schema: type: array - items: *764 + items: *767 examples: - default: *765 + default: *768 headers: Link: *40 '304': *37 @@ -108188,7 +108281,7 @@ paths: application/json: schema: type: array - items: *304 + items: *325 examples: default: value: @@ -108296,7 +108389,7 @@ paths: description: Response content: application/json: - schema: *304 + schema: *325 examples: default: value: @@ -108379,7 +108472,7 @@ paths: description: Response content: application/json: - schema: *304 + schema: *325 examples: default: value: @@ -108447,7 +108540,7 @@ paths: application/json: schema: type: array - items: *306 + items: *327 examples: default: value: @@ -108700,7 +108793,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -108880,7 +108973,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *307 + - *328 - name: exclude in: query required: false @@ -108893,7 +108986,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -109087,7 +109180,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *307 + - *328 responses: '302': description: Response @@ -109113,7 +109206,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *307 + - *328 responses: '204': description: Response @@ -109142,8 +109235,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *307 - - *766 + - *328 + - *769 responses: '204': description: Response @@ -109167,7 +109260,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *307 + - *328 - *17 - *19 responses: @@ -109177,9 +109270,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '404': *6 @@ -109216,7 +109309,7 @@ paths: type: array items: *59 examples: - default: *767 + default: *770 headers: Link: *40 '304': *37 @@ -109258,7 +109351,7 @@ paths: - docker - nuget - container - - *768 + - *771 - *19 - *17 responses: @@ -109268,10 +109361,10 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: *769 - '400': *770 + default: *772 + '400': *773 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109291,16 +109384,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *315 - - *316 + - *336 + - *337 responses: '200': description: Response content: application/json: - schema: *313 + schema: *334 examples: - default: &786 + default: &789 value: id: 40201 name: octo-name @@ -109413,8 +109506,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *315 - - *316 + - *336 + - *337 responses: '204': description: Response @@ -109444,8 +109537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *315 - - *316 + - *336 + - *337 - name: token description: package token schema: @@ -109477,8 +109570,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *315 - - *316 + - *336 + - *337 - *19 - *17 - name: state @@ -109498,7 +109591,7 @@ paths: application/json: schema: type: array - items: *317 + items: *338 examples: default: value: @@ -109547,15 +109640,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *315 - - *316 - - *318 + - *336 + - *337 + - *339 responses: '200': description: Response content: application/json: - schema: *317 + schema: *338 examples: default: value: @@ -109591,9 +109684,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *315 - - *316 - - *318 + - *336 + - *337 + - *339 responses: '204': description: Response @@ -109623,9 +109716,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *315 - - *316 - - *318 + - *336 + - *337 + - *339 responses: '204': description: Response @@ -109681,7 +109774,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: default: value: @@ -109753,9 +109846,9 @@ paths: application/json: schema: type: array - items: *757 + items: *760 examples: - default: *771 + default: *774 headers: Link: *40 '304': *37 @@ -109868,7 +109961,7 @@ paths: type: array items: *64 examples: - default: &778 + default: &781 summary: Default response value: - id: 1296269 @@ -110172,9 +110265,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 + default: *422 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -110212,9 +110305,9 @@ paths: application/json: schema: type: array - items: *580 + items: *602 examples: - default: *772 + default: *775 headers: Link: *40 '304': *37 @@ -110237,7 +110330,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *294 + - *315 responses: '204': description: Response @@ -110260,7 +110353,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *294 + - *315 responses: '204': description: Response @@ -110293,7 +110386,7 @@ paths: application/json: schema: type: array - items: &773 + items: &776 title: Social account description: Social media account type: object @@ -110308,7 +110401,7 @@ paths: - provider - url examples: - default: &774 + default: &777 value: - provider: twitter url: https://twitter.com/github @@ -110370,9 +110463,9 @@ paths: application/json: schema: type: array - items: *773 + items: *776 examples: - default: *774 + default: *777 '422': *15 '304': *37 '404': *6 @@ -110459,7 +110552,7 @@ paths: application/json: schema: type: array - items: &775 + items: &778 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -110479,7 +110572,7 @@ paths: - title - created_at examples: - default: &787 + default: &790 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110545,9 +110638,9 @@ paths: description: Response content: application/json: - schema: *775 + schema: *778 examples: - default: &776 + default: &779 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110578,7 +110671,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: - - &777 + - &780 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -110590,9 +110683,9 @@ paths: description: Response content: application/json: - schema: *775 + schema: *778 examples: - default: *776 + default: *779 '404': *6 '304': *37 '403': *29 @@ -110615,7 +110708,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: - - *777 + - *780 responses: '204': description: Response @@ -110644,7 +110737,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: - - &788 + - &791 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 @@ -110669,11 +110762,11 @@ paths: type: array items: *64 examples: - default-response: *778 + default-response: *781 application/vnd.github.v3.star+json: schema: type: array - items: &789 + items: &792 title: Starred Repository description: Starred Repository type: object @@ -110829,8 +110922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response if this repository is starred by you @@ -110858,8 +110951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -110883,8 +110976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *385 - - *386 + - *407 + - *408 responses: '204': description: Response @@ -110917,9 +111010,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '304': *37 @@ -110956,7 +111049,7 @@ paths: application/json: schema: type: array - items: *366 + items: *388 examples: default: value: @@ -111034,7 +111127,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user-using-their-id parameters: - - *166 + - *186 responses: '200': description: Response @@ -111042,10 +111135,10 @@ paths: application/json: schema: oneOf: - - *750 - - *749 + - *753 + - *752 examples: - default-response: &780 + default-response: &783 summary: Default response value: login: octocat @@ -111080,7 +111173,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &781 + response-with-git-hub-plan-information: &784 summary: Response with GitHub plan information value: login: octocat @@ -111140,7 +111233,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *779 + - *782 - *17 responses: '200': @@ -111151,7 +111244,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: example: ; rel="next" @@ -111181,7 +111274,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-a-user parameters: - - *226 + - *246 responses: '200': description: Response @@ -111189,11 +111282,11 @@ paths: application/json: schema: oneOf: - - *750 - - *749 + - *753 + - *752 examples: - default-response: *780 - response-with-git-hub-plan-information: *781 + default-response: *783 + response-with-git-hub-plan-information: *784 '404': *6 x-github: githubCloudOnly: false @@ -111219,7 +111312,7 @@ paths: - *17 - *89 - *90 - - *226 + - *246 requestBody: required: true content: @@ -111242,8 +111335,8 @@ paths: required: - subject_digests examples: - default: *782 - withPredicateType: *783 + default: *785 + withPredicateType: *786 responses: '200': description: Response @@ -111296,7 +111389,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *784 + default: *787 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111314,7 +111407,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-in-bulk parameters: - - *226 + - *246 requestBody: required: true content: @@ -111379,7 +111472,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-subject-digest parameters: - - *226 + - *246 - name: subject_digest description: Subject Digest in: path @@ -111410,7 +111503,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/attestations#delete-attestations-by-id parameters: - - *226 + - *246 - name: attestation_id description: Attestation ID in: path @@ -111448,7 +111541,7 @@ paths: - *17 - *89 - *90 - - *226 + - *246 - name: subject_digest description: Subject Digest in: path @@ -111498,12 +111591,12 @@ paths: bundle_url: type: string examples: - default: *438 + default: *460 '201': description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -111529,7 +111622,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-list-of-conflicting-packages-during-docker-migration-for-user parameters: - - *226 + - *246 responses: '200': description: Response @@ -111537,9 +111630,9 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: *769 + default: *772 '403': *29 '401': *25 x-github: @@ -111562,7 +111655,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-for-the-authenticated-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -111572,7 +111665,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111643,7 +111736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-organization-events-for-the-authenticated-user parameters: - - *226 + - *246 - *73 - *17 - *19 @@ -111654,7 +111747,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111733,7 +111826,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -111743,7 +111836,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111810,7 +111903,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-followers-of-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -111822,7 +111915,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -111841,7 +111934,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#list-the-people-a-user-follows parameters: - - *226 + - *246 - *17 - *19 responses: @@ -111853,7 +111946,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -111872,7 +111965,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/followers#check-if-a-user-follows-another-user parameters: - - *226 + - *246 - name: target_user in: path required: true @@ -111899,8 +111992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/gists/gists#list-gists-for-a-user parameters: - - *226 - - *150 + - *246 + - *170 - *17 - *19 responses: @@ -111910,9 +112003,9 @@ paths: application/json: schema: type: array - items: *151 + items: *171 examples: - default: *152 + default: *172 headers: Link: *40 '422': *15 @@ -111933,7 +112026,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#list-gpg-keys-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -111943,9 +112036,9 @@ paths: application/json: schema: type: array - items: *758 + items: *761 examples: - default: *785 + default: *788 headers: Link: *40 x-github: @@ -111969,7 +112062,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#get-contextual-information-for-a-user parameters: - - *226 + - *246 - name: subject_type description: Identifies which additional information you'd like to receive about the person's hovercard. Can be `organization`, `repository`, `issue`, @@ -112041,7 +112134,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-user-installation-for-the-authenticated-app parameters: - - *226 + - *246 responses: '200': description: Response @@ -112049,7 +112142,7 @@ paths: application/json: schema: *22 examples: - default: *577 + default: *599 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112067,7 +112160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#list-public-keys-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -112118,7 +112211,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/orgs#list-organizations-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -112130,7 +112223,7 @@ paths: type: array items: *59 examples: - default: *767 + default: *770 headers: Link: *40 x-github: @@ -112169,8 +112262,8 @@ paths: - docker - nuget - container - - *768 - - *226 + - *771 + - *246 - *19 - *17 responses: @@ -112180,12 +112273,12 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: *769 + default: *772 '403': *29 '401': *25 - '400': *770 + '400': *773 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112205,17 +112298,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *315 - - *316 - - *226 + - *336 + - *337 + - *246 responses: '200': description: Response content: application/json: - schema: *313 + schema: *334 examples: - default: *786 + default: *789 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112236,9 +112329,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *315 - - *316 - - *226 + - *336 + - *337 + - *246 responses: '204': description: Response @@ -112270,9 +112363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *315 - - *316 - - *226 + - *336 + - *337 + - *246 - name: token description: package token schema: @@ -112304,9 +112397,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *315 - - *316 - - *226 + - *336 + - *337 + - *246 responses: '200': description: Response @@ -112314,7 +112407,7 @@ paths: application/json: schema: type: array - items: *317 + items: *338 examples: default: value: @@ -112372,16 +112465,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-version-for-a-user parameters: - - *315 - - *316 - - *318 - - *226 + - *336 + - *337 + - *339 + - *246 responses: '200': description: Response content: application/json: - schema: *317 + schema: *338 examples: default: value: @@ -112416,10 +112509,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *315 - - *316 - - *226 - - *318 + - *336 + - *337 + - *246 + - *339 responses: '204': description: Response @@ -112451,10 +112544,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *315 - - *316 - - *226 - - *318 + - *336 + - *337 + - *246 + - *339 responses: '204': description: Response @@ -112480,7 +112573,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-user-projects parameters: - - *226 + - *246 - name: state description: Indicates the state of the projects to return. in: query @@ -112501,7 +112594,7 @@ paths: application/json: schema: type: array - items: *329 + items: *350 examples: default: value: @@ -112563,7 +112656,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-events-received-by-the-authenticated-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -112573,7 +112666,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -112652,7 +112745,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-received-by-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -112662,7 +112755,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -112739,7 +112832,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repositories-for-a-user parameters: - - *226 + - *246 - name: type description: Limit results to repositories of the specified type. in: query @@ -112782,9 +112875,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -112808,15 +112901,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-actions-billing-for-a-user parameters: - - *226 + - *246 responses: '200': description: Response content: application/json: - schema: *353 + schema: *375 examples: - default: *354 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112838,15 +112931,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-github-packages-billing-for-a-user parameters: - - *226 + - *246 responses: '200': description: Response content: application/json: - schema: *358 + schema: *380 examples: - default: *359 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112868,15 +112961,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/billing#get-shared-storage-billing-for-a-user parameters: - - *226 + - *246 responses: '200': description: Response content: application/json: - schema: *360 + schema: *382 examples: - default: *361 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112896,11 +112989,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/billing/enhanced-billing#get-billing-usage-report-for-a-user parameters: - - *226 - - *179 - - *180 - - *181 - - *182 + - *246 + - *199 + - *200 + - *201 + - *202 responses: '200': description: Response when getting a billing usage report @@ -112971,7 +113064,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112989,7 +113082,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/social-accounts#list-social-accounts-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -112999,9 +113092,9 @@ paths: application/json: schema: type: array - items: *773 + items: *776 examples: - default: *774 + default: *777 headers: Link: *40 x-github: @@ -113021,7 +113114,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#list-ssh-signing-keys-for-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -113031,9 +113124,9 @@ paths: application/json: schema: type: array - items: *775 + items: *778 examples: - default: *787 + default: *790 headers: Link: *40 x-github: @@ -113057,8 +113150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - - *226 - - *788 + - *246 + - *791 - *91 - *17 - *19 @@ -113070,11 +113163,11 @@ paths: schema: anyOf: - type: array - items: *789 + items: *792 - type: array items: *64 examples: - default-response: *778 + default-response: *781 headers: Link: *40 x-github: @@ -113093,7 +113186,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-repositories-watched-by-a-user parameters: - - *226 + - *246 - *17 - *19 responses: @@ -113103,9 +113196,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -113233,7 +113326,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &790 + enterprise: &793 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -113291,7 +113384,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &791 + installation: &794 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -113310,7 +113403,7 @@ x-webhooks: required: - id - node_id - organization: &792 + organization: &795 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -113370,13 +113463,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &793 + repository: &796 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: &830 + properties: &833 id: description: Unique identifier of the repository example: 42 @@ -113396,8 +113489,8 @@ x-webhooks: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true organization: title: Simple User @@ -114059,7 +114152,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &831 + required: &834 - archive_url - assignees_url - blobs_url @@ -114210,10 +114303,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -114289,11 +114382,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - rule: &794 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + rule: &797 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) @@ -114516,11 +114609,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - rule: *794 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + rule: *797 sender: *4 required: - action @@ -114703,11 +114796,11 @@ x-webhooks: - everyone required: - from - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - rule: *794 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + rule: *797 sender: *4 required: - action @@ -114778,7 +114871,7 @@ x-webhooks: required: true content: application/json: - schema: &797 + schema: &800 title: Exemption request cancellation event type: object properties: @@ -114786,11 +114879,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - exemption_request: &795 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + exemption_request: &798 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -115023,7 +115116,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &796 + items: &799 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -115131,7 +115224,7 @@ x-webhooks: required: true content: application/json: - schema: &798 + schema: &801 title: Exemption request completed event type: object properties: @@ -115139,11 +115232,11 @@ x-webhooks: type: string enum: - completed - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - exemption_request: *795 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + exemption_request: *798 sender: *4 required: - action @@ -115213,7 +115306,7 @@ x-webhooks: required: true content: application/json: - schema: &799 + schema: &802 title: Exemption request created event type: object properties: @@ -115221,11 +115314,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - exemption_request: *795 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + exemption_request: *798 sender: *4 required: - action @@ -115295,7 +115388,7 @@ x-webhooks: required: true content: application/json: - schema: &800 + schema: &803 title: Exemption response dismissed event type: object properties: @@ -115303,12 +115396,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - exemption_request: *795 - exemption_response: *796 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + exemption_request: *798 + exemption_response: *799 sender: *4 required: - action @@ -115380,7 +115473,7 @@ x-webhooks: required: true content: application/json: - schema: &801 + schema: &804 title: Exemption response submitted event type: object properties: @@ -115388,12 +115481,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - exemption_request: *795 - exemption_response: *796 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + exemption_request: *798 + exemption_response: *799 sender: *4 required: - action @@ -115466,7 +115559,7 @@ x-webhooks: required: true content: application/json: - schema: *797 + schema: *800 responses: '200': description: Return a 200 status to indicate that the data was received @@ -115533,7 +115626,7 @@ x-webhooks: required: true content: application/json: - schema: *798 + schema: *801 responses: '200': description: Return a 200 status to indicate that the data was received @@ -115600,7 +115693,7 @@ x-webhooks: required: true content: application/json: - schema: *799 + schema: *802 responses: '200': description: Return a 200 status to indicate that the data was received @@ -115667,7 +115760,7 @@ x-webhooks: required: true content: application/json: - schema: *800 + schema: *803 responses: '200': description: Return a 200 status to indicate that the data was received @@ -115735,7 +115828,7 @@ x-webhooks: required: true content: application/json: - schema: *801 + schema: *804 responses: '200': description: Return a 200 status to indicate that the data was received @@ -115813,7 +115906,7 @@ x-webhooks: type: string enum: - completed - check_run: &803 + check_run: &806 title: CheckRun description: A check performed on the code of a given code change type: object @@ -115866,8 +115959,8 @@ x-webhooks: type: string pull_requests: type: array - items: *457 - repository: *204 + items: *479 + repository: *224 status: example: completed type: string @@ -115904,7 +115997,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *802 + deployment: *805 details_url: example: https://example.com type: string @@ -115954,7 +116047,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *457 + items: *479 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -115989,9 +116082,9 @@ x-webhooks: - output - app - pull_requests - installation: *791 - organization: *792 - repository: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - check_run @@ -116384,10 +116477,10 @@ x-webhooks: type: string enum: - created - check_run: *803 - installation: *791 - organization: *792 - repository: *793 + check_run: *806 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - check_run @@ -116783,10 +116876,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *803 - installation: *791 - organization: *792 - repository: *793 + check_run: *806 + installation: *794 + organization: *795 + repository: *796 requested_action: description: The action requested by the user. type: object @@ -117191,10 +117284,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *803 - installation: *791 - organization: *792 - repository: *793 + check_run: *806 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - check_run @@ -118171,10 +118264,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -118844,10 +118937,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -119511,10 +119604,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -119677,7 +119770,7 @@ x-webhooks: required: - login - id - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -119822,20 +119915,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &804 + commit_oid: &807 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: *790 - installation: *791 - organization: *792 - ref: &805 + enterprise: *793 + installation: *794 + organization: *795 + ref: &808 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: *793 + repository: *796 sender: *4 required: - action @@ -119997,7 +120090,7 @@ x-webhooks: required: - login - id - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -120227,12 +120320,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *804 - enterprise: *790 - installation: *791 - organization: *792 - ref: *805 - repository: *793 + commit_oid: *807 + enterprise: *793 + installation: *794 + organization: *795 + ref: *808 + repository: *796 sender: *4 required: - action @@ -120327,7 +120420,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120495,12 +120588,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *804 - enterprise: *790 - installation: *791 - organization: *792 - ref: *805 - repository: *793 + commit_oid: *807 + enterprise: *793 + installation: *794 + organization: *795 + ref: *808 + repository: *796 sender: *4 required: - action @@ -120663,7 +120756,7 @@ x-webhooks: required: - login - id - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -120829,12 +120922,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *804 - enterprise: *790 - installation: *791 - organization: *792 - ref: *805 - repository: *793 + commit_oid: *807 + enterprise: *793 + installation: *794 + organization: *795 + ref: *808 + repository: *796 sender: *4 required: - action @@ -120931,7 +121024,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -121099,16 +121192,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 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: *793 + repository: *796 sender: *4 required: - action @@ -121202,7 +121295,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *470 + dismissed_comment: *492 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -121342,12 +121435,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *804 - enterprise: *790 - installation: *791 - organization: *792 - ref: *805 - repository: *793 + commit_oid: *807 + enterprise: *793 + installation: *794 + organization: *795 + ref: *808 + repository: *796 sender: *4 required: - action @@ -121604,10 +121697,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -121687,18 +121780,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *792 - pusher_type: &806 + organization: *795 + pusher_type: &809 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &807 + ref: &810 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -121708,7 +121801,7 @@ x-webhooks: enum: - tag - branch - repository: *793 + repository: *796 sender: *4 required: - ref @@ -121791,9 +121884,9 @@ x-webhooks: enum: - created definition: *119 - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 sender: *4 required: - action @@ -121878,9 +121971,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 sender: *4 required: - action @@ -121958,9 +122051,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *119 - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 sender: *4 required: - action @@ -122038,9 +122131,9 @@ x-webhooks: enum: - updated definition: *119 - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 sender: *4 required: - action @@ -122117,19 +122210,19 @@ x-webhooks: type: string enum: - updated - enterprise: *790 - installation: *791 - repository: *793 - organization: *792 + enterprise: *793 + installation: *794 + repository: *796 + organization: *795 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *331 + items: *352 old_property_values: type: array description: The old custom property values for the repository. - items: *331 + items: *352 required: - action - repository @@ -122205,18 +122298,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *790 - installation: *791 - organization: *792 - pusher_type: *806 - ref: *807 + enterprise: *793 + installation: *794 + organization: *795 + pusher_type: *809 + ref: *810 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *793 + repository: *796 sender: *4 required: - ref @@ -122300,11 +122393,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122388,11 +122481,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122476,11 +122569,11 @@ x-webhooks: type: string enum: - created - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122562,11 +122655,11 @@ x-webhooks: type: string enum: - dismissed - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122648,11 +122741,11 @@ x-webhooks: type: string enum: - fixed - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122735,11 +122828,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122821,11 +122914,11 @@ x-webhooks: type: string enum: - reopened - alert: *527 - installation: *791 - organization: *792 - enterprise: *790 - repository: *793 + alert: *549 + installation: *794 + organization: *795 + enterprise: *793 + repository: *796 sender: *4 required: - action @@ -122902,9 +122995,9 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - key: &808 + enterprise: *793 + installation: *794 + key: &811 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -122940,8 +123033,8 @@ x-webhooks: - verified - created_at - read_only - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -123018,11 +123111,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - key: *808 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + key: *811 + organization: *795 + repository: *796 sender: *4 required: - action @@ -123583,12 +123676,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - workflow: &812 + workflow: &815 title: Workflow type: object nullable: true @@ -124314,13 +124407,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *533 + deployment: *555 pull_requests: type: array - items: *627 - repository: *793 - organization: *792 - installation: *791 + items: *649 + repository: *796 + organization: *795 + installation: *794 sender: *4 responses: '200': @@ -124391,7 +124484,7 @@ x-webhooks: type: string enum: - approved - approver: &809 + approver: &812 type: object properties: avatar_url: @@ -124434,11 +124527,11 @@ x-webhooks: type: string comment: type: string - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - reviewers: &810 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + reviewers: &813 type: array items: type: object @@ -124517,7 +124610,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &811 + workflow_job_run: &814 type: object properties: conclusion: @@ -125248,18 +125341,18 @@ x-webhooks: type: string enum: - rejected - approver: *809 + approver: *812 comment: type: string - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - reviewers: *810 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + reviewers: *813 sender: *4 since: type: string - workflow_job_run: *811 + workflow_job_run: *814 workflow_job_runs: type: array items: @@ -125963,13 +126056,13 @@ x-webhooks: type: string enum: - requested - enterprise: *790 + enterprise: *793 environment: type: string - installation: *791 - organization: *792 - repository: *793 - requestor: &817 + installation: *794 + organization: *795 + repository: *796 + requestor: &820 title: User type: object nullable: true @@ -127868,12 +127961,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - workflow: *812 + workflow: *815 workflow_run: title: Deployment Workflow Run type: object @@ -128553,7 +128646,7 @@ x-webhooks: type: string enum: - answered - answer: &815 + answer: &818 type: object properties: author_association: @@ -128710,7 +128803,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &813 + discussion: &816 title: Discussion description: A Discussion in a repository. type: object @@ -128996,7 +129089,7 @@ x-webhooks: - id labels: type: array - items: *589 + items: *611 required: - repository_url - category @@ -129018,10 +129111,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129148,11 +129241,11 @@ x-webhooks: - from required: - category - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129235,11 +129328,11 @@ x-webhooks: type: string enum: - closed - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129321,7 +129414,7 @@ x-webhooks: type: string enum: - created - comment: &814 + comment: &817 type: object properties: author_association: @@ -129478,11 +129571,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129565,12 +129658,12 @@ x-webhooks: type: string enum: - deleted - comment: *814 - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + comment: *817 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129665,12 +129758,12 @@ x-webhooks: - from required: - body - comment: *814 - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + comment: *817 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129754,11 +129847,11 @@ x-webhooks: type: string enum: - created - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129840,11 +129933,11 @@ x-webhooks: type: string enum: - deleted - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -129944,11 +130037,11 @@ x-webhooks: type: string required: - from - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130030,10 +130123,10 @@ x-webhooks: type: string enum: - labeled - discussion: *813 - enterprise: *790 - installation: *791 - label: &816 + discussion: *816 + enterprise: *793 + installation: *794 + label: &819 title: Label type: object properties: @@ -130065,8 +130158,8 @@ x-webhooks: - color - default - description - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130149,11 +130242,11 @@ x-webhooks: type: string enum: - locked - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130235,11 +130328,11 @@ x-webhooks: type: string enum: - pinned - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130321,11 +130414,11 @@ x-webhooks: type: string enum: - reopened - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130410,16 +130503,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *813 - new_repository: *793 + new_discussion: *816 + new_repository: *796 required: - new_discussion - new_repository - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130502,10 +130595,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *813 - old_answer: *815 - organization: *792 - repository: *793 + discussion: *816 + old_answer: *818 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130587,12 +130680,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *813 - enterprise: *790 - installation: *791 - label: *816 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130675,11 +130768,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130761,11 +130854,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *813 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + discussion: *816 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130834,7 +130927,7 @@ x-webhooks: required: true content: application/json: - schema: *799 + schema: *802 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130897,7 +130990,7 @@ x-webhooks: required: true content: application/json: - schema: *801 + schema: *804 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130963,7 +131056,7 @@ x-webhooks: required: true content: application/json: - schema: *797 + schema: *800 responses: '200': description: Return a 200 status to indicate that the data was received @@ -131029,7 +131122,7 @@ x-webhooks: required: true content: application/json: - schema: *798 + schema: *801 responses: '200': description: Return a 200 status to indicate that the data was received @@ -131095,7 +131188,7 @@ x-webhooks: required: true content: application/json: - schema: *799 + schema: *802 responses: '200': description: Return a 200 status to indicate that the data was received @@ -131161,7 +131254,7 @@ x-webhooks: required: true content: application/json: - schema: *800 + schema: *803 responses: '200': description: Return a 200 status to indicate that the data was received @@ -131227,7 +131320,7 @@ x-webhooks: required: true content: application/json: - schema: *801 + schema: *804 responses: '200': description: Return a 200 status to indicate that the data was received @@ -131294,7 +131387,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *790 + enterprise: *793 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -131954,9 +132047,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *791 - organization: *792 - repository: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - forkee @@ -132102,9 +132195,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pages: description: The pages that were updated. type: array @@ -132141,7 +132234,7 @@ x-webhooks: - action - sha - html_url - repository: *793 + repository: *796 sender: *4 required: - pages @@ -132217,10 +132310,10 @@ x-webhooks: type: string enum: - created - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories: &818 + organization: *795 + repositories: &821 description: An array of repository objects that the installation can access. type: array @@ -132246,8 +132339,8 @@ x-webhooks: - name - full_name - private - repository: *793 - requester: *817 + repository: *796 + requester: *820 sender: *4 required: - action @@ -132322,11 +132415,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories: *818 - repository: *793 + organization: *795 + repositories: *821 + repository: *796 requester: nullable: true sender: *4 @@ -132402,11 +132495,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories: *818 - repository: *793 + organization: *795 + repositories: *821 + repository: *796 requester: nullable: true sender: *4 @@ -132482,10 +132575,10 @@ x-webhooks: type: string enum: - added - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories_added: &819 + organization: *795 + repositories_added: &822 description: An array of repository objects, which were added to the installation. type: array @@ -132531,15 +132624,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *793 - repository_selection: &820 + repository: *796 + repository_selection: &823 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *817 + requester: *820 sender: *4 required: - action @@ -132618,10 +132711,10 @@ x-webhooks: type: string enum: - removed - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories_added: *819 + organization: *795 + repositories_added: *822 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -132648,9 +132741,9 @@ x-webhooks: - name - full_name - private - repository: *793 - repository_selection: *820 - requester: *817 + repository: *796 + repository_selection: *823 + requester: *820 sender: *4 required: - action @@ -132729,11 +132822,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories: *818 - repository: *793 + organization: *795 + repositories: *821 + repository: *796 requester: nullable: true sender: *4 @@ -132912,10 +133005,10 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 target_type: type: string @@ -132994,11 +133087,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *790 + enterprise: *793 installation: *22 - organization: *792 - repositories: *818 - repository: *793 + organization: *795 + repositories: *821 + repository: *796 requester: nullable: true sender: *4 @@ -133122,8 +133215,8 @@ x-webhooks: first class actors within GitHub. type: object nullable: true - properties: *145 - required: *146 + properties: *165 + required: *166 reactions: title: Reactions type: object @@ -133250,8 +133343,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -134074,7 +134167,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -134407,8 +134500,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -134488,7 +134581,7 @@ x-webhooks: type: string enum: - deleted - comment: &821 + comment: &824 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -134653,8 +134746,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -135473,7 +135566,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -135808,8 +135901,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -135889,7 +135982,7 @@ x-webhooks: type: string enum: - edited - changes: &849 + changes: &852 description: The changes to the comment. type: object properties: @@ -135901,9 +135994,9 @@ x-webhooks: type: string required: - from - comment: *821 - enterprise: *790 - installation: *791 + comment: *824 + enterprise: *793 + installation: *794 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -136725,7 +136818,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -137058,8 +137151,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -137141,10 +137234,10 @@ x-webhooks: type: string enum: - assigned - assignee: *817 - enterprise: *790 - installation: *791 - issue: &824 + assignee: *820 + enterprise: *793 + installation: *794 + issue: &827 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -137962,7 +138055,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -138063,8 +138156,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -138144,8 +138237,8 @@ x-webhooks: type: string enum: - closed - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -138968,7 +139061,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -139204,8 +139297,8 @@ x-webhooks: required: - state - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -139284,8 +139377,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140099,7 +140192,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -140199,8 +140292,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -140279,8 +140372,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141116,7 +141209,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -141195,7 +141288,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &822 + milestone: &825 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141333,8 +141426,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -141433,8 +141526,8 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -142249,7 +142342,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -142353,9 +142446,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *816 - organization: *792 - repository: *793 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -142435,8 +142528,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -143250,7 +143343,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -143354,9 +143447,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *816 - organization: *792 - repository: *793 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -143436,8 +143529,8 @@ x-webhooks: type: string enum: - locked - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -144275,7 +144368,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -144356,8 +144449,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -144436,8 +144529,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -145272,7 +145365,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -145350,9 +145443,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *822 - organization: *792 - repository: *793 + milestone: *825 + organization: *795 + repository: *796 sender: *4 required: - action @@ -146326,7 +146419,7 @@ x-webhooks: required: - login - id - type: *295 + type: *316 required: - id - number @@ -146795,8 +146888,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -147614,7 +147707,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -147714,8 +147807,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -147795,9 +147888,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *790 - installation: *791 - issue: &823 + enterprise: *793 + installation: *794 + issue: &826 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -148609,7 +148702,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -148709,8 +148802,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -148789,8 +148882,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149707,9 +149800,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *295 - organization: *792 - repository: *793 + type: *316 + organization: *795 + repository: *796 sender: *4 required: - action @@ -150604,7 +150697,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -151172,11 +151265,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *790 - installation: *791 - issue: *823 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *826 + organization: *795 + repository: *796 sender: *4 required: - action @@ -151256,12 +151349,12 @@ x-webhooks: type: string enum: - typed - enterprise: *790 - installation: *791 - issue: *824 - type: *295 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *827 + type: *316 + organization: *795 + repository: *796 sender: *4 required: - action @@ -151342,7 +151435,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &852 + assignee: &855 title: User type: object nullable: true @@ -151412,11 +151505,11 @@ x-webhooks: required: - login - id - enterprise: *790 - installation: *791 - issue: *824 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *827 + organization: *795 + repository: *796 sender: *4 required: - action @@ -151495,12 +151588,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *790 - installation: *791 - issue: *824 - label: *816 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *827 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -151580,8 +151673,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -152420,7 +152513,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -152498,8 +152591,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152579,11 +152672,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *790 - installation: *791 - issue: *823 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *826 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152662,12 +152755,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *790 - installation: *791 - issue: *824 - type: *295 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + issue: *827 + type: *316 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152747,11 +152840,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - label: *816 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152829,11 +152922,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - label: *816 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152943,11 +153036,11 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - label: *816 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + label: *819 + organization: *795 + repository: *796 sender: *4 required: - action @@ -153029,9 +153122,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *790 - installation: *791 - marketplace_purchase: &825 + enterprise: *793 + installation: *794 + marketplace_purchase: &828 title: Marketplace Purchase type: object required: @@ -153114,8 +153207,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *792 - previous_marketplace_purchase: &826 + organization: *795 + previous_marketplace_purchase: &829 title: Marketplace Purchase type: object properties: @@ -153195,7 +153288,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153275,10 +153368,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *790 - installation: *791 - marketplace_purchase: *825 - organization: *792 + enterprise: *793 + installation: *794 + marketplace_purchase: *828 + organization: *795 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153361,7 +153454,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153443,10 +153536,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *790 - installation: *791 - marketplace_purchase: *825 - organization: *792 + enterprise: *793 + installation: *794 + marketplace_purchase: *828 + organization: *795 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153528,7 +153621,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153609,8 +153702,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 marketplace_purchase: title: Marketplace Purchase type: object @@ -153692,9 +153785,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *792 - previous_marketplace_purchase: *826 - repository: *793 + organization: *795 + previous_marketplace_purchase: *829 + repository: *796 sender: *4 required: - action @@ -153774,12 +153867,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *790 - installation: *791 - marketplace_purchase: *825 - organization: *792 - previous_marketplace_purchase: *826 - repository: *793 + enterprise: *793 + installation: *794 + marketplace_purchase: *828 + organization: *795 + previous_marketplace_purchase: *829 + repository: *796 sender: *4 required: - action @@ -153881,11 +153974,11 @@ x-webhooks: type: string required: - to - enterprise: *790 - installation: *791 - member: *817 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + member: *820 + organization: *795 + repository: *796 sender: *4 required: - action @@ -153985,11 +154078,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *790 - installation: *791 - member: *817 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + member: *820 + organization: *795 + repository: *796 sender: *4 required: - action @@ -154068,11 +154161,11 @@ x-webhooks: type: string enum: - removed - enterprise: *790 - installation: *791 - member: *817 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + member: *820 + organization: *795 + repository: *796 sender: *4 required: - action @@ -154150,11 +154243,11 @@ x-webhooks: type: string enum: - added - enterprise: *790 - installation: *791 - member: *817 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + member: *820 + organization: *795 + repository: *796 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154230,7 +154323,7 @@ x-webhooks: required: - login - id - team: &827 + team: &830 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -154420,11 +154513,11 @@ x-webhooks: type: string enum: - removed - enterprise: *790 - installation: *791 - member: *817 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + member: *820 + organization: *795 + repository: *796 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154501,7 +154594,7 @@ x-webhooks: required: - login - id - team: *827 + team: *830 required: - action - scope @@ -154583,8 +154676,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *791 - merge_group: &829 + installation: *794 + merge_group: &832 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -154603,15 +154696,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *828 + head_commit: *831 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -154697,10 +154790,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *791 - merge_group: *829 - organization: *792 - repository: *793 + installation: *794 + merge_group: *832 + organization: *795 + repository: *796 sender: *4 required: - action @@ -154773,7 +154866,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 + enterprise: *793 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -154882,16 +154975,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *791 - organization: *792 + installation: *794 + organization: *795 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: *830 - required: *831 + properties: *833 + required: *834 nullable: true sender: *4 required: @@ -154972,11 +155065,11 @@ x-webhooks: type: string enum: - closed - enterprise: *790 - installation: *791 - milestone: *822 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + milestone: *825 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155055,9 +155148,9 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - milestone: &832 + enterprise: *793 + installation: *794 + milestone: &835 title: Milestone description: A collection of related issues and pull requests. type: object @@ -155194,8 +155287,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155274,11 +155367,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - milestone: *822 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + milestone: *825 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155388,11 +155481,11 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - milestone: *822 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + milestone: *825 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155472,11 +155565,11 @@ x-webhooks: type: string enum: - opened - enterprise: *790 - installation: *791 - milestone: *832 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + milestone: *835 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155555,11 +155648,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *817 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + blocked_user: *820 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155638,11 +155731,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *817 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + blocked_user: *820 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155721,9 +155814,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - membership: &833 + enterprise: *793 + installation: *794 + membership: &836 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -155830,8 +155923,8 @@ x-webhooks: - role - organization_url - user - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155909,11 +156002,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *790 - installation: *791 - membership: *833 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + membership: *836 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155992,8 +156085,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -156109,10 +156202,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 - user: *817 + user: *820 required: - action - invitation @@ -156190,11 +156283,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *790 - installation: *791 - membership: *833 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + membership: *836 + organization: *795 + repository: *796 sender: *4 required: - action @@ -156281,11 +156374,11 @@ x-webhooks: properties: from: type: string - enterprise: *790 - installation: *791 - membership: *833 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + membership: *836 + organization: *795 + repository: *796 sender: *4 required: - action @@ -156361,9 +156454,9 @@ x-webhooks: type: string enum: - published - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 package: description: Information about the package. type: object @@ -156862,7 +156955,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &834 + items: &837 title: Ruby Gems metadata type: object properties: @@ -156957,7 +157050,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -157033,9 +157126,9 @@ x-webhooks: type: string enum: - updated - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 package: description: Information about the package. type: object @@ -157388,7 +157481,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *834 + items: *837 source_url: type: string format: uri @@ -157458,7 +157551,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -157635,12 +157728,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *790 + enterprise: *793 id: type: integer - installation: *791 - organization: *792 - repository: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - id @@ -157717,7 +157810,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &835 + personal_access_token_request: &838 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -157863,10 +157956,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *790 - organization: *792 + enterprise: *793 + organization: *795 sender: *4 - installation: *791 + installation: *794 required: - action - personal_access_token_request @@ -157943,11 +158036,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *835 - enterprise: *790 - organization: *792 + personal_access_token_request: *838 + enterprise: *793 + organization: *795 sender: *4 - installation: *791 + installation: *794 required: - action - personal_access_token_request @@ -158023,11 +158116,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *835 - enterprise: *790 - organization: *792 + personal_access_token_request: *838 + enterprise: *793 + organization: *795 sender: *4 - installation: *791 + installation: *794 required: - action - personal_access_token_request @@ -158102,11 +158195,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *835 - organization: *792 - enterprise: *790 + personal_access_token_request: *838 + organization: *795 + enterprise: *793 sender: *4 - installation: *791 + installation: *794 required: - action - personal_access_token_request @@ -158211,7 +158304,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *836 + last_response: *839 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -158243,8 +158336,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 zen: description: Random string of GitHub zen. @@ -158489,10 +158582,10 @@ x-webhooks: - from required: - note - enterprise: *790 - installation: *791 - organization: *792 - project_card: &837 + enterprise: *793 + installation: *794 + organization: *795 + project_card: &840 title: Project Card type: object properties: @@ -158611,7 +158704,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -158692,11 +158785,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - project_card: *837 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project_card: *840 + repository: *796 sender: *4 required: - action @@ -158776,9 +158869,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 project_card: title: Project Card type: object @@ -158906,8 +158999,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: *830 - required: *831 + properties: *833 + required: *834 nullable: true sender: *4 required: @@ -159001,11 +159094,11 @@ x-webhooks: - from required: - note - enterprise: *790 - installation: *791 - organization: *792 - project_card: *837 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project_card: *840 + repository: *796 sender: *4 required: - action @@ -159099,9 +159192,9 @@ x-webhooks: - from required: - column_id - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 project_card: allOf: - title: Project Card @@ -159291,7 +159384,7 @@ x-webhooks: type: string required: - after_id - repository: *793 + repository: *796 sender: *4 required: - action @@ -159371,10 +159464,10 @@ x-webhooks: type: string enum: - closed - enterprise: *790 - installation: *791 - organization: *792 - project: &839 + enterprise: *793 + installation: *794 + organization: *795 + project: &842 title: Project type: object properties: @@ -159498,7 +159591,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -159578,10 +159671,10 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - project_column: &838 + enterprise: *793 + installation: *794 + organization: *795 + project_column: &841 title: Project Column type: object properties: @@ -159620,7 +159713,7 @@ x-webhooks: - name - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -159699,18 +159792,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - project_column: *838 + enterprise: *793 + installation: *794 + organization: *795 + project_column: *841 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: *830 - required: *831 + properties: *833 + required: *834 nullable: true sender: *4 required: @@ -159800,11 +159893,11 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - organization: *792 - project_column: *838 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project_column: *841 + repository: *796 sender: *4 required: - action @@ -159884,11 +159977,11 @@ x-webhooks: type: string enum: - moved - enterprise: *790 - installation: *791 - organization: *792 - project_column: *838 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project_column: *841 + repository: *796 sender: *4 required: - action @@ -159968,11 +160061,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - project: *839 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project: *842 + repository: *796 sender: *4 required: - action @@ -160052,18 +160145,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - project: *839 + enterprise: *793 + installation: *794 + organization: *795 + project: *842 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: *830 - required: *831 + properties: *833 + required: *834 nullable: true sender: *4 required: @@ -160165,11 +160258,11 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - organization: *792 - project: *839 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project: *842 + repository: *796 sender: *4 required: - action @@ -160248,11 +160341,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *790 - installation: *791 - organization: *792 - project: *839 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + project: *842 + repository: *796 sender: *4 required: - action @@ -160333,9 +160426,9 @@ x-webhooks: type: string enum: - closed - installation: *791 - organization: *792 - projects_v2: &840 + installation: *794 + organization: *795 + projects_v2: &843 title: Projects v2 Project description: A projects v2 project type: object @@ -160478,9 +160571,9 @@ x-webhooks: type: string enum: - created - installation: *791 - organization: *792 - projects_v2: *840 + installation: *794 + organization: *795 + projects_v2: *843 sender: *4 required: - action @@ -160561,9 +160654,9 @@ x-webhooks: type: string enum: - deleted - installation: *791 - organization: *792 - projects_v2: *840 + installation: *794 + organization: *795 + projects_v2: *843 sender: *4 required: - action @@ -160680,9 +160773,9 @@ x-webhooks: type: string to: type: string - installation: *791 - organization: *792 - projects_v2: *840 + installation: *794 + organization: *795 + projects_v2: *843 sender: *4 required: - action @@ -160765,7 +160858,7 @@ x-webhooks: type: string enum: - archived - changes: &844 + changes: &847 type: object properties: archived_at: @@ -160779,9 +160872,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *791 - organization: *792 - projects_v2_item: &841 + installation: *794 + organization: *795 + projects_v2_item: &844 title: Projects v2 Item description: An item belonging to a project type: object @@ -160915,9 +161008,9 @@ x-webhooks: nullable: true to: type: string - installation: *791 - organization: *792 - projects_v2_item: *841 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -160999,9 +161092,9 @@ x-webhooks: type: string enum: - created - installation: *791 - organization: *792 - projects_v2_item: *841 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -161082,9 +161175,9 @@ x-webhooks: type: string enum: - deleted - installation: *791 - organization: *792 - projects_v2_item: *841 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -161190,7 +161283,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &842 + - &845 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -161208,7 +161301,7 @@ x-webhooks: required: - id - name - - &843 + - &846 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -161231,8 +161324,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *842 - - *843 + - *845 + - *846 required: - field_value - type: object @@ -161248,9 +161341,9 @@ x-webhooks: nullable: true required: - body - installation: *791 - organization: *792 - projects_v2_item: *841 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -161345,9 +161438,9 @@ x-webhooks: to: type: string nullable: true - installation: *791 - organization: *792 - projects_v2_item: *841 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -161430,10 +161523,10 @@ x-webhooks: type: string enum: - restored - changes: *844 - installation: *791 - organization: *792 - projects_v2_item: *841 + changes: *847 + installation: *794 + organization: *795 + projects_v2_item: *844 sender: *4 required: - action @@ -161515,9 +161608,9 @@ x-webhooks: type: string enum: - reopened - installation: *791 - organization: *792 - projects_v2: *840 + installation: *794 + organization: *795 + projects_v2: *843 sender: *4 required: - action @@ -161598,9 +161691,9 @@ x-webhooks: type: string enum: - created - installation: *791 - organization: *792 - projects_v2_status_update: &845 + installation: *794 + organization: *795 + projects_v2_status_update: &848 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -161727,9 +161820,9 @@ x-webhooks: type: string enum: - deleted - installation: *791 - organization: *792 - projects_v2_status_update: *845 + installation: *794 + organization: *795 + projects_v2_status_update: *848 sender: *4 required: - action @@ -161865,9 +161958,9 @@ x-webhooks: type: string format: date nullable: true - installation: *791 - organization: *792 - projects_v2_status_update: *845 + installation: *794 + organization: *795 + projects_v2_status_update: *848 sender: *4 required: - action @@ -161938,10 +162031,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - repository @@ -162018,13 +162111,13 @@ x-webhooks: type: string enum: - assigned - assignee: *817 - enterprise: *790 - installation: *791 - number: &846 + assignee: *820 + enterprise: *793 + installation: *794 + number: &849 description: The pull request number. type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -164307,7 +164400,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -164389,11 +164482,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -166671,7 +166764,7 @@ x-webhooks: - draft reason: type: string - repository: *793 + repository: *796 sender: *4 required: - action @@ -166753,11 +166846,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -169035,7 +169128,7 @@ x-webhooks: - draft reason: type: string - repository: *793 + repository: *796 sender: *4 required: - action @@ -169117,13 +169210,13 @@ x-webhooks: type: string enum: - closed - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: &847 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: &850 allOf: - - *627 + - *649 - type: object properties: allow_auto_merge: @@ -169185,7 +169278,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *793 + repository: *796 sender: *4 required: - action @@ -169266,12 +169359,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: *847 - repository: *793 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: *850 + repository: *796 sender: *4 required: - action @@ -169351,11 +169444,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *790 - milestone: *610 - number: *846 - organization: *792 - pull_request: &848 + enterprise: *793 + milestone: *632 + number: *849 + organization: *795 + pull_request: &851 title: Pull Request type: object properties: @@ -171618,7 +171711,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -171697,11 +171790,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -173983,7 +174076,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *793 + repository: *796 sender: *4 required: - action @@ -174107,12 +174200,12 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: *847 - repository: *793 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: *850 + repository: *796 sender: *4 required: - action @@ -174192,11 +174285,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -176463,7 +176556,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -176543,11 +176636,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *790 - installation: *791 - label: *816 - number: *846 - organization: *792 + enterprise: *793 + installation: *794 + label: *819 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -178829,7 +178922,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -178910,10 +179003,10 @@ x-webhooks: type: string enum: - locked - enterprise: *790 - installation: *791 - number: *846 - organization: *792 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -181193,7 +181286,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -181273,12 +181366,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *790 - milestone: *610 - number: *846 - organization: *792 - pull_request: *848 - repository: *793 + enterprise: *793 + milestone: *632 + number: *849 + organization: *795 + pull_request: *851 + repository: *796 sender: *4 required: - action @@ -181357,12 +181450,12 @@ x-webhooks: type: string enum: - opened - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: *847 - repository: *793 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: *850 + repository: *796 sender: *4 required: - action @@ -181443,12 +181536,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: *847 - repository: *793 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: *850 + repository: *796 sender: *4 required: - action @@ -181528,12 +181621,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *790 - installation: *791 - number: *846 - organization: *792 - pull_request: *847 - repository: *793 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 + pull_request: *850 + repository: *796 sender: *4 required: - action @@ -181899,9 +181992,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: type: object properties: @@ -184071,7 +184164,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -184151,7 +184244,7 @@ x-webhooks: type: string enum: - deleted - comment: &850 + comment: &853 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. @@ -184436,9 +184529,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: type: object properties: @@ -186596,7 +186689,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -186676,11 +186769,11 @@ x-webhooks: type: string enum: - edited - changes: *849 - comment: *850 - enterprise: *790 - installation: *791 - organization: *792 + changes: *852 + comment: *853 + enterprise: *793 + installation: *794 + organization: *795 pull_request: type: object properties: @@ -188841,7 +188934,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -188922,9 +189015,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: title: Simple Pull Request type: object @@ -191097,7 +191190,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 + repository: *796 review: description: The review that was affected. type: object @@ -191340,9 +191433,9 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: title: Simple Pull Request type: object @@ -193396,8 +193489,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 - review: &851 + repository: *796 + review: &854 description: The review that was affected. type: object properties: @@ -193626,12 +193719,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: description: The pull request number. type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -195914,7 +196007,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_reviewer: title: User type: object @@ -195998,12 +196091,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: description: The pull request number. type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -198293,7 +198386,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_team: title: Team description: Groups of organization members that gives permissions @@ -198485,12 +198578,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: description: The pull request number. type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -200775,7 +200868,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_reviewer: title: User type: object @@ -200860,12 +200953,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *790 - installation: *791 + enterprise: *793 + installation: *794 number: description: The pull request number. type: integer - organization: *792 + organization: *795 pull_request: title: Pull Request type: object @@ -203141,7 +203234,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_team: title: Team description: Groups of organization members that gives permissions @@ -203322,9 +203415,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: title: Simple Pull Request type: object @@ -205499,8 +205592,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 - review: *851 + repository: *796 + review: *854 sender: *4 required: - action @@ -205580,9 +205673,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: title: Simple Pull Request type: object @@ -207652,7 +207745,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 + repository: *796 sender: *4 thread: type: object @@ -208035,9 +208128,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 pull_request: title: Simple Pull Request type: object @@ -210093,7 +210186,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 + repository: *796 sender: *4 thread: type: object @@ -210479,10 +210572,10 @@ x-webhooks: type: string before: type: string - enterprise: *790 - installation: *791 - number: *846 - organization: *792 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -212753,7 +212846,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -212835,11 +212928,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *852 - enterprise: *790 - installation: *791 - number: *846 - organization: *792 + assignee: *855 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -215122,7 +215215,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -215201,11 +215294,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *790 - installation: *791 - label: *816 - number: *846 - organization: *792 + enterprise: *793 + installation: *794 + label: *819 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -217478,7 +217571,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -217559,10 +217652,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *790 - installation: *791 - number: *846 - organization: *792 + enterprise: *793 + installation: *794 + number: *849 + organization: *795 pull_request: title: Pull Request type: object @@ -219827,7 +219920,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -220027,7 +220120,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *790 + enterprise: *793 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -220119,8 +220212,8 @@ x-webhooks: - url - author - committer - installation: *791 - organization: *792 + installation: *794 + organization: *795 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -220695,9 +220788,9 @@ x-webhooks: type: string enum: - published - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 registry_package: type: object properties: @@ -221143,7 +221236,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *834 + items: *837 summary: type: string tag_name: @@ -221197,7 +221290,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -221275,9 +221368,9 @@ x-webhooks: type: string enum: - updated - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 registry_package: type: object properties: @@ -221585,7 +221678,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *834 + items: *837 summary: type: string tag_name: @@ -221634,7 +221727,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -221711,10 +221804,10 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - release: &853 + enterprise: *793 + installation: *794 + organization: *795 + release: &856 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -222027,7 +222120,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *793 + repository: *796 sender: *4 required: - action @@ -222104,11 +222197,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - release: *853 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + release: *856 + repository: *796 sender: *4 required: - action @@ -222225,11 +222318,11 @@ x-webhooks: type: boolean required: - to - enterprise: *790 - installation: *791 - organization: *792 - release: *853 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + release: *856 + repository: *796 sender: *4 required: - action @@ -222307,9 +222400,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -222626,7 +222719,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *793 + repository: *796 sender: *4 required: - action @@ -222702,10 +222795,10 @@ x-webhooks: type: string enum: - published - enterprise: *790 - installation: *791 - organization: *792 - release: &854 + enterprise: *793 + installation: *794 + organization: *795 + release: &857 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -223019,7 +223112,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *793 + repository: *796 sender: *4 required: - action @@ -223095,11 +223188,11 @@ x-webhooks: type: string enum: - released - enterprise: *790 - installation: *791 - organization: *792 - release: *853 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + release: *856 + repository: *796 sender: *4 required: - action @@ -223175,11 +223268,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *790 - installation: *791 - organization: *792 - release: *854 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + release: *857 + repository: *796 sender: *4 required: - action @@ -223255,11 +223348,11 @@ x-webhooks: type: string enum: - published - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - repository_advisory: *698 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + repository_advisory: *701 sender: *4 required: - action @@ -223335,11 +223428,11 @@ x-webhooks: type: string enum: - reported - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - repository_advisory: *698 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + repository_advisory: *701 sender: *4 required: - action @@ -223415,10 +223508,10 @@ x-webhooks: type: string enum: - archived - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -223495,10 +223588,10 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -223576,10 +223669,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -223663,10 +223756,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -223778,10 +223871,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -223853,10 +223946,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 status: type: string @@ -223937,10 +224030,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -224017,10 +224110,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -224114,10 +224207,10 @@ x-webhooks: - name required: - repository - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -224197,11 +224290,11 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - repository_ruleset: *133 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + repository_ruleset: *152 sender: *4 required: - action @@ -224279,11 +224372,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - repository_ruleset: *133 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + repository_ruleset: *152 sender: *4 required: - action @@ -224361,11 +224454,11 @@ x-webhooks: type: string enum: - edited - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - repository_ruleset: *133 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + repository_ruleset: *152 changes: type: object properties: @@ -224426,16 +224519,16 @@ x-webhooks: properties: added: type: array - items: *132 + items: *669 deleted: type: array - items: *132 + items: *669 updated: type: array items: type: object properties: - rule: *132 + rule: *669 changes: type: object properties: @@ -224669,10 +224762,10 @@ x-webhooks: - from required: - owner - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -224750,10 +224843,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -224831,7 +224924,7 @@ x-webhooks: type: string enum: - create - alert: &855 + alert: &858 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -224952,10 +225045,10 @@ x-webhooks: type: string enum: - open - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -225161,10 +225254,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -225242,11 +225335,11 @@ x-webhooks: type: string enum: - reopen - alert: *855 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + alert: *858 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -225445,10 +225538,10 @@ x-webhooks: enum: - fixed - open - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -225526,7 +225619,7 @@ x-webhooks: type: string enum: - created - alert: &856 + alert: &859 type: object properties: number: *103 @@ -225637,10 +225730,10 @@ x-webhooks: description: Whether the detected secret was found in multiple repositories in the same organization or business. nullable: true - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -225721,11 +225814,11 @@ x-webhooks: type: string enum: - created - alert: *856 - installation: *791 - location: *857 - organization: *792 - repository: *793 + alert: *859 + installation: *794 + location: *860 + organization: *795 + repository: *796 sender: *4 required: - location @@ -225963,11 +226056,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *856 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + alert: *859 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -226045,11 +226138,11 @@ x-webhooks: type: string enum: - reopened - alert: *856 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + alert: *859 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -226127,11 +226220,11 @@ x-webhooks: type: string enum: - resolved - alert: *856 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + alert: *859 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -226209,11 +226302,11 @@ x-webhooks: type: string enum: - validated - alert: *856 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + alert: *859 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -226339,10 +226432,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *793 - enterprise: *790 - installation: *791 - organization: *792 + repository: *796 + enterprise: *793 + installation: *794 + organization: *795 sender: *4 required: - action @@ -226420,11 +226513,11 @@ x-webhooks: type: string enum: - published - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - security_advisory: &858 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + security_advisory: &861 description: The details of the security advisory, including summary, description, and severity. type: object @@ -226607,11 +226700,11 @@ x-webhooks: type: string enum: - updated - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 - security_advisory: *858 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 + security_advisory: *861 sender: *4 required: - action @@ -226684,10 +226777,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -226871,11 +226964,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *334 - enterprise: *790 - installation: *791 - organization: *792 - repository: *398 + security_and_analysis: *355 + enterprise: *793 + installation: *794 + organization: *795 + repository: *420 sender: *4 required: - changes @@ -226953,12 +227046,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: &859 + sponsorship: &862 type: object properties: created_at: @@ -227259,12 +227352,12 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: *859 + sponsorship: *862 required: - action - sponsorship @@ -227352,12 +227445,12 @@ x-webhooks: type: string required: - from - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: *859 + sponsorship: *862 required: - action - changes @@ -227434,17 +227527,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &860 + effective_date: &863 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: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: *859 + sponsorship: *862 required: - action - sponsorship @@ -227518,7 +227611,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &861 + changes: &864 type: object properties: tier: @@ -227562,13 +227655,13 @@ x-webhooks: - from required: - tier - effective_date: *860 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + effective_date: *863 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: *859 + sponsorship: *862 required: - action - changes @@ -227645,13 +227738,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *861 - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + changes: *864 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - sponsorship: *859 + sponsorship: *862 required: - action - changes @@ -227725,10 +227818,10 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227811,10 +227904,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -228234,15 +228327,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *790 + enterprise: *793 id: description: The unique identifier of the status. type: integer - installation: *791 + installation: *794 name: type: string - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 sha: description: The Commit SHA. @@ -228351,15 +228444,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *160 + parent_issue: *180 parent_issue_repo: *64 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *160 - installation: *791 - organization: *792 - repository: *793 + sub_issue: *180 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -228443,15 +228536,15 @@ x-webhooks: parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *160 + parent_issue: *180 parent_issue_repo: *64 sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *160 - installation: *791 - organization: *792 - repository: *793 + sub_issue: *180 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -228535,15 +228628,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *160 + sub_issue: *180 sub_issue_repo: *64 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *160 - installation: *791 - organization: *792 - repository: *793 + parent_issue: *180 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -228627,15 +228720,15 @@ x-webhooks: sub_issue_id: description: The ID of the sub-issue. type: number - sub_issue: *160 + sub_issue: *180 sub_issue_repo: *64 parent_issue_id: description: The ID of the parent issue. type: number - parent_issue: *160 - installation: *791 - organization: *792 - repository: *793 + parent_issue: *180 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -228712,12 +228805,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - team: &862 + team: &865 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -228907,9 +229000,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 repository: title: Repository description: A git repository @@ -229367,7 +229460,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -229443,9 +229536,9 @@ x-webhooks: type: string enum: - created - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 repository: title: Repository description: A git repository @@ -229903,7 +229996,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -229980,9 +230073,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 repository: title: Repository description: A git repository @@ -230440,7 +230533,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -230584,9 +230677,9 @@ x-webhooks: - from required: - permissions - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 repository: title: Repository description: A git repository @@ -231044,7 +231137,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - changes @@ -231122,9 +231215,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *790 - installation: *791 - organization: *792 + enterprise: *793 + installation: *794 + organization: *795 repository: title: Repository description: A git repository @@ -231582,7 +231675,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -231658,10 +231751,10 @@ x-webhooks: type: string enum: - started - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 required: - action @@ -231734,16 +231827,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *790 + enterprise: *793 inputs: type: object nullable: true additionalProperties: true - installation: *791 - organization: *792 + installation: *794 + organization: *795 ref: type: string - repository: *793 + repository: *796 sender: *4 workflow: type: string @@ -231825,10 +231918,10 @@ x-webhooks: type: string enum: - completed - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 workflow_job: allOf: @@ -232065,7 +232158,7 @@ x-webhooks: type: string required: - conclusion - deployment: *533 + deployment: *555 required: - action - repository @@ -232144,10 +232237,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 workflow_job: allOf: @@ -232407,7 +232500,7 @@ x-webhooks: required: - status - steps - deployment: *533 + deployment: *555 required: - action - repository @@ -232486,10 +232579,10 @@ x-webhooks: type: string enum: - queued - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 workflow_job: type: object @@ -232624,7 +232717,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *533 + deployment: *555 required: - action - repository @@ -232703,10 +232796,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 workflow_job: type: object @@ -232842,7 +232935,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *533 + deployment: *555 required: - action - repository @@ -232922,12 +233015,12 @@ x-webhooks: type: string enum: - completed - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - workflow: *812 + workflow: *815 workflow_run: title: Workflow Run type: object @@ -233926,12 +234019,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - workflow: *812 + workflow: *815 workflow_run: title: Workflow Run type: object @@ -234915,12 +235008,12 @@ x-webhooks: type: string enum: - requested - enterprise: *790 - installation: *791 - organization: *792 - repository: *793 + enterprise: *793 + installation: *794 + organization: *795 + repository: *796 sender: *4 - workflow: *812 + workflow: *815 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 c5522d4714..5f7912c15a 100644 --- a/descriptions/ghec/ghec.2022-11-28.json +++ b/descriptions/ghec/ghec.2022-11-28.json @@ -6443,6 +6443,9 @@ ], "default": "disabled" }, + "code_scanning_options": { + "$ref": "#/components/schemas/code-scanning-options" + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -8652,7 +8655,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/enterprise-rules" } } }, @@ -8846,7 +8849,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/enterprise-rules" } } } @@ -19341,6 +19344,9 @@ ], "default": "disabled" }, + "code_scanning_options": { + "$ref": "#/components/schemas/code-scanning-options" + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -28813,7 +28819,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -29077,7 +29088,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -30456,7 +30472,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } }, @@ -30785,7 +30801,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } } @@ -59850,7 +59866,7 @@ "/repos/{owner}/{repo}/issues/{issue_number}/sub_issues": { "get": { "summary": "List sub-issues", - "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\n\n- **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", "tags": [ "issues" ], @@ -115115,7 +115131,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -115288,6 +115311,18 @@ } } }, + "code-scanning-options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code-scanning-default-setup-options": { "type": "object", "description": "Feature options for code scanning default setup", @@ -117226,83 +117261,6 @@ } } }, - "repository-rule-merge-queue": { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, "repository-rule-required-deployments": { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -118043,7 +118001,7 @@ } } }, - "repository-rule": { + "enterprise-rules": { "title": "Repository Rule", "type": "object", "description": "A repository rule.", @@ -118060,9 +118018,6 @@ { "$ref": "#/components/schemas/repository-rule-required-linear-history" }, - { - "$ref": "#/components/schemas/repository-rule-merge-queue" - }, { "$ref": "#/components/schemas/repository-rule-required-deployments" }, @@ -118181,6 +118136,153 @@ } ] }, + "repository-rule-merge-queue": { + "title": "merge_queue", + "description": "Merges must be performed via a merge queue.", + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "merge_queue" + ] + }, + "parameters": { + "type": "object", + "properties": { + "check_response_timeout_minutes": { + "type": "integer", + "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", + "minimum": 1, + "maximum": 360 + }, + "grouping_strategy": { + "type": "string", + "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", + "enum": [ + "ALLGREEN", + "HEADGREEN" + ] + }, + "max_entries_to_build": { + "type": "integer", + "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", + "minimum": 0, + "maximum": 100 + }, + "max_entries_to_merge": { + "type": "integer", + "description": "The maximum number of PRs that will be merged together in a group.", + "minimum": 0, + "maximum": 100 + }, + "merge_method": { + "type": "string", + "description": "Method to use when merging changes from queued pull requests.", + "enum": [ + "MERGE", + "SQUASH", + "REBASE" + ] + }, + "min_entries_to_merge": { + "type": "integer", + "description": "The minimum number of PRs that will be merged together in a group.", + "minimum": 0, + "maximum": 100 + }, + "min_entries_to_merge_wait_minutes": { + "type": "integer", + "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", + "minimum": 0, + "maximum": 360 + } + }, + "required": [ + "check_response_timeout_minutes", + "grouping_strategy", + "max_entries_to_build", + "max_entries_to_merge", + "merge_method", + "min_entries_to_merge", + "min_entries_to_merge_wait_minutes" + ] + } + } + }, + "repository-rule": { + "title": "Repository Rule", + "type": "object", + "description": "A repository rule.", + "oneOf": [ + { + "$ref": "#/components/schemas/repository-rule-creation" + }, + { + "$ref": "#/components/schemas/repository-rule-update" + }, + { + "$ref": "#/components/schemas/repository-rule-deletion" + }, + { + "$ref": "#/components/schemas/repository-rule-required-linear-history" + }, + { + "$ref": "#/components/schemas/repository-rule-merge-queue" + }, + { + "$ref": "#/components/schemas/repository-rule-required-deployments" + }, + { + "$ref": "#/components/schemas/repository-rule-required-signatures" + }, + { + "$ref": "#/components/schemas/repository-rule-pull-request" + }, + { + "$ref": "#/components/schemas/repository-rule-required-status-checks" + }, + { + "$ref": "#/components/schemas/repository-rule-non-fast-forward" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-file-path-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-path-length" + }, + { + "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-size" + }, + { + "$ref": "#/components/schemas/repository-rule-workflows" + }, + { + "$ref": "#/components/schemas/repository-rule-code-scanning" + } + ] + }, "repository-ruleset": { "title": "Repository ruleset", "type": "object", @@ -126557,7 +126659,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -126615,7 +126722,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -127978,6 +128090,73 @@ "subscribers_count" ] }, + "org-rules": { + "title": "Repository Rule", + "type": "object", + "description": "A repository rule.", + "oneOf": [ + { + "$ref": "#/components/schemas/repository-rule-creation" + }, + { + "$ref": "#/components/schemas/repository-rule-update" + }, + { + "$ref": "#/components/schemas/repository-rule-deletion" + }, + { + "$ref": "#/components/schemas/repository-rule-required-linear-history" + }, + { + "$ref": "#/components/schemas/repository-rule-required-deployments" + }, + { + "$ref": "#/components/schemas/repository-rule-required-signatures" + }, + { + "$ref": "#/components/schemas/repository-rule-pull-request" + }, + { + "$ref": "#/components/schemas/repository-rule-required-status-checks" + }, + { + "$ref": "#/components/schemas/repository-rule-non-fast-forward" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-file-path-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-path-length" + }, + { + "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-size" + }, + { + "$ref": "#/components/schemas/repository-rule-workflows" + }, + { + "$ref": "#/components/schemas/repository-rule-code-scanning" + } + ] + }, "rule-suites": { "title": "Rule Suites", "description": "Response", @@ -291003,6 +291182,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -291045,6 +291227,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -291078,6 +291263,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -295471,6 +295659,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "disabled", "secret_scanning_push_protection": "disabled", diff --git a/descriptions/ghec/ghec.2022-11-28.yaml b/descriptions/ghec/ghec.2022-11-28.yaml index 979dd167aa..84c40981e0 100644 --- a/descriptions/ghec/ghec.2022-11-28.yaml +++ b/descriptions/ghec/ghec.2022-11-28.yaml @@ -4516,6 +4516,8 @@ paths: - disabled - not_set default: disabled + code_scanning_options: + "$ref": "#/components/schemas/code-scanning-options" code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -6155,7 +6157,7 @@ paths: type: array description: An array of rules within the ruleset. items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/enterprise-rules" required: - name - enforcement @@ -6286,7 +6288,7 @@ paths: description: An array of rules within the ruleset. type: array items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/enterprise-rules" examples: default: value: @@ -13909,6 +13911,8 @@ paths: - disabled - not_set default: disabled + code_scanning_options: + "$ref": "#/components/schemas/code-scanning-options" code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -20824,6 +20828,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -21035,6 +21044,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -22086,7 +22100,7 @@ paths: type: array description: An array of rules within the ruleset. items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" required: - name - enforcement @@ -22302,7 +22316,7 @@ paths: description: An array of rules within the ruleset. type: array items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" examples: default: value: @@ -43520,11 +43534,11 @@ paths: description: |- You can use the REST API to list the sub-issues on an issue. - This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + This endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types). - - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. - - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. - - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`. - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. tags: - issues @@ -83621,6 +83635,11 @@ components: type: object description: Feature options for code scanning nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -83751,6 +83770,15 @@ components: updated_at: type: string format: date-time + code-scanning-options: + type: object + description: Security Configuration feature options for code scanning + nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code-scanning-default-setup-options: type: object description: Feature options for code scanning default setup @@ -85312,78 +85340,6 @@ components: type: string enum: - required_linear_history - repository-rule-merge-queue: - title: merge_queue - description: Merges must be performed via a merge queue. - type: object - required: - - type - properties: - type: - type: string - enum: - - merge_queue - parameters: - type: object - properties: - check_response_timeout_minutes: - type: integer - description: Maximum time for a required status check to report a conclusion. - After this much time has elapsed, checks that have not reported a - conclusion will be assumed to have failed - minimum: 1 - maximum: 360 - grouping_strategy: - type: string - description: When set to ALLGREEN, the merge commit created by merge - queue for each PR in the group must pass all required checks to merge. - When set to HEADGREEN, only the commit at the head of the merge group, - i.e. the commit containing changes from all of the PRs in the group, - must pass its required checks to merge. - enum: - - ALLGREEN - - HEADGREEN - max_entries_to_build: - type: integer - description: Limit the number of queued pull requests requesting checks - and workflow runs at the same time. - minimum: 0 - maximum: 100 - max_entries_to_merge: - type: integer - description: The maximum number of PRs that will be merged together - in a group. - minimum: 0 - maximum: 100 - merge_method: - type: string - description: Method to use when merging changes from queued pull requests. - enum: - - MERGE - - SQUASH - - REBASE - min_entries_to_merge: - type: integer - description: The minimum number of PRs that will be merged together - in a group. - minimum: 0 - maximum: 100 - min_entries_to_merge_wait_minutes: - type: integer - description: The time merge queue should wait after the first PR is - added to the queue for the minimum group size to be met. After this - time has elapsed, the minimum group size will be ignored and a smaller - group will be merged. - minimum: 0 - maximum: 360 - required: - - check_response_timeout_minutes - - grouping_strategy - - max_entries_to_build - - max_entries_to_merge - - merge_method - - min_entries_to_merge - - min_entries_to_merge_wait_minutes repository-rule-required-deployments: title: required_deployments description: Choose which environments must be successfully deployed to before @@ -85952,7 +85908,7 @@ components: "$ref": "#/components/schemas/repository-rule-params-code-scanning-tool" required: - code_scanning_tools - repository-rule: + enterprise-rules: title: Repository Rule type: object description: A repository rule. @@ -85961,7 +85917,6 @@ components: - "$ref": "#/components/schemas/repository-rule-update" - "$ref": "#/components/schemas/repository-rule-deletion" - "$ref": "#/components/schemas/repository-rule-required-linear-history" - - "$ref": "#/components/schemas/repository-rule-merge-queue" - "$ref": "#/components/schemas/repository-rule-required-deployments" - "$ref": "#/components/schemas/repository-rule-required-signatures" - "$ref": "#/components/schemas/repository-rule-pull-request" @@ -86021,6 +85976,104 @@ components: allOf: - "$ref": "#/components/schemas/repository-ruleset-conditions" - "$ref": "#/components/schemas/repository-ruleset-conditions-repository-property-target" + repository-rule-merge-queue: + title: merge_queue + description: Merges must be performed via a merge queue. + type: object + required: + - type + properties: + type: + type: string + enum: + - merge_queue + parameters: + type: object + properties: + check_response_timeout_minutes: + type: integer + description: Maximum time for a required status check to report a conclusion. + After this much time has elapsed, checks that have not reported a + conclusion will be assumed to have failed + minimum: 1 + maximum: 360 + grouping_strategy: + type: string + description: When set to ALLGREEN, the merge commit created by merge + queue for each PR in the group must pass all required checks to merge. + When set to HEADGREEN, only the commit at the head of the merge group, + i.e. the commit containing changes from all of the PRs in the group, + must pass its required checks to merge. + enum: + - ALLGREEN + - HEADGREEN + max_entries_to_build: + type: integer + description: Limit the number of queued pull requests requesting checks + and workflow runs at the same time. + minimum: 0 + maximum: 100 + max_entries_to_merge: + type: integer + description: The maximum number of PRs that will be merged together + in a group. + minimum: 0 + maximum: 100 + merge_method: + type: string + description: Method to use when merging changes from queued pull requests. + enum: + - MERGE + - SQUASH + - REBASE + min_entries_to_merge: + type: integer + description: The minimum number of PRs that will be merged together + in a group. + minimum: 0 + maximum: 100 + min_entries_to_merge_wait_minutes: + type: integer + description: The time merge queue should wait after the first PR is + added to the queue for the minimum group size to be met. After this + time has elapsed, the minimum group size will be ignored and a smaller + group will be merged. + minimum: 0 + maximum: 360 + required: + - check_response_timeout_minutes + - grouping_strategy + - max_entries_to_build + - max_entries_to_merge + - merge_method + - min_entries_to_merge + - min_entries_to_merge_wait_minutes + repository-rule: + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - "$ref": "#/components/schemas/repository-rule-creation" + - "$ref": "#/components/schemas/repository-rule-update" + - "$ref": "#/components/schemas/repository-rule-deletion" + - "$ref": "#/components/schemas/repository-rule-required-linear-history" + - "$ref": "#/components/schemas/repository-rule-merge-queue" + - "$ref": "#/components/schemas/repository-rule-required-deployments" + - "$ref": "#/components/schemas/repository-rule-required-signatures" + - "$ref": "#/components/schemas/repository-rule-pull-request" + - "$ref": "#/components/schemas/repository-rule-required-status-checks" + - "$ref": "#/components/schemas/repository-rule-non-fast-forward" + - "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + - "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + - "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + - "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + - "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + - "$ref": "#/components/schemas/repository-rule-file-path-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-path-length" + - "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-size" + - "$ref": "#/components/schemas/repository-rule-workflows" + - "$ref": "#/components/schemas/repository-rule-code-scanning" repository-ruleset: title: Repository ruleset type: object @@ -92649,6 +92702,11 @@ components: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the private registry. @@ -92697,6 +92755,11 @@ components: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the private registry. @@ -93819,6 +93882,31 @@ components: - updated_at - network_count - subscribers_count + org-rules: + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - "$ref": "#/components/schemas/repository-rule-creation" + - "$ref": "#/components/schemas/repository-rule-update" + - "$ref": "#/components/schemas/repository-rule-deletion" + - "$ref": "#/components/schemas/repository-rule-required-linear-history" + - "$ref": "#/components/schemas/repository-rule-required-deployments" + - "$ref": "#/components/schemas/repository-rule-required-signatures" + - "$ref": "#/components/schemas/repository-rule-pull-request" + - "$ref": "#/components/schemas/repository-rule-required-status-checks" + - "$ref": "#/components/schemas/repository-rule-non-fast-forward" + - "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + - "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + - "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + - "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + - "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + - "$ref": "#/components/schemas/repository-rule-file-path-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-path-length" + - "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-size" + - "$ref": "#/components/schemas/repository-rule-workflows" + - "$ref": "#/components/schemas/repository-rule-code-scanning" rule-suites: title: Rule Suites description: Response @@ -217511,6 +217599,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: enabled @@ -217545,6 +217635,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: disabled @@ -217572,6 +217664,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: enabled secret_scanning_push_protection: disabled @@ -221273,6 +221367,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: disabled secret_scanning_push_protection: disabled diff --git a/descriptions/ghec/ghec.json b/descriptions/ghec/ghec.json index c5522d4714..5f7912c15a 100644 --- a/descriptions/ghec/ghec.json +++ b/descriptions/ghec/ghec.json @@ -6443,6 +6443,9 @@ ], "default": "disabled" }, + "code_scanning_options": { + "$ref": "#/components/schemas/code-scanning-options" + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -8652,7 +8655,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/enterprise-rules" } } }, @@ -8846,7 +8849,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/enterprise-rules" } } } @@ -19341,6 +19344,9 @@ ], "default": "disabled" }, + "code_scanning_options": { + "$ref": "#/components/schemas/code-scanning-options" + }, "code_scanning_default_setup": { "type": "string", "description": "The enablement status of code scanning default setup", @@ -28813,7 +28819,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -29077,7 +29088,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ] }, "url": { @@ -30456,7 +30472,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } }, @@ -30785,7 +30801,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } } @@ -59850,7 +59866,7 @@ "/repos/{owner}/{repo}/issues/{issue_number}/sub_issues": { "get": { "summary": "List sub-issues", - "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see \"[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\"\n\n- **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", + "description": "You can use the REST API to list the sub-issues on an issue.\n\nThis endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types).\n\n- **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type.\n- **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`.\n- **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`.\n- **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`.", "tags": [ "issues" ], @@ -115115,7 +115131,14 @@ "code_scanning_options": { "type": "object", "description": "Feature options for code scanning", - "nullable": true + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } }, "code_scanning_default_setup": { "type": "string", @@ -115288,6 +115311,18 @@ } } }, + "code-scanning-options": { + "type": "object", + "description": "Security Configuration feature options for code scanning", + "nullable": true, + "properties": { + "allow_advanced": { + "nullable": true, + "type": "boolean", + "description": "Whether to allow repos which use advanced setup" + } + } + }, "code-scanning-default-setup-options": { "type": "object", "description": "Feature options for code scanning default setup", @@ -117226,83 +117261,6 @@ } } }, - "repository-rule-merge-queue": { - "title": "merge_queue", - "description": "Merges must be performed via a merge queue.", - "type": "object", - "required": [ - "type" - ], - "properties": { - "type": { - "type": "string", - "enum": [ - "merge_queue" - ] - }, - "parameters": { - "type": "object", - "properties": { - "check_response_timeout_minutes": { - "type": "integer", - "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", - "minimum": 1, - "maximum": 360 - }, - "grouping_strategy": { - "type": "string", - "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", - "enum": [ - "ALLGREEN", - "HEADGREEN" - ] - }, - "max_entries_to_build": { - "type": "integer", - "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", - "minimum": 0, - "maximum": 100 - }, - "max_entries_to_merge": { - "type": "integer", - "description": "The maximum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "merge_method": { - "type": "string", - "description": "Method to use when merging changes from queued pull requests.", - "enum": [ - "MERGE", - "SQUASH", - "REBASE" - ] - }, - "min_entries_to_merge": { - "type": "integer", - "description": "The minimum number of PRs that will be merged together in a group.", - "minimum": 0, - "maximum": 100 - }, - "min_entries_to_merge_wait_minutes": { - "type": "integer", - "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", - "minimum": 0, - "maximum": 360 - } - }, - "required": [ - "check_response_timeout_minutes", - "grouping_strategy", - "max_entries_to_build", - "max_entries_to_merge", - "merge_method", - "min_entries_to_merge", - "min_entries_to_merge_wait_minutes" - ] - } - } - }, "repository-rule-required-deployments": { "title": "required_deployments", "description": "Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.", @@ -118043,7 +118001,7 @@ } } }, - "repository-rule": { + "enterprise-rules": { "title": "Repository Rule", "type": "object", "description": "A repository rule.", @@ -118060,9 +118018,6 @@ { "$ref": "#/components/schemas/repository-rule-required-linear-history" }, - { - "$ref": "#/components/schemas/repository-rule-merge-queue" - }, { "$ref": "#/components/schemas/repository-rule-required-deployments" }, @@ -118181,6 +118136,153 @@ } ] }, + "repository-rule-merge-queue": { + "title": "merge_queue", + "description": "Merges must be performed via a merge queue.", + "type": "object", + "required": [ + "type" + ], + "properties": { + "type": { + "type": "string", + "enum": [ + "merge_queue" + ] + }, + "parameters": { + "type": "object", + "properties": { + "check_response_timeout_minutes": { + "type": "integer", + "description": "Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed", + "minimum": 1, + "maximum": 360 + }, + "grouping_strategy": { + "type": "string", + "description": "When set to ALLGREEN, the merge commit created by merge queue for each PR in the group must pass all required checks to merge. When set to HEADGREEN, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.", + "enum": [ + "ALLGREEN", + "HEADGREEN" + ] + }, + "max_entries_to_build": { + "type": "integer", + "description": "Limit the number of queued pull requests requesting checks and workflow runs at the same time.", + "minimum": 0, + "maximum": 100 + }, + "max_entries_to_merge": { + "type": "integer", + "description": "The maximum number of PRs that will be merged together in a group.", + "minimum": 0, + "maximum": 100 + }, + "merge_method": { + "type": "string", + "description": "Method to use when merging changes from queued pull requests.", + "enum": [ + "MERGE", + "SQUASH", + "REBASE" + ] + }, + "min_entries_to_merge": { + "type": "integer", + "description": "The minimum number of PRs that will be merged together in a group.", + "minimum": 0, + "maximum": 100 + }, + "min_entries_to_merge_wait_minutes": { + "type": "integer", + "description": "The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.", + "minimum": 0, + "maximum": 360 + } + }, + "required": [ + "check_response_timeout_minutes", + "grouping_strategy", + "max_entries_to_build", + "max_entries_to_merge", + "merge_method", + "min_entries_to_merge", + "min_entries_to_merge_wait_minutes" + ] + } + } + }, + "repository-rule": { + "title": "Repository Rule", + "type": "object", + "description": "A repository rule.", + "oneOf": [ + { + "$ref": "#/components/schemas/repository-rule-creation" + }, + { + "$ref": "#/components/schemas/repository-rule-update" + }, + { + "$ref": "#/components/schemas/repository-rule-deletion" + }, + { + "$ref": "#/components/schemas/repository-rule-required-linear-history" + }, + { + "$ref": "#/components/schemas/repository-rule-merge-queue" + }, + { + "$ref": "#/components/schemas/repository-rule-required-deployments" + }, + { + "$ref": "#/components/schemas/repository-rule-required-signatures" + }, + { + "$ref": "#/components/schemas/repository-rule-pull-request" + }, + { + "$ref": "#/components/schemas/repository-rule-required-status-checks" + }, + { + "$ref": "#/components/schemas/repository-rule-non-fast-forward" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-file-path-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-path-length" + }, + { + "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-size" + }, + { + "$ref": "#/components/schemas/repository-rule-workflows" + }, + { + "$ref": "#/components/schemas/repository-rule-code-scanning" + } + ] + }, "repository-ruleset": { "title": "Repository ruleset", "type": "object", @@ -126557,7 +126659,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -126615,7 +126722,12 @@ "composer_repository", "docker_registry", "git_source", - "helm_registry" + "helm_registry", + "hex_organization", + "hex_repository", + "pub_repository", + "python_index", + "terraform_registry" ], "type": "string" }, @@ -127978,6 +128090,73 @@ "subscribers_count" ] }, + "org-rules": { + "title": "Repository Rule", + "type": "object", + "description": "A repository rule.", + "oneOf": [ + { + "$ref": "#/components/schemas/repository-rule-creation" + }, + { + "$ref": "#/components/schemas/repository-rule-update" + }, + { + "$ref": "#/components/schemas/repository-rule-deletion" + }, + { + "$ref": "#/components/schemas/repository-rule-required-linear-history" + }, + { + "$ref": "#/components/schemas/repository-rule-required-deployments" + }, + { + "$ref": "#/components/schemas/repository-rule-required-signatures" + }, + { + "$ref": "#/components/schemas/repository-rule-pull-request" + }, + { + "$ref": "#/components/schemas/repository-rule-required-status-checks" + }, + { + "$ref": "#/components/schemas/repository-rule-non-fast-forward" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-file-path-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-path-length" + }, + { + "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + }, + { + "$ref": "#/components/schemas/repository-rule-max-file-size" + }, + { + "$ref": "#/components/schemas/repository-rule-workflows" + }, + { + "$ref": "#/components/schemas/repository-rule-code-scanning" + } + ] + }, "rule-suites": { "title": "Rule Suites", "description": "Response", @@ -291003,6 +291182,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "enabled", @@ -291045,6 +291227,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "secret_scanning": "enabled", "secret_scanning_push_protection": "enabled", "secret_scanning_delegated_bypass": "disabled", @@ -291078,6 +291263,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "enabled", "secret_scanning_push_protection": "disabled", @@ -295471,6 +295659,9 @@ "runner_type": "not_set", "runner_label": null }, + "code_scanning_options": { + "allow_advanced": false + }, "code_scanning_delegated_alert_dismissal": "disabled", "secret_scanning": "disabled", "secret_scanning_push_protection": "disabled", diff --git a/descriptions/ghec/ghec.yaml b/descriptions/ghec/ghec.yaml index 979dd167aa..84c40981e0 100644 --- a/descriptions/ghec/ghec.yaml +++ b/descriptions/ghec/ghec.yaml @@ -4516,6 +4516,8 @@ paths: - disabled - not_set default: disabled + code_scanning_options: + "$ref": "#/components/schemas/code-scanning-options" code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -6155,7 +6157,7 @@ paths: type: array description: An array of rules within the ruleset. items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/enterprise-rules" required: - name - enforcement @@ -6286,7 +6288,7 @@ paths: description: An array of rules within the ruleset. type: array items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/enterprise-rules" examples: default: value: @@ -13909,6 +13911,8 @@ paths: - disabled - not_set default: disabled + code_scanning_options: + "$ref": "#/components/schemas/code-scanning-options" code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -20824,6 +20828,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -21035,6 +21044,11 @@ paths: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry url: description: The URL of the private registry. type: string @@ -22086,7 +22100,7 @@ paths: type: array description: An array of rules within the ruleset. items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" required: - name - enforcement @@ -22302,7 +22316,7 @@ paths: description: An array of rules within the ruleset. type: array items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" examples: default: value: @@ -43520,11 +43534,11 @@ paths: description: |- You can use the REST API to list the sub-issues on an issue. - This endpoint supports the following custom media types. For more information, see "[Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types)." + This endpoint supports the following custom media types. For more information, see [Media types](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#media-types). - - **`application/vnd.github.raw+json`**: Returns the raw markdown body. Response will include `body`. This is the default if you do not pass any specific media type. - - **`application/vnd.github.text+json`**: Returns a text only representation of the markdown body. Response will include `body_text`. - - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's markdown. Response will include `body_html`. + - **`application/vnd.github.raw+json`**: Returns the raw Markdown body. Response will include `body`. This is the default if you do not pass any specific media type. + - **`application/vnd.github.text+json`**: Returns a text only representation of the Markdown body. Response will include `body_text`. + - **`application/vnd.github.html+json`**: Returns HTML rendered from the body's Markdown. Response will include `body_html`. - **`application/vnd.github.full+json`**: Returns raw, text, and HTML representations. Response will include `body`, `body_text`, and `body_html`. tags: - issues @@ -83621,6 +83635,11 @@ components: type: object description: Feature options for code scanning nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code_scanning_default_setup: type: string description: The enablement status of code scanning default setup @@ -83751,6 +83770,15 @@ components: updated_at: type: string format: date-time + code-scanning-options: + type: object + description: Security Configuration feature options for code scanning + nullable: true + properties: + allow_advanced: + nullable: true + type: boolean + description: Whether to allow repos which use advanced setup code-scanning-default-setup-options: type: object description: Feature options for code scanning default setup @@ -85312,78 +85340,6 @@ components: type: string enum: - required_linear_history - repository-rule-merge-queue: - title: merge_queue - description: Merges must be performed via a merge queue. - type: object - required: - - type - properties: - type: - type: string - enum: - - merge_queue - parameters: - type: object - properties: - check_response_timeout_minutes: - type: integer - description: Maximum time for a required status check to report a conclusion. - After this much time has elapsed, checks that have not reported a - conclusion will be assumed to have failed - minimum: 1 - maximum: 360 - grouping_strategy: - type: string - description: When set to ALLGREEN, the merge commit created by merge - queue for each PR in the group must pass all required checks to merge. - When set to HEADGREEN, only the commit at the head of the merge group, - i.e. the commit containing changes from all of the PRs in the group, - must pass its required checks to merge. - enum: - - ALLGREEN - - HEADGREEN - max_entries_to_build: - type: integer - description: Limit the number of queued pull requests requesting checks - and workflow runs at the same time. - minimum: 0 - maximum: 100 - max_entries_to_merge: - type: integer - description: The maximum number of PRs that will be merged together - in a group. - minimum: 0 - maximum: 100 - merge_method: - type: string - description: Method to use when merging changes from queued pull requests. - enum: - - MERGE - - SQUASH - - REBASE - min_entries_to_merge: - type: integer - description: The minimum number of PRs that will be merged together - in a group. - minimum: 0 - maximum: 100 - min_entries_to_merge_wait_minutes: - type: integer - description: The time merge queue should wait after the first PR is - added to the queue for the minimum group size to be met. After this - time has elapsed, the minimum group size will be ignored and a smaller - group will be merged. - minimum: 0 - maximum: 360 - required: - - check_response_timeout_minutes - - grouping_strategy - - max_entries_to_build - - max_entries_to_merge - - merge_method - - min_entries_to_merge - - min_entries_to_merge_wait_minutes repository-rule-required-deployments: title: required_deployments description: Choose which environments must be successfully deployed to before @@ -85952,7 +85908,7 @@ components: "$ref": "#/components/schemas/repository-rule-params-code-scanning-tool" required: - code_scanning_tools - repository-rule: + enterprise-rules: title: Repository Rule type: object description: A repository rule. @@ -85961,7 +85917,6 @@ components: - "$ref": "#/components/schemas/repository-rule-update" - "$ref": "#/components/schemas/repository-rule-deletion" - "$ref": "#/components/schemas/repository-rule-required-linear-history" - - "$ref": "#/components/schemas/repository-rule-merge-queue" - "$ref": "#/components/schemas/repository-rule-required-deployments" - "$ref": "#/components/schemas/repository-rule-required-signatures" - "$ref": "#/components/schemas/repository-rule-pull-request" @@ -86021,6 +85976,104 @@ components: allOf: - "$ref": "#/components/schemas/repository-ruleset-conditions" - "$ref": "#/components/schemas/repository-ruleset-conditions-repository-property-target" + repository-rule-merge-queue: + title: merge_queue + description: Merges must be performed via a merge queue. + type: object + required: + - type + properties: + type: + type: string + enum: + - merge_queue + parameters: + type: object + properties: + check_response_timeout_minutes: + type: integer + description: Maximum time for a required status check to report a conclusion. + After this much time has elapsed, checks that have not reported a + conclusion will be assumed to have failed + minimum: 1 + maximum: 360 + grouping_strategy: + type: string + description: When set to ALLGREEN, the merge commit created by merge + queue for each PR in the group must pass all required checks to merge. + When set to HEADGREEN, only the commit at the head of the merge group, + i.e. the commit containing changes from all of the PRs in the group, + must pass its required checks to merge. + enum: + - ALLGREEN + - HEADGREEN + max_entries_to_build: + type: integer + description: Limit the number of queued pull requests requesting checks + and workflow runs at the same time. + minimum: 0 + maximum: 100 + max_entries_to_merge: + type: integer + description: The maximum number of PRs that will be merged together + in a group. + minimum: 0 + maximum: 100 + merge_method: + type: string + description: Method to use when merging changes from queued pull requests. + enum: + - MERGE + - SQUASH + - REBASE + min_entries_to_merge: + type: integer + description: The minimum number of PRs that will be merged together + in a group. + minimum: 0 + maximum: 100 + min_entries_to_merge_wait_minutes: + type: integer + description: The time merge queue should wait after the first PR is + added to the queue for the minimum group size to be met. After this + time has elapsed, the minimum group size will be ignored and a smaller + group will be merged. + minimum: 0 + maximum: 360 + required: + - check_response_timeout_minutes + - grouping_strategy + - max_entries_to_build + - max_entries_to_merge + - merge_method + - min_entries_to_merge + - min_entries_to_merge_wait_minutes + repository-rule: + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - "$ref": "#/components/schemas/repository-rule-creation" + - "$ref": "#/components/schemas/repository-rule-update" + - "$ref": "#/components/schemas/repository-rule-deletion" + - "$ref": "#/components/schemas/repository-rule-required-linear-history" + - "$ref": "#/components/schemas/repository-rule-merge-queue" + - "$ref": "#/components/schemas/repository-rule-required-deployments" + - "$ref": "#/components/schemas/repository-rule-required-signatures" + - "$ref": "#/components/schemas/repository-rule-pull-request" + - "$ref": "#/components/schemas/repository-rule-required-status-checks" + - "$ref": "#/components/schemas/repository-rule-non-fast-forward" + - "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + - "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + - "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + - "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + - "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + - "$ref": "#/components/schemas/repository-rule-file-path-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-path-length" + - "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-size" + - "$ref": "#/components/schemas/repository-rule-workflows" + - "$ref": "#/components/schemas/repository-rule-code-scanning" repository-ruleset: title: Repository ruleset type: object @@ -92649,6 +92702,11 @@ components: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the private registry. @@ -92697,6 +92755,11 @@ components: - docker_registry - git_source - helm_registry + - hex_organization + - hex_repository + - pub_repository + - python_index + - terraform_registry type: string username: description: The username to use when authenticating with the private registry. @@ -93819,6 +93882,31 @@ components: - updated_at - network_count - subscribers_count + org-rules: + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - "$ref": "#/components/schemas/repository-rule-creation" + - "$ref": "#/components/schemas/repository-rule-update" + - "$ref": "#/components/schemas/repository-rule-deletion" + - "$ref": "#/components/schemas/repository-rule-required-linear-history" + - "$ref": "#/components/schemas/repository-rule-required-deployments" + - "$ref": "#/components/schemas/repository-rule-required-signatures" + - "$ref": "#/components/schemas/repository-rule-pull-request" + - "$ref": "#/components/schemas/repository-rule-required-status-checks" + - "$ref": "#/components/schemas/repository-rule-non-fast-forward" + - "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + - "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + - "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + - "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + - "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + - "$ref": "#/components/schemas/repository-rule-file-path-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-path-length" + - "$ref": "#/components/schemas/repository-rule-file-extension-restriction" + - "$ref": "#/components/schemas/repository-rule-max-file-size" + - "$ref": "#/components/schemas/repository-rule-workflows" + - "$ref": "#/components/schemas/repository-rule-code-scanning" rule-suites: title: Rule Suites description: Response @@ -217511,6 +217599,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: enabled @@ -217545,6 +217635,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false secret_scanning: enabled secret_scanning_push_protection: enabled secret_scanning_delegated_bypass: disabled @@ -217572,6 +217664,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: enabled secret_scanning_push_protection: disabled @@ -221273,6 +221367,8 @@ components: code_scanning_default_setup_options: runner_type: not_set runner_label: + code_scanning_options: + allow_advanced: false code_scanning_delegated_alert_dismissal: disabled secret_scanning: disabled secret_scanning_push_protection: disabled diff --git a/descriptions/ghes-3.13/dereferenced/ghes-3.13.2022-11-28.deref.yaml b/descriptions/ghes-3.13/dereferenced/ghes-3.13.2022-11-28.deref.yaml index 4a671a1bab..7185167bcd 100644 --- a/descriptions/ghes-3.13/dereferenced/ghes-3.13.2022-11-28.deref.yaml +++ b/descriptions/ghes-3.13/dereferenced/ghes-3.13.2022-11-28.deref.yaml @@ -4442,7 +4442,7 @@ paths: application/json: schema: *24 application/scim+json: - schema: &542 + schema: &543 title: Scim Error description: Scim Error type: object @@ -12319,7 +12319,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &362 + instances_url: &377 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -12354,7 +12354,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &363 + dismissed_reason: &378 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -12363,13 +12363,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &364 + dismissed_comment: &379 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &365 + rule: &380 type: object properties: id: @@ -12408,7 +12408,7 @@ paths: description: A set of tags applicable for the rule. items: type: string - tool: &366 + tool: &381 type: object properties: name: *90 @@ -12418,15 +12418,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *91 - most_recent_instance: &367 + most_recent_instance: &382 type: object properties: - ref: &360 + ref: &375 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &372 + analysis_key: &387 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -12437,7 +12437,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &373 + category: &388 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -13362,7 +13362,7 @@ paths: enum: - development - runtime - security_advisory: &395 + security_advisory: &410 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -13593,7 +13593,7 @@ paths: nullable: true maxLength: 280 fixed_at: *102 - auto_dismissed_at: &396 + auto_dismissed_at: &411 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -13958,7 +13958,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *65 - - &250 + - &265 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -13969,7 +13969,7 @@ paths: enum: - open - resolved - - &251 + - &266 name: secret_type in: query description: A comma-separated list of secret types to return. By default @@ -13978,7 +13978,7 @@ paths: required: false schema: type: string - - &252 + - &267 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -13987,7 +13987,7 @@ paths: required: false schema: type: string - - &253 + - &268 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -14003,7 +14003,7 @@ paths: - *4 - *88 - *89 - - &254 + - &269 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -14019,7 +14019,7 @@ paths: application/json: schema: type: array - items: &255 + items: &270 type: object properties: number: *93 @@ -14038,14 +14038,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &533 + state: &534 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &534 + resolution: &535 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -14111,7 +14111,7 @@ paths: - inactive - unknown examples: - default: &256 + default: &271 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -14372,7 +14372,7 @@ paths: description: Success content: application/json: - schema: &258 + schema: &273 type: object properties: total_advanced_security_committers: @@ -14427,7 +14427,7 @@ paths: required: - repositories examples: - default: &259 + default: &274 value: total_advanced_security_committers: 2 total_count: 2 @@ -14591,7 +14591,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &439 + properties: &454 id: type: integer format: int64 @@ -14703,7 +14703,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &385 + properties: &400 url: type: string format: uri @@ -14773,7 +14773,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &386 + required: &401 - closed_issues - creator - description @@ -14852,7 +14852,7 @@ paths: timeline_url: type: string format: uri - type: &566 + type: &567 title: Issue Type description: The type of issue. type: object @@ -14977,7 +14977,7 @@ paths: - total - completed - percent_completed - required: &440 + required: &455 - assignee - closed_at - comments @@ -14999,7 +14999,7 @@ paths: - author_association - created_at - updated_at - comment: &437 + comment: &452 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15561,7 +15561,7 @@ paths: url: type: string format: uri - user: &581 + user: &582 title: Public User description: Public User type: object @@ -20182,14 +20182,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &282 + - &297 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &283 + - &298 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20260,7 +20260,7 @@ paths: '404': *26 '403': *43 '304': *42 - '301': &294 + '301': &309 description: Moved permanently content: application/json: @@ -20282,7 +20282,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &468 + - &483 name: all description: If `true`, show notifications marked as read. in: query @@ -20290,7 +20290,7 @@ paths: schema: type: boolean default: false - - &469 + - &484 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20300,7 +20300,7 @@ paths: type: boolean default: false - *111 - - &470 + - &485 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -20744,7 +20744,7 @@ paths: - url - subscription_url examples: - default: &471 + default: &486 value: - id: '1' repository: @@ -21290,7 +21290,7 @@ paths: type: array items: *70 examples: - default: &590 + default: &591 value: - login: github id: 1 @@ -22142,7 +22142,7 @@ paths: type: integer repository_cache_usages: type: array - items: &299 + items: &314 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -22393,7 +22393,7 @@ paths: type: array items: *84 examples: - default: &587 + default: &588 value: total_count: 1 repositories: @@ -24194,7 +24194,7 @@ paths: description: Response content: application/json: - schema: &321 + schema: &336 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -24223,7 +24223,7 @@ paths: - key_id - key examples: - default: &322 + default: &337 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24636,7 +24636,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#list-organization-variables parameters: - *135 - - &306 + - &321 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.13/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -25285,7 +25285,7 @@ paths: be returned. in: query required: false - schema: &361 + schema: &376 type: string description: Severity of a code scanning alert. enum: @@ -25782,7 +25782,7 @@ paths: description: Response content: application/json: - schema: &399 + schema: &414 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -25799,7 +25799,7 @@ paths: - key_id - key examples: - default: &400 + default: &415 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26380,7 +26380,7 @@ paths: description: Response content: application/json: - schema: &277 + schema: &292 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -26461,7 +26461,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &278 + default: &293 value: group_id: '123' group_name: Octocat admins @@ -26516,7 +26516,7 @@ paths: description: Response content: application/json: - schema: &275 + schema: &290 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -26553,7 +26553,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &276 + default: &291 value: groups: - group_id: '123' @@ -27189,7 +27189,7 @@ paths: application/json: schema: *39 examples: - default: &434 + default: &449 value: id: 1 account: @@ -28908,7 +28908,7 @@ paths: - nuget - container - *135 - - &591 + - &592 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -28949,7 +28949,7 @@ paths: default: *215 '403': *43 '401': *41 - '400': &593 + '400': &594 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -31402,7 +31402,7 @@ paths: description: Response content: application/json: - schema: &293 + schema: &308 title: Full Repository description: Full Repository type: object @@ -31900,7 +31900,7 @@ paths: - network_count - subscribers_count examples: - default: &295 + default: &310 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -32490,7 +32490,7 @@ paths: application/json: schema: type: array - items: &248 + items: &262 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -32744,12 +32744,12 @@ paths: - repository_property rules: type: array - items: &247 + items: &521 title: Repository Rule type: object description: A repository rule. oneOf: - - &504 + - &247 title: creation description: Only allow users with bypass permission to create matching refs. @@ -32761,7 +32761,7 @@ paths: type: string enum: - creation - - &505 + - &248 title: update description: Only allow users with bypass permission to update matching refs. @@ -32782,7 +32782,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &507 + - &249 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -32794,7 +32794,7 @@ paths: type: string enum: - deletion - - &508 + - &250 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -32806,7 +32806,7 @@ paths: type: string enum: - required_linear_history - - &509 + - &251 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -32830,7 +32830,7 @@ paths: type: string required: - required_deployment_environments - - &510 + - &252 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -32842,7 +32842,7 @@ paths: type: string enum: - required_signatures - - &511 + - &253 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -32893,7 +32893,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &512 + - &254 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -32941,7 +32941,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &513 + - &255 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -32953,7 +32953,7 @@ paths: type: string enum: - non_fast_forward - - &514 + - &256 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -32989,7 +32989,7 @@ paths: required: - operator - pattern - - &515 + - &257 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -33025,7 +33025,7 @@ paths: required: - operator - pattern - - &516 + - &258 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -33061,7 +33061,7 @@ paths: required: - operator - pattern - - &517 + - &259 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -33097,7 +33097,7 @@ paths: required: - operator - pattern - - &518 + - &260 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -33133,7 +33133,7 @@ paths: required: - operator - pattern - - &519 + - &261 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -33264,7 +33264,26 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *247 + items: &264 + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - *247 + - *248 + - *249 + - *250 + - *251 + - *252 + - *253 + - *254 + - *255 + - *256 + - *257 + - *258 + - *259 + - *260 + - *261 source_type: type: string description: The type of the source of the ruleset @@ -33308,9 +33327,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: &249 + default: &263 value: id: 21 name: super cool ruleset @@ -33365,7 +33384,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *135 - - &521 + - &522 name: ref description: The name of the ref. Cannot contain wildcard characters. When specified, only rule evaluations triggered for this ref will be returned. @@ -33378,7 +33397,7 @@ paths: in: query schema: type: string - - &522 + - &523 name: time_period description: |- The time period to filter by. @@ -33394,14 +33413,14 @@ paths: - week - month default: day - - &523 + - &524 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &524 + - &525 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -33421,7 +33440,7 @@ paths: description: Response content: application/json: - schema: &525 + schema: &526 title: Rule Suites description: Response type: array @@ -33475,7 +33494,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &526 + default: &527 value: - id: 21 actor_id: 12 @@ -33519,7 +33538,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *135 - - &527 + - &528 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -33535,7 +33554,7 @@ paths: description: Response content: application/json: - schema: &528 + schema: &529 title: Rule Suite description: Response type: object @@ -33633,7 +33652,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &529 + default: &530 value: id: 21 actor_id: 12 @@ -33706,9 +33725,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: *249 + default: *263 '404': *26 '500': *220 put: @@ -33760,7 +33779,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *247 + items: *264 examples: default: value: @@ -33795,9 +33814,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: *249 + default: *263 '404': *26 '500': *220 delete: @@ -33844,14 +33863,14 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *135 - - *250 - - *251 - - *252 - - *253 + - *265 + - *266 + - *267 + - *268 - *9 - *5 - *4 - - &531 + - &532 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.13/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -33861,7 +33880,7 @@ paths: required: false schema: type: string - - &532 + - &533 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.13/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -33871,7 +33890,7 @@ paths: required: false schema: type: string - - *254 + - *269 responses: '200': description: Response @@ -33879,9 +33898,9 @@ paths: application/json: schema: type: array - items: *255 + items: *270 examples: - default: *256 + default: *271 headers: Link: *6 '404': *26 @@ -33915,12 +33934,12 @@ paths: application/json: schema: type: array - items: &481 + items: &496 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &260 + properties: &275 id: description: Unique identifier of the team type: integer @@ -33973,7 +33992,7 @@ paths: LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &261 + required: &276 - id - node_id - url @@ -33985,7 +34004,7 @@ paths: - repositories_url - slug examples: - default: &262 + default: &277 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -34023,7 +34042,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/orgs/security-managers#add-a-security-manager-team parameters: - *135 - - &257 + - &272 name: team_slug description: The slug of the team name. in: path @@ -34058,7 +34077,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *135 - - *257 + - *272 responses: '204': description: Response @@ -34094,9 +34113,9 @@ paths: description: Success content: application/json: - schema: *258 + schema: *273 examples: - default: *259 + default: *274 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -34124,7 +34143,7 @@ paths: application/json: schema: type: array - items: &284 + items: &299 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -34183,8 +34202,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *260 - required: *261 + properties: *275 + required: *276 nullable: true required: - id @@ -34199,7 +34218,7 @@ paths: - slug - parent examples: - default: *262 + default: *277 headers: Link: *6 '403': *43 @@ -34301,7 +34320,7 @@ paths: description: Response content: application/json: - schema: &263 + schema: &278 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -34364,8 +34383,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *260 - required: *261 + properties: *275 + required: *276 nullable: true members_count: type: integer @@ -34611,7 +34630,7 @@ paths: - repos_count - organization examples: - default: &264 + default: &279 value: id: 1 node_id: MDQ6VGVhbTE= @@ -34681,15 +34700,15 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#get-a-team-by-name parameters: - *135 - - *257 + - *272 responses: '200': description: Response content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '404': *26 x-github: githubCloudOnly: false @@ -34711,7 +34730,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#update-a-team parameters: - *135 - - *257 + - *272 requestBody: required: false content: @@ -34773,16 +34792,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '201': description: Response content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '404': *26 '422': *35 '403': *43 @@ -34808,7 +34827,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#delete-a-team parameters: - *135 - - *257 + - *272 responses: '204': description: Response @@ -34835,7 +34854,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#list-discussions parameters: - *135 - - *257 + - *272 - *9 - *4 - *5 @@ -34852,7 +34871,7 @@ paths: application/json: schema: type: array - items: &265 + items: &280 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -34951,7 +34970,7 @@ paths: - updated_at - url examples: - default: &571 + default: &572 value: - author: login: octocat @@ -35026,7 +35045,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#create-a-discussion parameters: - *135 - - *257 + - *272 requestBody: required: true content: @@ -35060,9 +35079,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: &266 + default: &281 value: author: login: octocat @@ -35135,8 +35154,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#get-a-discussion parameters: - *135 - - *257 - - &267 + - *272 + - &282 name: discussion_number description: The number that identifies the discussion. in: path @@ -35148,9 +35167,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: *266 + default: *281 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35173,8 +35192,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#update-a-discussion parameters: - *135 - - *257 - - *267 + - *272 + - *282 requestBody: required: false content: @@ -35197,9 +35216,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: &572 + default: &573 value: author: login: octocat @@ -35270,8 +35289,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#delete-a-discussion parameters: - *135 - - *257 - - *267 + - *272 + - *282 responses: '204': description: Response @@ -35298,8 +35317,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#list-discussion-comments parameters: - *135 - - *257 - - *267 + - *272 + - *282 - *9 - *4 - *5 @@ -35310,7 +35329,7 @@ paths: application/json: schema: type: array - items: &268 + items: &283 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -35382,7 +35401,7 @@ paths: - updated_at - url examples: - default: &573 + default: &574 value: - author: login: octocat @@ -35451,8 +35470,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *135 - - *257 - - *267 + - *272 + - *282 requestBody: required: true content: @@ -35474,9 +35493,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: &269 + default: &284 value: author: login: octocat @@ -35543,9 +35562,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *135 - - *257 - - *267 - - &270 + - *272 + - *282 + - &285 name: comment_number description: The number that identifies the comment. in: path @@ -35557,9 +35576,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: *269 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35582,9 +35601,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *135 - - *257 - - *267 - - *270 + - *272 + - *282 + - *285 requestBody: required: true content: @@ -35606,9 +35625,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: &574 + default: &575 value: author: login: octocat @@ -35673,9 +35692,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *135 - - *257 - - *267 - - *270 + - *272 + - *282 + - *285 responses: '204': description: Response @@ -35702,9 +35721,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *135 - - *257 - - *267 - - *270 + - *272 + - *282 + - *285 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -35730,7 +35749,7 @@ paths: application/json: schema: type: array - items: &271 + items: &286 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -35773,7 +35792,7 @@ paths: - content - created_at examples: - default: &273 + default: &288 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -35824,9 +35843,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *135 - - *257 - - *267 - - *270 + - *272 + - *282 + - *285 requestBody: required: true content: @@ -35859,9 +35878,9 @@ paths: team discussion comment content: application/json: - schema: *271 + schema: *286 examples: - default: &272 + default: &287 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -35890,9 +35909,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35916,10 +35935,10 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *135 - - *257 - - *267 - - *270 - - &274 + - *272 + - *282 + - *285 + - &289 name: reaction_id description: The unique identifier of the reaction. in: path @@ -35952,8 +35971,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *135 - - *257 - - *267 + - *272 + - *282 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -35979,9 +35998,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 x-github: @@ -36008,8 +36027,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *135 - - *257 - - *267 + - *272 + - *282 requestBody: required: true content: @@ -36041,16 +36060,16 @@ paths: description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -36074,9 +36093,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *135 - - *257 - - *267 - - *274 + - *272 + - *282 + - *289 responses: '204': description: Response @@ -36100,15 +36119,15 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *135 - - *257 + - *272 responses: '200': description: Response content: application/json: - schema: *275 + schema: *290 examples: - default: *276 + default: *291 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -36128,7 +36147,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *135 - - *257 + - *272 requestBody: required: true content: @@ -36151,9 +36170,9 @@ paths: description: Response content: application/json: - schema: *277 + schema: *292 examples: - default: *278 + default: *293 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -36173,7 +36192,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *135 - - *257 + - *272 responses: '204': description: Response @@ -36197,7 +36216,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/members#list-team-members parameters: - *135 - - *257 + - *272 - name: role description: Filters members returned by their role in the team. in: query @@ -36251,14 +36270,14 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/members#get-team-membership-for-a-user parameters: - *135 - - *257 + - *272 - *8 responses: '200': description: Response content: application/json: - schema: &279 + schema: &294 title: Team Membership description: Team Membership type: object @@ -36285,7 +36304,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &575 + response-if-user-is-a-team-maintainer: &576 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -36322,7 +36341,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *135 - - *257 + - *272 - *8 requestBody: required: false @@ -36348,9 +36367,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *294 examples: - response-if-users-membership-with-team-is-now-pending: &576 + response-if-users-membership-with-team-is-now-pending: &577 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -36386,7 +36405,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/members#remove-team-membership-for-a-user parameters: - *135 - - *257 + - *272 - *8 responses: '204': @@ -36414,7 +36433,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#list-team-projects parameters: - *135 - - *257 + - *272 - *4 - *5 responses: @@ -36424,7 +36443,7 @@ paths: application/json: schema: type: array - items: &280 + items: &295 title: Team Project description: A team's access to a project. type: object @@ -36492,7 +36511,7 @@ paths: - updated_at - permissions examples: - default: &577 + default: &578 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -36554,8 +36573,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#check-team-permissions-for-a-project parameters: - *135 - - *257 - - &281 + - *272 + - &296 name: project_id description: The unique identifier of the project. in: path @@ -36567,9 +36586,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *295 examples: - default: &578 + default: &579 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -36630,8 +36649,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#add-or-update-team-project-permissions parameters: - *135 - - *257 - - *281 + - *272 + - *296 requestBody: required: false content: @@ -36696,8 +36715,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#remove-a-project-from-a-team parameters: - *135 - - *257 - - *281 + - *272 + - *296 responses: '204': description: Response @@ -36722,7 +36741,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#list-team-repositories parameters: - *135 - - *257 + - *272 - *4 - *5 responses: @@ -36764,15 +36783,15 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *135 - - *257 - - *282 - - *283 + - *272 + - *297 + - *298 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &579 + schema: &580 title: Team Repository description: A team's access to a repository. type: object @@ -37342,9 +37361,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *135 - - *257 - - *282 - - *283 + - *272 + - *297 + - *298 requestBody: required: false content: @@ -37390,9 +37409,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#remove-a-repository-from-a-team parameters: - *135 - - *257 - - *282 - - *283 + - *272 + - *297 + - *298 responses: '204': description: Response @@ -37417,7 +37436,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#list-child-teams parameters: - *135 - - *257 + - *272 - *4 - *5 responses: @@ -37427,9 +37446,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - response-if-child-teams-exist: &580 + response-if-child-teams-exist: &581 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -37547,7 +37566,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#get-a-project-card parameters: - - &285 + - &300 name: card_id description: The unique identifier of the card. in: path @@ -37559,7 +37578,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &301 title: Project Card description: Project cards represent a scope of work. type: object @@ -37626,7 +37645,7 @@ paths: - created_at - updated_at examples: - default: &287 + default: &302 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -37676,7 +37695,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#update-an-existing-project-card parameters: - - *285 + - *300 requestBody: required: false content: @@ -37703,9 +37722,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *301 examples: - default: *287 + default: *302 '304': *42 '403': *43 '401': *41 @@ -37726,7 +37745,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#delete-a-project-card parameters: - - *285 + - *300 responses: '204': description: Response @@ -37764,7 +37783,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#move-a-project-card parameters: - - *285 + - *300 requestBody: required: true content: @@ -37869,7 +37888,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#get-a-project-column parameters: - - &288 + - &303 name: column_id description: The unique identifier of the column. in: path @@ -37881,7 +37900,7 @@ paths: description: Response content: application/json: - schema: &289 + schema: &304 title: Project Column description: Project columns contain cards of work. type: object @@ -37927,7 +37946,7 @@ paths: - created_at - updated_at examples: - default: &290 + default: &305 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -37956,7 +37975,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#update-an-existing-project-column parameters: - - *288 + - *303 requestBody: required: true content: @@ -37980,9 +37999,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *304 examples: - default: *290 + default: *305 '304': *42 '403': *43 '401': *41 @@ -38001,7 +38020,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#delete-a-project-column parameters: - - *288 + - *303 responses: '204': description: Response @@ -38024,7 +38043,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#list-project-cards parameters: - - *288 + - *303 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -38045,7 +38064,7 @@ paths: application/json: schema: type: array - items: *286 + items: *301 examples: default: value: @@ -38098,7 +38117,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#create-a-project-card parameters: - - *288 + - *303 requestBody: required: true content: @@ -38138,9 +38157,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *301 examples: - default: *287 + default: *302 '304': *42 '403': *43 '401': *41 @@ -38190,7 +38209,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#move-a-project-column parameters: - - *288 + - *303 requestBody: required: true content: @@ -38246,7 +38265,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/projects#get-a-project parameters: - - *281 + - *296 responses: '200': description: Response @@ -38254,7 +38273,7 @@ paths: application/json: schema: *232 examples: - default: &291 + default: &306 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -38307,7 +38326,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/projects#update-a-project parameters: - - *281 + - *296 requestBody: required: false content: @@ -38355,7 +38374,7 @@ paths: application/json: schema: *232 examples: - default: *291 + default: *306 '404': description: Not Found if the authenticated user does not have access to the project @@ -38394,7 +38413,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/projects#delete-a-project parameters: - - *281 + - *296 responses: '204': description: Delete Success @@ -38438,7 +38457,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/collaborators#list-project-collaborators parameters: - - *281 + - *296 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -38490,7 +38509,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/collaborators#add-project-collaborator parameters: - - *281 + - *296 - *8 requestBody: required: false @@ -38538,7 +38557,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *281 + - *296 - *8 responses: '204': @@ -38567,7 +38586,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *281 + - *296 - *8 responses: '200': @@ -38635,7 +38654,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#list-project-columns parameters: - - *281 + - *296 - *4 - *5 responses: @@ -38645,7 +38664,7 @@ paths: application/json: schema: type: array - items: *289 + items: *304 examples: default: value: @@ -38677,7 +38696,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#create-a-project-column parameters: - - *281 + - *296 requestBody: required: true content: @@ -38700,7 +38719,7 @@ paths: description: Response content: application/json: - schema: *289 + schema: *304 examples: default: value: @@ -38762,7 +38781,7 @@ paths: resources: type: object properties: - core: &292 + core: &307 title: Rate Limit type: object properties: @@ -38779,20 +38798,20 @@ paths: - remaining - reset - used - graphql: *292 - search: *292 - code_search: *292 - source_import: *292 - integration_manifest: *292 - code_scanning_upload: *292 - actions_runner_registration: *292 - scim: *292 - dependency_sbom: *292 - code_scanning_autofix: *292 + graphql: *307 + search: *307 + code_search: *307 + source_import: *307 + integration_manifest: *307 + code_scanning_upload: *307 + actions_runner_registration: *307 + scim: *307 + dependency_sbom: *307 + code_scanning_autofix: *307 required: - core - search - rate: *292 + rate: *307 required: - rate - resources @@ -38896,14 +38915,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#get-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *293 + schema: *308 examples: default-response: summary: Default response @@ -39402,7 +39421,7 @@ paths: status: disabled '403': *43 '404': *26 - '301': *294 + '301': *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39420,8 +39439,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#update-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -39637,10 +39656,10 @@ paths: description: Response content: application/json: - schema: *293 + schema: *308 examples: - default: *295 - '307': &296 + default: *310 + '307': &311 description: Temporary Redirect content: application/json: @@ -39685,8 +39704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#delete-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -39708,7 +39727,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#delete-a-repository - '307': *296 + '307': *311 '404': *26 '409': *140 x-github: @@ -39732,11 +39751,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 - - &313 + - &328 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -39759,7 +39778,7 @@ paths: type: integer artifacts: type: array - items: &297 + items: &312 title: Artifact description: An artifact type: object @@ -39830,7 +39849,7 @@ paths: - expires_at - updated_at examples: - default: &314 + default: &329 value: total_count: 2 artifacts: @@ -39889,9 +39908,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/artifacts#get-an-artifact parameters: - - *282 - - *283 - - &298 + - *297 + - *298 + - &313 name: artifact_id description: The unique identifier of the artifact. in: path @@ -39903,7 +39922,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *312 examples: default: value: @@ -39940,9 +39959,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/artifacts#delete-an-artifact parameters: - - *282 - - *283 + - *297 - *298 + - *313 responses: '204': description: Response @@ -39966,9 +39985,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/artifacts#download-an-artifact parameters: - - *282 - - *283 + - *297 - *298 + - *313 - name: archive_format in: path required: true @@ -40005,14 +40024,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *299 + schema: *314 examples: default: value: @@ -40038,14 +40057,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#get-github-actions-cache-usage-policy-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: &300 + schema: &315 title: Actions cache usage policy for repository description: GitHub Actions cache usage policy for repository. type: object @@ -40057,7 +40076,7 @@ paths: required: - repo_cache_size_limit_in_gb examples: - default: &301 + default: &316 value: repo_cache_size_limit_in_gb: 14 x-github: @@ -40078,8 +40097,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#set-github-actions-cache-usage-policy-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -40087,9 +40106,9 @@ paths: required: true content: application/json: - schema: *300 + schema: *315 examples: - selected_actions: *301 + selected_actions: *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40109,11 +40128,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 - - &302 + - &317 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -40147,7 +40166,7 @@ paths: description: Response content: application/json: - schema: &303 + schema: &318 title: Repository actions caches description: Repository actions caches type: object @@ -40189,7 +40208,7 @@ paths: - total_count - actions_caches examples: - default: &304 + default: &319 value: total_count: 1 actions_caches: @@ -40221,23 +40240,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *282 - - *283 + - *297 + - *298 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *302 + - *317 responses: '200': description: Response content: application/json: - schema: *303 + schema: *318 examples: - default: *304 + default: *319 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40257,8 +40276,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *282 - - *283 + - *297 + - *298 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -40289,9 +40308,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *282 - - *283 - - &305 + - *297 + - *298 + - &320 name: job_id description: The unique identifier of the job. in: path @@ -40303,7 +40322,7 @@ paths: description: Response content: application/json: - schema: &317 + schema: &332 title: Job description: Information of a job execution in a workflow run type: object @@ -40610,9 +40629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *282 - - *283 - - *305 + - *297 + - *298 + - *320 responses: '302': description: Response @@ -40640,9 +40659,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *282 - - *283 - - *305 + - *297 + - *298 + - *320 requestBody: required: false content: @@ -40687,8 +40706,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Status response @@ -40738,8 +40757,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -40802,8 +40821,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#list-repository-organization-secrets parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -40821,7 +40840,7 @@ paths: type: integer secrets: type: array - items: &319 + items: &334 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -40841,7 +40860,7 @@ paths: - created_at - updated_at examples: - default: &320 + default: &335 value: total_count: 2 secrets: @@ -40874,9 +40893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#list-repository-organization-variables parameters: - - *282 - - *283 - - *306 + - *297 + - *298 + - *321 - *5 responses: '200': @@ -40893,7 +40912,7 @@ paths: type: integer variables: type: array - items: &323 + items: &338 title: Actions Variable type: object properties: @@ -40923,7 +40942,7 @@ paths: - created_at - updated_at examples: - default: &324 + default: &339 value: total_count: 2 variables: @@ -40956,8 +40975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -40966,7 +40985,7 @@ paths: schema: type: object properties: - enabled: &307 + enabled: &322 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *69 @@ -40999,8 +41018,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -41011,7 +41030,7 @@ paths: schema: type: object properties: - enabled: *307 + enabled: *322 allowed_actions: *69 required: - enabled @@ -41042,14 +41061,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: &308 + schema: &323 type: object properties: access_level: @@ -41067,7 +41086,7 @@ paths: required: - access_level examples: - default: &309 + default: &324 value: access_level: organization x-github: @@ -41092,15 +41111,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: application/json: - schema: *308 + schema: *323 examples: - default: *309 + default: *324 responses: '204': description: Response @@ -41124,8 +41143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -41156,8 +41175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -41189,8 +41208,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -41219,8 +41238,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Success response @@ -41260,8 +41279,8 @@ paths: in: query schema: type: string - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -41305,8 +41324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -41338,8 +41357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -41413,8 +41432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '201': description: Response @@ -41450,8 +41469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '201': description: Response @@ -41481,8 +41500,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 responses: '200': @@ -41512,8 +41531,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 responses: '204': @@ -41540,8 +41559,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 responses: '200': *87 @@ -41566,8 +41585,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 requestBody: required: true @@ -41616,8 +41635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 requestBody: required: true @@ -41667,8 +41686,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 responses: '200': *160 @@ -41698,8 +41717,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 - *161 responses: @@ -41729,9 +41748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *282 - - *283 - - &327 + - *297 + - *298 + - &342 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -41739,7 +41758,7 @@ paths: required: false schema: type: string - - &328 + - &343 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -41747,7 +41766,7 @@ paths: required: false schema: type: string - - &329 + - &344 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -41756,7 +41775,7 @@ paths: required: false schema: type: string - - &330 + - &345 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -41783,7 +41802,7 @@ paths: - pending - *4 - *5 - - &331 + - &346 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-server@3.13/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -41792,7 +41811,7 @@ paths: schema: type: string format: date-time - - &310 + - &325 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -41801,13 +41820,13 @@ paths: schema: type: boolean default: false - - &332 + - &347 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &333 + - &348 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -41830,7 +41849,7 @@ paths: type: integer workflow_runs: type: array - items: &311 + items: &326 title: Workflow Run description: An invocation of a workflow type: object @@ -41925,7 +41944,7 @@ paths: that triggered the run. type: array nullable: true - items: &351 + items: &366 title: Pull Request Minimal type: object properties: @@ -42044,7 +42063,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &355 + properties: &370 id: type: string description: SHA for the commit @@ -42095,7 +42114,7 @@ paths: - name - email nullable: true - required: &356 + required: &371 - id - tree_id - message @@ -42142,7 +42161,7 @@ paths: - workflow_url - pull_requests examples: - default: &334 + default: &349 value: total_count: 1 workflow_runs: @@ -42378,24 +42397,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *282 - - *283 - - &312 + - *297 + - *298 + - &327 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *310 + - *325 responses: '200': description: Response content: application/json: - schema: *311 + schema: *326 examples: - default: &315 + default: &330 value: id: 30433642 name: Build @@ -42636,9 +42655,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '204': description: Response @@ -42661,9 +42680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '200': description: Response @@ -42784,12 +42803,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 - *4 - *5 - - *313 + - *328 responses: '200': description: Response @@ -42805,9 +42824,9 @@ paths: type: integer artifacts: type: array - items: *297 + items: *312 examples: - default: *314 + default: *329 headers: Link: *6 x-github: @@ -42831,25 +42850,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *282 - - *283 - - *312 - - &316 + - *297 + - *298 + - *327 + - &331 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *310 + - *325 responses: '200': description: Response content: application/json: - schema: *311 + schema: *326 examples: - default: *315 + default: *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42872,10 +42891,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *282 - - *283 - - *312 - - *316 + - *297 + - *298 + - *327 + - *331 - *4 - *5 responses: @@ -42893,9 +42912,9 @@ paths: type: integer jobs: type: array - items: *317 + items: *332 examples: - default: &318 + default: &333 value: total_count: 1 jobs: @@ -43008,10 +43027,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *282 - - *283 - - *312 - - *316 + - *297 + - *298 + - *327 + - *331 responses: '302': description: Response @@ -43039,9 +43058,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '202': description: Response @@ -43074,9 +43093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 requestBody: required: true content: @@ -43143,9 +43162,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '202': description: Response @@ -43178,9 +43197,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -43210,9 +43229,9 @@ paths: type: integer jobs: type: array - items: *317 + items: *332 examples: - default: *318 + default: *333 headers: Link: *6 x-github: @@ -43237,9 +43256,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '302': description: Response @@ -43266,9 +43285,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '204': description: Response @@ -43295,9 +43314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '200': description: Response @@ -43357,7 +43376,7 @@ paths: items: type: object properties: - type: &408 + type: &423 type: string description: The type of reviewer. enum: @@ -43367,7 +43386,7 @@ paths: reviewer: anyOf: - *19 - - *284 + - *299 required: - environment - wait_timer @@ -43442,9 +43461,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 requestBody: required: true content: @@ -43491,7 +43510,7 @@ paths: application/json: schema: type: array - items: &403 + items: &418 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -43597,7 +43616,7 @@ paths: - created_at - updated_at examples: - default: &404 + default: &419 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -43653,9 +43672,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 requestBody: required: false content: @@ -43699,9 +43718,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 requestBody: required: false content: @@ -43748,8 +43767,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#list-repository-secrets parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -43767,9 +43786,9 @@ paths: type: integer secrets: type: array - items: *319 + items: *334 examples: - default: *320 + default: *335 headers: Link: *6 x-github: @@ -43794,16 +43813,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#get-a-repository-public-key parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *321 + schema: *336 examples: - default: *322 + default: *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43825,17 +43844,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#get-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 responses: '200': description: Response content: application/json: - schema: *319 + schema: *334 examples: - default: &421 + default: &436 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -43861,8 +43880,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 requestBody: required: true @@ -43920,8 +43939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#delete-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 responses: '204': @@ -43947,9 +43966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#list-repository-variables parameters: - - *282 - - *283 - - *306 + - *297 + - *298 + - *321 - *5 responses: '200': @@ -43966,9 +43985,9 @@ paths: type: integer variables: type: array - items: *323 + items: *338 examples: - default: *324 + default: *339 headers: Link: *6 x-github: @@ -43991,8 +44010,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#create-a-repository-variable parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -44044,17 +44063,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#get-a-repository-variable parameters: - - *282 - - *283 + - *297 + - *298 - *166 responses: '200': description: Response content: application/json: - schema: *323 + schema: *338 examples: - default: &422 + default: &437 value: name: USERNAME value: octocat @@ -44080,8 +44099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#update-a-repository-variable parameters: - - *282 - - *283 + - *297 + - *298 - *166 requestBody: required: true @@ -44124,8 +44143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#delete-a-repository-variable parameters: - - *282 - - *283 + - *297 + - *298 - *166 responses: '204': @@ -44151,8 +44170,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflows#list-repository-workflows parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -44170,7 +44189,7 @@ paths: type: integer workflows: type: array - items: &325 + items: &340 title: Workflow description: A GitHub Actions workflow type: object @@ -44277,9 +44296,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflows#get-a-workflow parameters: - - *282 - - *283 - - &326 + - *297 + - *298 + - &341 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -44294,7 +44313,7 @@ paths: description: Response content: application/json: - schema: *325 + schema: *340 examples: default: value: @@ -44327,9 +44346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflows#disable-a-workflow parameters: - - *282 - - *283 - - *326 + - *297 + - *298 + - *341 responses: '204': description: Response @@ -44354,9 +44373,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *282 - - *283 - - *326 + - *297 + - *298 + - *341 responses: '204': description: Response @@ -44407,9 +44426,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflows#enable-a-workflow parameters: - - *282 - - *283 - - *326 + - *297 + - *298 + - *341 responses: '204': description: Response @@ -44436,19 +44455,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *282 - - *283 - - *326 - - *327 - - *328 - - *329 - - *330 + - *297 + - *298 + - *341 + - *342 + - *343 + - *344 + - *345 - *4 - *5 - - *331 - - *310 - - *332 - - *333 + - *346 + - *325 + - *347 + - *348 responses: '200': description: Response @@ -44464,9 +44483,9 @@ paths: type: integer workflow_runs: type: array - items: *311 + items: *326 examples: - default: *334 + default: *349 headers: Link: *6 x-github: @@ -44489,8 +44508,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-activities parameters: - - *282 - - *283 + - *297 + - *298 - *9 - *4 - *88 @@ -44654,8 +44673,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/assignees#list-assignees parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -44692,8 +44711,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *282 - - *283 + - *297 + - *298 - name: assignee in: path required: true @@ -44727,8 +44746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -44736,7 +44755,7 @@ paths: application/json: schema: type: array - items: &335 + items: &350 title: Autolink reference description: An autolink reference. type: object @@ -44786,8 +44805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -44826,9 +44845,9 @@ paths: description: response content: application/json: - schema: *335 + schema: *350 examples: - default: &336 + default: &351 value: id: 1 key_prefix: TICKET- @@ -44859,9 +44878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *282 - - *283 - - &337 + - *297 + - *298 + - &352 name: autolink_id description: The unique identifier of the autolink. in: path @@ -44873,9 +44892,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *350 examples: - default: *336 + default: *351 '404': *26 x-github: githubCloudOnly: false @@ -44895,9 +44914,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *282 - - *283 - - *337 + - *297 + - *298 + - *352 responses: '204': description: Response @@ -44921,8 +44940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response if Dependabot is enabled @@ -44969,8 +44988,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branches#list-branches parameters: - - *282 - - *283 + - *297 + - *298 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -45008,7 +45027,7 @@ paths: - url protected: type: boolean - protection: &339 + protection: &354 title: Branch Protection description: Branch Protection type: object @@ -45050,7 +45069,7 @@ paths: required: - contexts - checks - enforce_admins: &342 + enforce_admins: &357 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -45065,7 +45084,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &344 + required_pull_request_reviews: &359 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -45086,7 +45105,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *284 + items: *299 apps: description: The list of apps with review dismissal access. @@ -45115,7 +45134,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *284 + items: *299 apps: description: The list of apps allowed to bypass pull request requirements. @@ -45141,7 +45160,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &341 + restrictions: &356 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -45448,9 +45467,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branches#get-a-branch parameters: - - *282 - - *283 - - &340 + - *297 + - *298 + - &355 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-server@3.13/graphql). @@ -45464,14 +45483,14 @@ paths: description: Response content: application/json: - schema: &350 + schema: &365 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &381 + commit: &396 title: Commit description: Commit type: object @@ -45505,7 +45524,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &338 + properties: &353 name: type: string example: '"Chris Wanstrath"' @@ -45520,7 +45539,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *338 + properties: *353 nullable: true message: type: string @@ -45541,7 +45560,7 @@ paths: required: - sha - url - verification: &428 + verification: &443 title: Verification type: object properties: @@ -45607,7 +45626,7 @@ paths: type: integer files: type: array - items: &392 + items: &407 title: Diff Entry description: Diff Entry type: object @@ -45690,7 +45709,7 @@ paths: - self protected: type: boolean - protection: *339 + protection: *354 protection_url: type: string format: uri @@ -45794,7 +45813,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *294 + '301': *309 '404': *26 x-github: githubCloudOnly: false @@ -45816,15 +45835,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *339 + schema: *354 examples: default: value: @@ -46018,9 +46037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#update-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -46275,7 +46294,7 @@ paths: url: type: string format: uri - required_status_checks: &347 + required_status_checks: &362 title: Status Check Policy description: Status Check Policy type: object @@ -46351,7 +46370,7 @@ paths: items: *19 teams: type: array - items: *284 + items: *299 apps: type: array items: *25 @@ -46369,7 +46388,7 @@ paths: items: *19 teams: type: array - items: *284 + items: *299 apps: type: array items: *25 @@ -46427,7 +46446,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *341 + restrictions: *356 required_conversation_resolution: type: object properties: @@ -46539,9 +46558,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#delete-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -46566,17 +46585,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *342 + schema: *357 examples: - default: &343 + default: &358 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -46598,17 +46617,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *342 + schema: *357 examples: - default: *343 + default: *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46627,9 +46646,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -46654,17 +46673,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *344 + schema: *359 examples: - default: &345 + default: &360 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -46760,9 +46779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -46860,9 +46879,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *359 examples: - default: *345 + default: *360 '422': *35 x-github: githubCloudOnly: false @@ -46883,9 +46902,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -46912,17 +46931,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *342 + schema: *357 examples: - default: &346 + default: &361 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -46945,17 +46964,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *342 + schema: *357 examples: - default: *346 + default: *361 '404': *26 x-github: githubCloudOnly: false @@ -46975,9 +46994,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -47002,17 +47021,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-status-checks-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *347 + schema: *362 examples: - default: &348 + default: &363 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -47038,9 +47057,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#update-status-check-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -47092,9 +47111,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *362 examples: - default: *348 + default: *363 '404': *26 '422': *35 x-github: @@ -47116,9 +47135,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#remove-status-check-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -47142,9 +47161,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response @@ -47178,9 +47197,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#add-status-check-contexts parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -47247,9 +47266,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#set-status-check-contexts parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -47313,9 +47332,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: content: application/json: @@ -47381,15 +47400,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *341 + schema: *356 examples: default: value: @@ -47480,9 +47499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#delete-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -47505,9 +47524,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response @@ -47517,7 +47536,7 @@ paths: type: array items: *25 examples: - default: &349 + default: &364 value: - id: 1 slug: octoapp @@ -47574,9 +47593,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -47610,7 +47629,7 @@ paths: type: array items: *25 examples: - default: *349 + default: *364 '422': *35 x-github: githubCloudOnly: false @@ -47631,9 +47650,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -47667,7 +47686,7 @@ paths: type: array items: *25 examples: - default: *349 + default: *364 '422': *35 x-github: githubCloudOnly: false @@ -47688,9 +47707,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -47724,7 +47743,7 @@ paths: type: array items: *25 examples: - default: *349 + default: *364 '422': *35 x-github: githubCloudOnly: false @@ -47746,9 +47765,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response @@ -47756,9 +47775,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - default: *262 + default: *277 '404': *26 x-github: githubCloudOnly: false @@ -47778,9 +47797,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -47816,9 +47835,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - default: *262 + default: *277 '422': *35 x-github: githubCloudOnly: false @@ -47839,9 +47858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -47877,9 +47896,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - default: *262 + default: *277 '422': *35 x-github: githubCloudOnly: false @@ -47900,9 +47919,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: content: application/json: @@ -47937,9 +47956,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - default: *262 + default: *277 '422': *35 x-github: githubCloudOnly: false @@ -47961,9 +47980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response @@ -47997,9 +48016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -48057,9 +48076,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -48117,9 +48136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -48179,9 +48198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branches#rename-a-branch parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -48203,7 +48222,7 @@ paths: description: Response content: application/json: - schema: *350 + schema: *365 examples: default: value: @@ -48316,8 +48335,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#create-a-check-run parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -48596,7 +48615,7 @@ paths: description: Response content: application/json: - schema: &352 + schema: &367 title: CheckRun description: A check performed on the code of a given code change type: object @@ -48715,8 +48734,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *351 - deployment: &614 + items: *366 + deployment: &615 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -48996,9 +49015,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#get-a-check-run parameters: - - *282 - - *283 - - &353 + - *297 + - *298 + - &368 name: check_run_id description: The unique identifier of the check run. in: path @@ -49010,9 +49029,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *367 examples: - default: &354 + default: &369 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -49112,9 +49131,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#update-a-check-run parameters: - - *282 - - *283 - - *353 + - *297 + - *298 + - *368 requestBody: required: true content: @@ -49354,9 +49373,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *367 examples: - default: *354 + default: *369 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49376,9 +49395,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#list-check-run-annotations parameters: - - *282 - - *283 - - *353 + - *297 + - *298 + - *368 - *4 - *5 responses: @@ -49473,9 +49492,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#rerequest-a-check-run parameters: - - *282 - - *283 - - *353 + - *297 + - *298 + - *368 responses: '201': description: Response @@ -49519,8 +49538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/suites#create-a-check-suite parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -49542,7 +49561,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &357 + schema: &372 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -49606,7 +49625,7 @@ paths: nullable: true pull_requests: type: array - items: *351 + items: *366 nullable: true app: title: GitHub app @@ -49632,8 +49651,8 @@ paths: title: Simple Commit description: A commit. type: object - properties: *355 - required: *356 + properties: *370 + required: *371 latest_check_runs_count: type: integer check_runs_url: @@ -49661,7 +49680,7 @@ paths: - check_runs_url - pull_requests examples: - default: &358 + default: &373 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -49952,9 +49971,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *357 + schema: *372 examples: - default: *358 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49973,8 +49992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -50283,9 +50302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/suites#get-a-check-suite parameters: - - *282 - - *283 - - &359 + - *297 + - *298 + - &374 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -50297,9 +50316,9 @@ paths: description: Response content: application/json: - schema: *357 + schema: *372 examples: - default: *358 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50322,17 +50341,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *282 - - *283 - - *359 - - &389 + - *297 + - *298 + - *374 + - &404 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &390 + - &405 name: status description: Returns check runs with the specified `status`. in: query @@ -50371,9 +50390,9 @@ paths: type: integer check_runs: type: array - items: *352 + items: *367 examples: - default: &391 + default: &406 value: total_count: 1 check_runs: @@ -50475,9 +50494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/suites#rerequest-a-check-suite parameters: - - *282 - - *283 - - *359 + - *297 + - *298 + - *374 responses: '201': description: Response @@ -50510,20 +50529,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *178 - *179 - *5 - *4 - - &371 + - &386 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *360 + schema: *375 - *9 - name: sort description: The property by which to sort the results. @@ -50546,7 +50565,7 @@ paths: be returned. in: query required: false - schema: *361 + schema: *376 responses: '200': description: Response @@ -50562,7 +50581,7 @@ paths: updated_at: *100 url: *97 html_url: *98 - instances_url: *362 + instances_url: *377 state: *92 fixed_at: *102 dismissed_by: @@ -50573,11 +50592,11 @@ paths: required: *18 nullable: true dismissed_at: *101 - dismissed_reason: *363 - dismissed_comment: *364 - rule: *365 - tool: *366 - most_recent_instance: *367 + dismissed_reason: *378 + dismissed_comment: *379 + rule: *380 + tool: *381 + most_recent_instance: *382 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -50700,7 +50719,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *42 - '403': &368 + '403': &383 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -50727,9 +50746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *282 - - *283 - - &369 + - *297 + - *298 + - &384 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -50743,7 +50762,7 @@ paths: description: Response content: application/json: - schema: &370 + schema: &385 type: object properties: number: *93 @@ -50751,7 +50770,7 @@ paths: updated_at: *100 url: *97 html_url: *98 - instances_url: *362 + instances_url: *377 state: *92 fixed_at: *102 dismissed_by: @@ -50762,8 +50781,8 @@ paths: required: *18 nullable: true dismissed_at: *101 - dismissed_reason: *363 - dismissed_comment: *364 + dismissed_reason: *378 + dismissed_comment: *379 rule: type: object properties: @@ -50817,8 +50836,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *366 - most_recent_instance: *367 + tool: *381 + most_recent_instance: *382 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -50914,7 +50933,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *42 - '403': *368 + '403': *383 '404': *26 '503': *104 x-github: @@ -50934,9 +50953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *282 - - *283 - - *369 + - *297 + - *298 + - *384 requestBody: required: true content: @@ -50951,8 +50970,8 @@ paths: enum: - open - dismissed - dismissed_reason: *363 - dismissed_comment: *364 + dismissed_reason: *378 + dismissed_comment: *379 required: - state examples: @@ -50967,7 +50986,7 @@ paths: description: Response content: application/json: - schema: *370 + schema: *385 examples: default: value: @@ -51043,7 +51062,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *34 - '403': &376 + '403': &391 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -51070,12 +51089,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *282 - - *283 - - *369 + - *297 + - *298 + - *384 - *5 - *4 - - *371 + - *386 responses: '200': description: Response @@ -51083,7 +51102,7 @@ paths: application/json: schema: type: array - items: *367 + items: *382 examples: default: value: @@ -51122,7 +51141,7 @@ paths: end_column: 50 classifications: - source - '403': *368 + '403': *383 '404': *26 '503': *104 x-github: @@ -51156,8 +51175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *178 - *179 - *5 @@ -51168,12 +51187,12 @@ paths: for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *360 + schema: *375 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &374 + schema: &389 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -51194,23 +51213,23 @@ paths: application/json: schema: type: array - items: &375 + items: &390 type: object properties: - ref: *360 - commit_sha: &377 + ref: *375 + commit_sha: &392 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *372 + analysis_key: *387 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *373 + category: *388 error: type: string example: error reading field xyz @@ -51234,8 +51253,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *374 - tool: *366 + sarif_id: *389 + tool: *381 deletable: type: boolean warning: @@ -51296,7 +51315,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *368 + '403': *383 '404': *26 '503': *104 x-github: @@ -51332,8 +51351,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -51346,7 +51365,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *390 examples: response: summary: application/json response @@ -51400,7 +51419,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *368 + '403': *383 '404': *26 '503': *104 x-github: @@ -51482,8 +51501,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -51536,7 +51555,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *34 - '403': *376 + '403': *391 '404': *26 '503': *104 x-github: @@ -51558,8 +51577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -51621,7 +51640,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *368 + '403': *383 '404': *26 '503': *104 x-github: @@ -51642,8 +51661,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -51714,7 +51733,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *376 + '403': *391 '404': *26 '409': description: Response if there is already a validation run in progress with @@ -51785,8 +51804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -51794,7 +51813,7 @@ paths: schema: type: object properties: - commit_sha: *377 + commit_sha: *392 ref: type: string description: |- @@ -51847,7 +51866,7 @@ paths: schema: type: object properties: - id: *374 + id: *389 url: type: string description: The REST API URL for checking the status of the upload. @@ -51861,7 +51880,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *376 + '403': *391 '404': *26 '413': description: Payload Too Large if the sarif field is too large @@ -51884,8 +51903,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *282 - - *283 + - *297 + - *298 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -51931,7 +51950,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *368 + '403': *383 '404': description: Not Found if the sarif id does not match any upload '503': *104 @@ -51956,8 +51975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-codeowners-errors parameters: - - *282 - - *283 + - *297 + - *298 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -52080,8 +52099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *282 - - *283 + - *297 + - *298 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -52123,7 +52142,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &378 + properties: &393 login: type: string example: octocat @@ -52216,7 +52235,7 @@ paths: user_view_type: type: string example: public - required: &379 + required: &394 - avatar_url - events_url - followers_url @@ -52289,8 +52308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *282 - - *283 + - *297 + - *298 - *8 responses: '204': @@ -52327,8 +52346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *282 - - *283 + - *297 + - *298 - *8 requestBody: required: false @@ -52398,8 +52417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *282 - - *283 + - *297 + - *298 - *8 responses: '204': @@ -52431,8 +52450,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *282 - - *283 + - *297 + - *298 - *8 responses: '200': @@ -52453,8 +52472,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *378 - required: *379 + properties: *393 + required: *394 nullable: true required: - permission @@ -52509,8 +52528,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -52520,7 +52539,7 @@ paths: application/json: schema: type: array - items: &380 + items: &395 title: Commit Comment description: Commit Comment type: object @@ -52578,7 +52597,7 @@ paths: - created_at - updated_at examples: - default: &383 + default: &398 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -52637,17 +52656,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#get-a-commit-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '200': description: Response content: application/json: - schema: *380 + schema: *395 examples: - default: &384 + default: &399 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -52704,8 +52723,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#update-a-commit-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -52728,7 +52747,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *395 examples: default: value: @@ -52779,8 +52798,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#delete-a-commit-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '204': @@ -52802,8 +52821,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). @@ -52830,9 +52849,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 '404': *26 @@ -52853,8 +52872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -52887,16 +52906,16 @@ paths: description: Reaction exists content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Reaction created content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '422': *35 x-github: githubCloudOnly: false @@ -52918,10 +52937,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *282 - - *283 + - *297 + - *298 - *120 - - *274 + - *289 responses: '204': description: Response @@ -52970,8 +52989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/commits#list-commits parameters: - - *282 - - *283 + - *297 + - *298 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -53027,9 +53046,9 @@ paths: application/json: schema: type: array - items: *381 + items: *396 examples: - default: &490 + default: &505 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -53122,9 +53141,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/commits#list-branches-for-head-commit parameters: - - *282 - - *283 - - &382 + - *297 + - *298 + - &397 name: commit_sha description: The SHA of the commit. in: path @@ -53196,9 +53215,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#list-commit-comments parameters: - - *282 - - *283 - - *382 + - *297 + - *298 + - *397 - *4 - *5 responses: @@ -53208,9 +53227,9 @@ paths: application/json: schema: type: array - items: *380 + items: *395 examples: - default: *383 + default: *398 headers: Link: *6 x-github: @@ -53238,9 +53257,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#create-a-commit-comment parameters: - - *282 - - *283 - - *382 + - *297 + - *298 + - *397 requestBody: required: true content: @@ -53275,9 +53294,9 @@ paths: description: Response content: application/json: - schema: *380 + schema: *395 examples: - default: *384 + default: *399 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -53305,9 +53324,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *282 - - *283 - - *382 + - *297 + - *298 + - *397 - *4 - *5 responses: @@ -53317,7 +53336,7 @@ paths: application/json: schema: type: array - items: &479 + items: &494 title: Pull Request Simple description: Pull Request Simple type: object @@ -53423,8 +53442,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *385 - required: *386 + properties: *400 + required: *401 nullable: true active_lock_reason: type: string @@ -53469,7 +53488,7 @@ paths: nullable: true requested_teams: type: array - items: *284 + items: *299 nullable: true head: type: object @@ -53520,7 +53539,7 @@ paths: _links: type: object properties: - comments: &387 + comments: &402 title: Link description: Hypermedia Link type: object @@ -53529,13 +53548,13 @@ paths: type: string required: - href - commits: *387 - statuses: *387 - html: *387 - issue: *387 - review_comments: *387 - review_comment: *387 - self: *387 + commits: *402 + statuses: *402 + html: *402 + issue: *402 + review_comments: *402 + review_comment: *402 + self: *402 required: - comments - commits @@ -53546,7 +53565,7 @@ paths: - review_comment - self author_association: *108 - auto_merge: &482 + auto_merge: &497 title: Auto merge description: The status of auto merging a pull request. type: object @@ -53609,7 +53628,7 @@ paths: - author_association - auto_merge examples: - default: &480 + default: &495 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -54146,11 +54165,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/commits#get-a-commit parameters: - - *282 - - *283 + - *297 + - *298 - *5 - *4 - - &388 + - &403 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -54165,9 +54184,9 @@ paths: description: Response content: application/json: - schema: *381 + schema: *396 examples: - default: &464 + default: &479 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -54277,11 +54296,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *282 - - *283 - - *388 - - *389 - - *390 + - *297 + - *298 + - *403 + - *404 + - *405 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -54315,9 +54334,9 @@ paths: type: integer check_runs: type: array - items: *352 + items: *367 examples: - default: *391 + default: *406 headers: Link: *6 x-github: @@ -54342,9 +54361,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *282 - - *283 - - *388 + - *297 + - *298 + - *403 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -54352,7 +54371,7 @@ paths: schema: type: integer example: 1 - - *389 + - *404 - *4 - *5 responses: @@ -54370,7 +54389,7 @@ paths: type: integer check_suites: type: array - items: *357 + items: *372 examples: default: value: @@ -54570,9 +54589,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *282 - - *283 - - *388 + - *297 + - *298 + - *403 - *4 - *5 responses: @@ -54770,9 +54789,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *282 - - *283 - - *388 + - *297 + - *298 + - *403 - *4 - *5 responses: @@ -54782,7 +54801,7 @@ paths: application/json: schema: type: array - items: &537 + items: &538 title: Status description: The status of a commit. type: object @@ -54863,7 +54882,7 @@ paths: site_admin: false headers: Link: *6 - '301': *294 + '301': *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54931,8 +54950,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/commits#compare-two-commits parameters: - - *282 - - *283 + - *297 + - *298 - *5 - *4 - name: basehead @@ -54975,8 +54994,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *381 - merge_base_commit: *381 + base_commit: *396 + merge_base_commit: *396 status: type: string enum: @@ -54996,10 +55015,10 @@ paths: example: 6 commits: type: array - items: *381 + items: *396 files: type: array - items: *392 + items: *407 required: - url - html_url @@ -55278,8 +55297,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#get-repository-content parameters: - - *282 - - *283 + - *297 + - *298 - name: path description: path parameter in: path @@ -55422,7 +55441,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &393 + response-if-content-is-a-file: &408 summary: Response if content is a file value: type: file @@ -55554,7 +55573,7 @@ paths: - size - type - url - - &495 + - &510 title: Content File description: Content File type: object @@ -55755,7 +55774,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *393 + response-if-content-is-a-file: *408 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -55824,7 +55843,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *26 '403': *43 - '302': &499 + '302': &514 description: Found '304': *42 x-github: @@ -55848,8 +55867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#create-or-update-file-contents parameters: - - *282 - - *283 + - *297 + - *298 - name: path description: path parameter in: path @@ -55942,7 +55961,7 @@ paths: description: Response content: application/json: - schema: &394 + schema: &409 title: File Commit description: File Commit type: object @@ -56088,7 +56107,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *409 examples: example-for-creating-a-file: value: @@ -56139,7 +56158,7 @@ paths: schema: oneOf: - *24 - - &423 + - &438 description: Repository rule violation was detected type: object properties: @@ -56192,8 +56211,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#delete-a-file parameters: - - *282 - - *283 + - *297 + - *298 - name: path description: path parameter in: path @@ -56254,7 +56273,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *409 examples: default: value: @@ -56305,8 +56324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-contributors parameters: - - *282 - - *283 + - *297 + - *298 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -56429,8 +56448,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *186 - *187 - *188 @@ -56452,7 +56471,7 @@ paths: application/json: schema: type: array - items: &397 + items: &412 type: object description: A Dependabot alert. properties: @@ -56485,7 +56504,7 @@ paths: enum: - development - runtime - security_advisory: *395 + security_advisory: *410 security_vulnerability: *96 url: *97 html_url: *98 @@ -56516,7 +56535,7 @@ paths: nullable: true maxLength: 280 fixed_at: *102 - auto_dismissed_at: *396 + auto_dismissed_at: *411 required: - number - state @@ -56743,9 +56762,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *282 - - *283 - - &398 + - *297 + - *298 + - &413 name: alert_number in: path description: |- @@ -56760,7 +56779,7 @@ paths: description: Response content: application/json: - schema: *397 + schema: *412 examples: default: value: @@ -56864,9 +56883,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *282 - - *283 - - *398 + - *297 + - *298 + - *413 requestBody: required: true content: @@ -56911,7 +56930,7 @@ paths: description: Response content: application/json: - schema: *397 + schema: *412 examples: default: value: @@ -57040,8 +57059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/secrets#list-repository-secrets parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -57059,7 +57078,7 @@ paths: type: integer secrets: type: array - items: &401 + items: &416 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -57112,16 +57131,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *399 + schema: *414 examples: - default: *400 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57141,15 +57160,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/secrets#get-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 responses: '200': description: Response content: application/json: - schema: *401 + schema: *416 examples: default: value: @@ -57175,8 +57194,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 requestBody: required: true @@ -57229,8 +57248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 responses: '204': @@ -57253,8 +57272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *282 - - *283 + - *297 + - *298 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -57414,8 +57433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -57640,8 +57659,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -57716,7 +57735,7 @@ paths: - version - url additionalProperties: false - metadata: &402 + metadata: &417 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -57749,7 +57768,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *402 + metadata: *417 resolved: type: object description: A collection of resolved package dependencies. @@ -57762,7 +57781,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *402 + metadata: *417 relationship: type: string description: A notation of whether a dependency is requested @@ -57891,8 +57910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/deployments#list-deployments parameters: - - *282 - - *283 + - *297 + - *298 - name: sha description: The SHA recorded at creation time. in: query @@ -57932,9 +57951,9 @@ paths: application/json: schema: type: array - items: *403 + items: *418 examples: - default: *404 + default: *419 headers: Link: *6 x-github: @@ -58000,8 +58019,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/deployments#create-a-deployment parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -58082,7 +58101,7 @@ paths: description: Response content: application/json: - schema: *403 + schema: *418 examples: simple-example: summary: Simple example @@ -58155,9 +58174,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/deployments#get-a-deployment parameters: - - *282 - - *283 - - &405 + - *297 + - *298 + - &420 name: deployment_id description: deployment_id parameter in: path @@ -58169,7 +58188,7 @@ paths: description: Response content: application/json: - schema: *403 + schema: *418 examples: default: value: @@ -58234,9 +58253,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/deployments#delete-a-deployment parameters: - - *282 - - *283 - - *405 + - *297 + - *298 + - *420 responses: '204': description: Response @@ -58258,9 +58277,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/statuses#list-deployment-statuses parameters: - - *282 - - *283 - - *405 + - *297 + - *298 + - *420 - *4 - *5 responses: @@ -58270,7 +58289,7 @@ paths: application/json: schema: type: array - items: &406 + items: &421 title: Deployment Status description: The status of a deployment. type: object @@ -58431,9 +58450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/statuses#create-a-deployment-status parameters: - - *282 - - *283 - - *405 + - *297 + - *298 + - *420 requestBody: required: true content: @@ -58508,9 +58527,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *421 examples: - default: &407 + default: &422 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -58566,9 +58585,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/statuses#get-a-deployment-status parameters: - - *282 - - *283 - - *405 + - *297 + - *298 + - *420 - name: status_id in: path required: true @@ -58579,9 +58598,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *421 examples: - default: *407 + default: *422 '404': *26 x-github: githubCloudOnly: false @@ -58606,8 +58625,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -58664,8 +58683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/environments#list-environments parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -58682,7 +58701,7 @@ paths: type: integer environments: type: array - items: &409 + items: &424 title: Environment description: Details of a deployment environment type: object @@ -58734,7 +58753,7 @@ paths: type: type: string example: wait_timer - wait_timer: &411 + wait_timer: &426 type: integer example: 30 description: The amount of time to delay a job after @@ -58771,11 +58790,11 @@ paths: items: type: object properties: - type: *408 + type: *423 reviewer: anyOf: - *19 - - *284 + - *299 required: - id - node_id @@ -58795,7 +58814,7 @@ paths: - id - node_id - type - deployment_branch_policy: &412 + deployment_branch_policy: &427 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -58910,9 +58929,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/environments#get-an-environment parameters: - - *282 - - *283 - - &410 + - *297 + - *298 + - &425 name: environment_name in: path required: true @@ -58925,9 +58944,9 @@ paths: description: Response content: application/json: - schema: *409 + schema: *424 examples: - default: &413 + default: &428 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -59010,9 +59029,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/environments#create-or-update-an-environment parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 requestBody: required: false content: @@ -59021,7 +59040,7 @@ paths: type: object nullable: true properties: - wait_timer: *411 + wait_timer: *426 prevent_self_review: type: boolean example: false @@ -59038,13 +59057,13 @@ paths: items: type: object properties: - type: *408 + type: *423 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *412 + deployment_branch_policy: *427 additionalProperties: false examples: default: @@ -59064,9 +59083,9 @@ paths: description: Response content: application/json: - schema: *409 + schema: *424 examples: - default: *413 + default: *428 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -59090,9 +59109,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/environments#delete-an-environment parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 responses: '204': description: Default response @@ -59117,9 +59136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *4 - *5 responses: @@ -59137,7 +59156,7 @@ paths: example: 2 branch_policies: type: array - items: &414 + items: &429 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -59194,9 +59213,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 requestBody: required: true content: @@ -59242,9 +59261,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *429 examples: - example-wildcard: &415 + example-wildcard: &430 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -59286,10 +59305,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *282 - - *283 - - *410 - - &416 + - *297 + - *298 + - *425 + - &431 name: branch_policy_id in: path required: true @@ -59301,9 +59320,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *429 examples: - default: *415 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59322,10 +59341,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *282 - - *283 - - *410 - - *416 + - *297 + - *298 + - *425 + - *431 requestBody: required: true content: @@ -59353,9 +59372,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *429 examples: - default: *415 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59374,10 +59393,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *282 - - *283 - - *410 - - *416 + - *297 + - *298 + - *425 + - *431 responses: '204': description: Response @@ -59402,9 +59421,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *410 - - *283 - - *282 + - *425 + - *298 + - *297 responses: '200': description: List of deployment protection rules @@ -59420,7 +59439,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &417 + items: &432 title: Deployment protection rule description: Deployment protection rule type: object @@ -59439,7 +59458,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &418 + app: &433 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -59538,9 +59557,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *410 - - *283 - - *282 + - *425 + - *298 + - *297 requestBody: content: application/json: @@ -59561,9 +59580,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *417 + schema: *432 examples: - default: &419 + default: &434 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -59598,9 +59617,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *410 - - *283 - - *282 + - *425 + - *298 + - *297 - *5 - *4 responses: @@ -59619,7 +59638,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *418 + items: *433 examples: default: value: @@ -59654,10 +59673,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *282 - - *283 - - *410 - - &420 + - *297 + - *298 + - *425 + - &435 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -59669,9 +59688,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *432 examples: - default: *419 + default: *434 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59692,10 +59711,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *410 - - *283 - - *282 - - *420 + - *425 + - *298 + - *297 + - *435 responses: '204': description: Response @@ -59721,9 +59740,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#list-environment-secrets parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *4 - *5 responses: @@ -59741,9 +59760,9 @@ paths: type: integer secrets: type: array - items: *319 + items: *334 examples: - default: *320 + default: *335 headers: Link: *6 x-github: @@ -59768,17 +59787,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#get-an-environment-public-key parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 responses: '200': description: Response content: application/json: - schema: *321 + schema: *336 examples: - default: *322 + default: *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59800,18 +59819,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#get-an-environment-secret parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *163 responses: '200': description: Response content: application/json: - schema: *319 + schema: *334 examples: - default: *421 + default: *436 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59833,9 +59852,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *163 requestBody: required: true @@ -59893,9 +59912,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#delete-an-environment-secret parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *163 responses: '204': @@ -59921,10 +59940,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#list-environment-variables parameters: - - *282 - - *283 - - *410 - - *306 + - *297 + - *298 + - *425 + - *321 - *5 responses: '200': @@ -59941,9 +59960,9 @@ paths: type: integer variables: type: array - items: *323 + items: *338 examples: - default: *324 + default: *339 headers: Link: *6 x-github: @@ -59966,9 +59985,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#create-an-environment-variable parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 requestBody: required: true content: @@ -60020,18 +60039,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#get-an-environment-variable parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *166 responses: '200': description: Response content: application/json: - schema: *323 + schema: *338 examples: - default: *422 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60052,10 +60071,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#update-an-environment-variable parameters: - - *282 - - *283 + - *297 + - *298 - *166 - - *410 + - *425 requestBody: required: true content: @@ -60097,10 +60116,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#delete-an-environment-variable parameters: - - *282 - - *283 + - *297 + - *298 - *166 - - *410 + - *425 responses: '204': description: Response @@ -60122,8 +60141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/events#list-repository-events parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -60200,8 +60219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/forks#list-forks parameters: - - *282 - - *283 + - *297 + - *298 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -60360,8 +60379,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/forks#create-a-fork parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -60393,9 +60412,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *308 examples: - default: *295 + default: *310 '400': *34 '422': *35 '403': *43 @@ -60416,8 +60435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/blobs#create-a-blob parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -60477,7 +60496,7 @@ paths: schema: oneOf: - *138 - - *423 + - *438 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60502,8 +60521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/blobs#get-a-blob parameters: - - *282 - - *283 + - *297 + - *298 - name: file_sha in: path required: true @@ -60602,8 +60621,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/commits#create-a-commit parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -60712,7 +60731,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &439 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -60919,15 +60938,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/commits#get-a-commit-object parameters: - - *282 - - *283 - - *382 + - *297 + - *298 + - *397 responses: '200': description: Response content: application/json: - schema: *424 + schema: *439 examples: default: value: @@ -60980,9 +60999,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/refs#list-matching-references parameters: - - *282 - - *283 - - &425 + - *297 + - *298 + - &440 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -60999,7 +61018,7 @@ paths: application/json: schema: type: array - items: &426 + items: &441 title: Git Reference description: Git references within a repository type: object @@ -61074,17 +61093,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/refs#get-a-reference parameters: - - *282 - - *283 - - *425 + - *297 + - *298 + - *440 responses: '200': description: Response content: application/json: - schema: *426 + schema: *441 examples: - default: &427 + default: &442 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -61113,8 +61132,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/refs#create-a-reference parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -61143,9 +61162,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *441 examples: - default: *427 + default: *442 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -61171,9 +61190,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/refs#update-a-reference parameters: - - *282 - - *283 - - *425 + - *297 + - *298 + - *440 requestBody: required: true content: @@ -61202,9 +61221,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *441 examples: - default: *427 + default: *442 '422': *35 '409': *140 x-github: @@ -61222,9 +61241,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/refs#delete-a-reference parameters: - - *282 - - *283 - - *425 + - *297 + - *298 + - *440 responses: '204': description: Response @@ -61279,8 +61298,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/tags#create-a-tag-object parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -61347,7 +61366,7 @@ paths: description: Response content: application/json: - schema: &429 + schema: &444 title: Git Tag description: Metadata for a Git tag type: object @@ -61398,7 +61417,7 @@ paths: - sha - type - url - verification: *428 + verification: *443 required: - sha - url @@ -61408,7 +61427,7 @@ paths: - tag - message examples: - default: &430 + default: &445 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -61478,8 +61497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/tags#get-a-tag parameters: - - *282 - - *283 + - *297 + - *298 - name: tag_sha in: path required: true @@ -61490,9 +61509,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *444 examples: - default: *430 + default: *445 '404': *26 '409': *140 x-github: @@ -61516,8 +61535,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/trees#create-a-tree parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -61590,7 +61609,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &446 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -61686,8 +61705,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/trees#get-a-tree parameters: - - *282 - - *283 + - *297 + - *298 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -61710,7 +61729,7 @@ paths: description: Response content: application/json: - schema: *431 + schema: *446 examples: default-response: summary: Default response @@ -61769,8 +61788,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#list-repository-webhooks parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -61780,7 +61799,7 @@ paths: application/json: schema: type: array - items: &432 + items: &447 title: Webhook description: Webhooks for repositories. type: object @@ -61834,7 +61853,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &644 + last_response: &645 title: Hook Response type: object properties: @@ -61908,8 +61927,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#create-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -61961,9 +61980,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *447 examples: - default: &433 + default: &448 value: type: Repository id: 12345678 @@ -62011,17 +62030,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#get-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 responses: '200': description: Response content: application/json: - schema: *432 + schema: *447 examples: - default: *433 + default: *448 '404': *26 x-github: githubCloudOnly: false @@ -62041,8 +62060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#update-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 requestBody: required: true @@ -62088,9 +62107,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *447 examples: - default: *433 + default: *448 '422': *35 '404': *26 x-github: @@ -62111,8 +62130,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 responses: '204': @@ -62137,8 +62156,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *3 responses: '200': @@ -62166,8 +62185,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *3 requestBody: required: false @@ -62212,8 +62231,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 - *4 - *202 @@ -62245,8 +62264,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 - *36 responses: @@ -62275,8 +62294,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 - *36 responses: @@ -62300,8 +62319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 responses: '204': @@ -62327,8 +62346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 responses: '204': @@ -62353,8 +62372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -62362,8 +62381,8 @@ paths: application/json: schema: *39 examples: - default: *434 - '301': *294 + default: *449 + '301': *309 '404': *26 x-github: githubCloudOnly: false @@ -62382,8 +62401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/invitations#list-repository-invitations parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -62393,7 +62412,7 @@ paths: application/json: schema: type: array - items: &435 + items: &450 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -62456,7 +62475,7 @@ paths: - html_url - created_at examples: - default: &595 + default: &596 value: - id: 1 repository: @@ -62587,9 +62606,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *282 - - *283 - - &436 + - *297 + - *298 + - &451 name: invitation_id description: The unique identifier of the invitation. in: path @@ -62624,7 +62643,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *450 examples: default: value: @@ -62755,9 +62774,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *282 - - *283 - - *436 + - *297 + - *298 + - *451 responses: '204': description: Response @@ -62788,8 +62807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#list-repository-issues parameters: - - *282 - - *283 + - *297 + - *298 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -63010,7 +63029,7 @@ paths: state_reason: completed headers: Link: *6 - '301': *294 + '301': *309 '422': *35 '404': *26 x-github: @@ -63039,8 +63058,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#create-an-issue parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -63124,7 +63143,7 @@ paths: application/json: schema: *121 examples: - default: &442 + default: &457 value: id: 1 node_id: MDU6SXNzdWUx @@ -63308,9 +63327,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *282 - - *283 - - &488 + - *297 + - *298 + - &503 name: sort description: The property to sort the results by. in: query @@ -63340,9 +63359,9 @@ paths: application/json: schema: type: array - items: *437 + items: *452 examples: - default: &444 + default: &459 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -63400,17 +63419,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#get-an-issue-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '200': description: Response content: application/json: - schema: *437 + schema: *452 examples: - default: &438 + default: &453 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -63464,8 +63483,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#update-an-issue-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -63488,9 +63507,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *452 examples: - default: *438 + default: *453 '422': *35 x-github: githubCloudOnly: false @@ -63508,8 +63527,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#delete-an-issue-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '204': @@ -63530,8 +63549,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). @@ -63558,9 +63577,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 '404': *26 @@ -63581,8 +63600,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -63615,16 +63634,16 @@ paths: description: Reaction exists content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Reaction created content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '422': *35 x-github: githubCloudOnly: false @@ -63646,10 +63665,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *282 - - *283 + - *297 + - *298 - *120 - - *274 + - *289 responses: '204': description: Response @@ -63669,8 +63688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/events#list-issue-events-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -63680,7 +63699,7 @@ paths: application/json: schema: type: array - items: &441 + items: &456 title: Issue Event description: Issue Event type: object @@ -63723,8 +63742,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *439 - required: *440 + properties: *454 + required: *455 nullable: true label: title: Issue Event Label @@ -63768,7 +63787,7 @@ paths: properties: *17 required: *18 nullable: true - requested_team: *284 + requested_team: *299 dismissed_review: title: Issue Event Dismissed Review type: object @@ -64031,8 +64050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/events#get-an-issue-event parameters: - - *282 - - *283 + - *297 + - *298 - name: event_id in: path required: true @@ -64043,7 +64062,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *456 examples: default: value: @@ -64270,9 +64289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue parameters: - - *282 - - *283 - - &443 + - *297 + - *298 + - &458 name: issue_number description: The number that identifies the issue. in: path @@ -64286,8 +64305,8 @@ paths: application/json: schema: *121 examples: - default: *442 - '301': *294 + default: *457 + '301': *309 '404': *26 '410': *233 '304': *42 @@ -64314,9 +64333,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#update-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: false content: @@ -64422,11 +64441,11 @@ paths: application/json: schema: *121 examples: - default: *442 + default: *457 '422': *35 '503': *104 '403': *43 - '301': *294 + '301': *309 '404': *26 '410': *233 x-github: @@ -64446,9 +64465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: false content: @@ -64476,7 +64495,7 @@ paths: application/json: schema: *121 examples: - default: *442 + default: *457 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64492,9 +64511,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: content: application/json: @@ -64521,7 +64540,7 @@ paths: application/json: schema: *121 examples: - default: *442 + default: *457 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64543,9 +64562,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - name: assignee in: path required: true @@ -64585,9 +64604,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#list-issue-comments parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - *111 - *4 - *5 @@ -64598,9 +64617,9 @@ paths: application/json: schema: type: array - items: *437 + items: *452 examples: - default: *444 + default: *459 headers: Link: *6 '404': *26 @@ -64633,9 +64652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#create-an-issue-comment parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: true content: @@ -64657,9 +64676,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *452 examples: - default: *438 + default: *453 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -64686,9 +64705,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/events#list-issue-events parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - *4 - *5 responses: @@ -64702,7 +64721,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &447 + - &462 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -64756,7 +64775,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &448 + - &463 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -64892,7 +64911,7 @@ paths: - performed_via_github_app - assignee - assigner - - &449 + - &464 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -64943,7 +64962,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &450 + - &465 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -64994,7 +65013,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &451 + - &466 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -65048,7 +65067,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &452 + - &467 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -65082,7 +65101,7 @@ paths: properties: *106 required: *107 review_requester: *19 - requested_team: *284 + requested_team: *299 requested_reviewer: *19 required: - review_requester @@ -65095,7 +65114,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &453 + - &468 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -65129,7 +65148,7 @@ paths: properties: *106 required: *107 review_requester: *19 - requested_team: *284 + requested_team: *299 requested_reviewer: *19 required: - review_requester @@ -65142,7 +65161,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &454 + - &469 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -65202,7 +65221,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &455 + - &470 title: Locked Issue Event description: Locked Issue Event type: object @@ -65250,7 +65269,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &456 + - &471 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -65316,7 +65335,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &457 + - &472 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -65382,7 +65401,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &458 + - &473 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -65448,7 +65467,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &459 + - &474 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -65556,9 +65575,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#list-labels-for-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - *4 - *5 responses: @@ -65568,7 +65587,7 @@ paths: application/json: schema: type: array - items: &445 + items: &460 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -65615,7 +65634,7 @@ paths: - color - default examples: - default: &446 + default: &461 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -65633,7 +65652,7 @@ paths: default: false headers: Link: *6 - '301': *294 + '301': *309 '404': *26 '410': *233 x-github: @@ -65652,9 +65671,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#add-labels-to-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: false content: @@ -65713,10 +65732,10 @@ paths: application/json: schema: type: array - items: *445 + items: *460 examples: - default: *446 - '301': *294 + default: *461 + '301': *309 '404': *26 '410': *233 '422': *35 @@ -65735,9 +65754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#set-labels-for-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: false content: @@ -65797,10 +65816,10 @@ paths: application/json: schema: type: array - items: *445 + items: *460 examples: - default: *446 - '301': *294 + default: *461 + '301': *309 '404': *26 '410': *233 '422': *35 @@ -65819,13 +65838,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 responses: '204': description: Response - '301': *294 + '301': *309 '404': *26 '410': *233 x-github: @@ -65846,9 +65865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - name: name in: path required: true @@ -65861,7 +65880,7 @@ paths: application/json: schema: type: array - items: *445 + items: *460 examples: default: value: @@ -65872,7 +65891,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *294 + '301': *309 '404': *26 '410': *233 x-github: @@ -65894,9 +65913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#lock-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: false content: @@ -65942,9 +65961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#unlock-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 responses: '204': description: Response @@ -65966,9 +65985,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -65994,9 +66013,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 '404': *26 @@ -66018,9 +66037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: true content: @@ -66052,16 +66071,16 @@ paths: description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '422': *35 x-github: githubCloudOnly: false @@ -66083,10 +66102,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *282 - - *283 - - *443 - - *274 + - *297 + - *298 + - *458 + - *289 responses: '204': description: Response @@ -66106,9 +66125,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - *4 - *5 responses: @@ -66123,19 +66142,19 @@ paths: description: Timeline Event type: object anyOf: - - *447 - - *448 - - *449 - - *450 - - *451 - - *452 - - *453 - - *454 - - *455 - - *456 - - *457 - - *458 - - *459 + - *462 + - *463 + - *464 + - *465 + - *466 + - *467 + - *468 + - *469 + - *470 + - *471 + - *472 + - *473 + - *474 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -66436,7 +66455,7 @@ paths: type: string comments: type: array - items: &483 + items: &498 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -66645,7 +66664,7 @@ paths: type: string comments: type: array - items: *380 + items: *395 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -66951,8 +66970,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -66962,7 +66981,7 @@ paths: application/json: schema: type: array - items: &460 + items: &475 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -67025,8 +67044,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -67062,9 +67081,9 @@ paths: description: Response content: application/json: - schema: *460 + schema: *475 examples: - default: &461 + default: &476 value: id: 1 key: ssh-rsa AAA... @@ -67097,9 +67116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *282 - - *283 - - &462 + - *297 + - *298 + - &477 name: key_id description: The unique identifier of the key. in: path @@ -67111,9 +67130,9 @@ paths: description: Response content: application/json: - schema: *460 + schema: *475 examples: - default: *461 + default: *476 '404': *26 x-github: githubCloudOnly: false @@ -67131,9 +67150,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *282 - - *283 - - *462 + - *297 + - *298 + - *477 responses: '204': description: Response @@ -67153,8 +67172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#list-labels-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -67164,9 +67183,9 @@ paths: application/json: schema: type: array - items: *445 + items: *460 examples: - default: *446 + default: *461 headers: Link: *6 '404': *26 @@ -67187,8 +67206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#create-a-label parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -67224,9 +67243,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *460 examples: - default: &463 + default: &478 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -67258,8 +67277,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#get-a-label parameters: - - *282 - - *283 + - *297 + - *298 - name: name in: path required: true @@ -67270,9 +67289,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *460 examples: - default: *463 + default: *478 '404': *26 x-github: githubCloudOnly: false @@ -67289,8 +67308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#update-a-label parameters: - - *282 - - *283 + - *297 + - *298 - name: name in: path required: true @@ -67329,7 +67348,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *460 examples: default: value: @@ -67355,8 +67374,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#delete-a-label parameters: - - *282 - - *283 + - *297 + - *298 - name: name in: path required: true @@ -67382,8 +67401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-languages parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -67419,8 +67438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '202': *141 '403': @@ -67448,8 +67467,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -67475,9 +67494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *282 - - *283 - - *371 + - *297 + - *298 + - *386 responses: '200': description: Response @@ -67622,8 +67641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -67688,8 +67707,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branches#merge-a-branch parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -67723,9 +67742,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *381 + schema: *396 examples: - default: *464 + default: *479 '204': description: Response when already merged '404': @@ -67750,8 +67769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/milestones#list-milestones parameters: - - *282 - - *283 + - *297 + - *298 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -67792,12 +67811,12 @@ paths: application/json: schema: type: array - items: &465 + items: &480 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *385 - required: *386 + properties: *400 + required: *401 examples: default: value: @@ -67853,8 +67872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/milestones#create-a-milestone parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -67894,9 +67913,9 @@ paths: description: Response content: application/json: - schema: *465 + schema: *480 examples: - default: &466 + default: &481 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -67955,9 +67974,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/milestones#get-a-milestone parameters: - - *282 - - *283 - - &467 + - *297 + - *298 + - &482 name: milestone_number description: The number that identifies the milestone. in: path @@ -67969,9 +67988,9 @@ paths: description: Response content: application/json: - schema: *465 + schema: *480 examples: - default: *466 + default: *481 '404': *26 x-github: githubCloudOnly: false @@ -67988,9 +68007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/milestones#update-a-milestone parameters: - - *282 - - *283 - - *467 + - *297 + - *298 + - *482 requestBody: required: false content: @@ -68028,9 +68047,9 @@ paths: description: Response content: application/json: - schema: *465 + schema: *480 examples: - default: *466 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68046,9 +68065,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/milestones#delete-a-milestone parameters: - - *282 - - *283 - - *467 + - *297 + - *298 + - *482 responses: '204': description: Response @@ -68069,9 +68088,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *282 - - *283 - - *467 + - *297 + - *298 + - *482 - *4 - *5 responses: @@ -68081,9 +68100,9 @@ paths: application/json: schema: type: array - items: *445 + items: *460 examples: - default: *446 + default: *461 headers: Link: *6 x-github: @@ -68102,12 +68121,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *282 - - *283 - - *468 - - *469 + - *297 + - *298 + - *483 + - *484 - *111 - - *470 + - *485 - *4 - *5 responses: @@ -68119,7 +68138,7 @@ paths: type: array items: *131 examples: - default: *471 + default: *486 headers: Link: *6 x-github: @@ -68143,8 +68162,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -68202,14 +68221,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#get-a-apiname-pages-site parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: &472 + schema: &487 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -68334,7 +68353,7 @@ paths: - custom_404 - public examples: - default: &473 + default: &488 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -68375,8 +68394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#create-a-apiname-pages-site parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -68430,9 +68449,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *487 examples: - default: *473 + default: *488 '422': *35 '409': *140 x-github: @@ -68455,8 +68474,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -68555,8 +68574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -68582,8 +68601,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#list-apiname-pages-builds parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -68593,7 +68612,7 @@ paths: application/json: schema: type: array - items: &474 + items: &489 title: Page Build description: Page Build type: object @@ -68687,8 +68706,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#request-a-apiname-pages-build parameters: - - *282 - - *283 + - *297 + - *298 responses: '201': description: Response @@ -68733,16 +68752,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#get-latest-pages-build parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *474 + schema: *489 examples: - default: &475 + default: &490 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -68790,8 +68809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#get-apiname-pages-build parameters: - - *282 - - *283 + - *297 + - *298 - name: build_id in: path required: true @@ -68802,9 +68821,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *489 examples: - default: *475 + default: *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68824,8 +68843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#create-a-github-pages-deployment parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -68925,9 +68944,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *282 - - *283 - - &476 + - *297 + - *298 + - &491 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -68985,9 +69004,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *282 - - *283 - - *476 + - *297 + - *298 + - *491 responses: '204': *229 '404': *26 @@ -69010,8 +69029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/repo-pre-receive-hooks#list-pre-receive-hooks-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 - *9 @@ -69032,7 +69051,7 @@ paths: application/json: schema: type: array - items: &477 + items: &492 type: object properties: id: @@ -69066,17 +69085,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/repo-pre-receive-hooks#get-a-pre-receive-hook-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *16 responses: '200': description: Response content: application/json: - schema: *477 + schema: *492 examples: - default: &478 + default: &493 value: id: 42 name: Check Commits @@ -69098,15 +69117,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/repo-pre-receive-hooks#update-pre-receive-hook-enforcement-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *16 responses: '200': description: Response content: application/json: - schema: *477 + schema: *492 examples: default: value: @@ -69150,8 +69169,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/repo-pre-receive-hooks#remove-pre-receive-hook-enforcement-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *16 responses: '200': @@ -69159,9 +69178,9 @@ paths: global level. content: application/json: - schema: *477 + schema: *492 examples: - default: *478 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69181,8 +69200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/projects#list-repository-projects parameters: - - *282 - - *283 + - *297 + - *298 - name: state description: Indicates the state of the projects to return. in: query @@ -69263,8 +69282,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/projects#create-a-repository-project parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -69292,7 +69311,7 @@ paths: application/json: schema: *232 examples: - default: *291 + default: *306 '401': *41 '403': *43 '404': *26 @@ -69316,8 +69335,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -69356,8 +69375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -69419,8 +69438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#list-pull-requests parameters: - - *282 - - *283 + - *297 + - *298 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -69480,9 +69499,9 @@ paths: application/json: schema: type: array - items: *479 + items: *494 examples: - default: *480 + default: *495 headers: Link: *6 '304': *42 @@ -69514,8 +69533,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#create-a-pull-request parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -69580,7 +69599,7 @@ paths: description: Response content: application/json: - schema: &485 + schema: &500 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -69691,8 +69710,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *385 - required: *386 + properties: *400 + required: *401 nullable: true active_lock_reason: type: string @@ -69737,7 +69756,7 @@ paths: nullable: true requested_teams: type: array - items: *481 + items: *496 nullable: true head: type: object @@ -69776,14 +69795,14 @@ paths: _links: type: object properties: - comments: *387 - commits: *387 - statuses: *387 - html: *387 - issue: *387 - review_comments: *387 - review_comment: *387 - self: *387 + comments: *402 + commits: *402 + statuses: *402 + html: *402 + issue: *402 + review_comments: *402 + review_comment: *402 + self: *402 required: - comments - commits @@ -69794,7 +69813,7 @@ paths: - review_comment - self author_association: *108 - auto_merge: *482 + auto_merge: *497 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -69886,7 +69905,7 @@ paths: - merged_by - review_comments examples: - default: &486 + default: &501 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -70413,8 +70432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - name: sort in: query required: false @@ -70443,9 +70462,9 @@ paths: application/json: schema: type: array - items: *483 + items: *498 examples: - default: &489 + default: &504 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -70522,17 +70541,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '200': description: Response content: application/json: - schema: *483 + schema: *498 examples: - default: &484 + default: &499 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -70607,8 +70626,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -70631,9 +70650,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *498 examples: - default: *484 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70649,8 +70668,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '204': @@ -70672,8 +70691,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). @@ -70700,9 +70719,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 '404': *26 @@ -70723,8 +70742,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -70757,16 +70776,16 @@ paths: description: Reaction exists content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Reaction created content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '422': *35 x-github: githubCloudOnly: false @@ -70788,10 +70807,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *282 - - *283 + - *297 + - *298 - *120 - - *274 + - *289 responses: '204': description: Response @@ -70834,9 +70853,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#get-a-pull-request parameters: - - *282 - - *283 - - &487 + - *297 + - *298 + - &502 name: pull_number description: The number that identifies the pull request. in: path @@ -70849,9 +70868,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *485 + schema: *500 examples: - default: *486 + default: *501 '304': *42 '404': *26 '406': @@ -70886,9 +70905,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#update-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: false content: @@ -70930,9 +70949,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *500 examples: - default: *486 + default: *501 '422': *35 '403': *43 x-github: @@ -70960,10 +70979,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *282 - - *283 - - *487 - - *488 + - *297 + - *298 + - *502 + - *503 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -70983,9 +71002,9 @@ paths: application/json: schema: type: array - items: *483 + items: *498 examples: - default: *489 + default: *504 headers: Link: *6 x-github: @@ -71018,9 +71037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: true content: @@ -71125,7 +71144,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *498 examples: example-for-a-multi-line-comment: value: @@ -71213,9 +71232,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 - *120 requestBody: required: true @@ -71238,7 +71257,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *498 examples: default: value: @@ -71324,9 +71343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 - *4 - *5 responses: @@ -71336,9 +71355,9 @@ paths: application/json: schema: type: array - items: *381 + items: *396 examples: - default: *490 + default: *505 headers: Link: *6 x-github: @@ -71368,9 +71387,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#list-pull-requests-files parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 - *4 - *5 responses: @@ -71380,7 +71399,7 @@ paths: application/json: schema: type: array - items: *392 + items: *407 examples: default: value: @@ -71418,9 +71437,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 responses: '204': description: Response if pull request has been merged @@ -71443,9 +71462,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#merge-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: false content: @@ -71556,9 +71575,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 responses: '200': description: Response @@ -71574,7 +71593,7 @@ paths: items: *19 teams: type: array - items: *284 + items: *299 required: - users - teams @@ -71633,9 +71652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: false content: @@ -71672,7 +71691,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *494 examples: default: value: @@ -72208,9 +72227,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: true content: @@ -72244,7 +72263,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *494 examples: default: value: @@ -72749,9 +72768,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 - *4 - *5 responses: @@ -72761,7 +72780,7 @@ paths: application/json: schema: type: array - items: &491 + items: &506 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -72912,9 +72931,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: false content: @@ -73000,9 +73019,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *506 examples: - default: &493 + default: &508 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -73065,10 +73084,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 - - &492 + - *297 + - *298 + - *502 + - &507 name: review_id description: The unique identifier of the review. in: path @@ -73080,9 +73099,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *506 examples: - default: &494 + default: &509 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -73141,10 +73160,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 - - *492 + - *297 + - *298 + - *502 + - *507 requestBody: required: true content: @@ -73167,7 +73186,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *506 examples: default: value: @@ -73229,18 +73248,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 - - *492 + - *297 + - *298 + - *502 + - *507 responses: '200': description: Response content: application/json: - schema: *491 + schema: *506 examples: - default: *493 + default: *508 '422': *27 '404': *26 x-github: @@ -73267,10 +73286,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *282 - - *283 - - *487 - - *492 + - *297 + - *298 + - *502 + - *507 - *4 - *5 responses: @@ -73353,9 +73372,9 @@ paths: _links: type: object properties: - self: *387 - html: *387 - pull_request: *387 + self: *402 + html: *402 + pull_request: *402 required: - self - html @@ -73505,10 +73524,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 - - *492 + - *297 + - *298 + - *502 + - *507 requestBody: required: true content: @@ -73536,7 +73555,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *506 examples: default: value: @@ -73599,10 +73618,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 - - *492 + - *297 + - *298 + - *502 + - *507 requestBody: required: true content: @@ -73637,9 +73656,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *506 examples: - default: *494 + default: *509 '404': *26 '422': *27 '403': *43 @@ -73661,9 +73680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: false content: @@ -73726,8 +73745,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#get-a-repository-readme parameters: - - *282 - - *283 + - *297 + - *298 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -73740,9 +73759,9 @@ paths: description: Response content: application/json: - schema: *495 + schema: *510 examples: - default: &496 + default: &511 value: type: file encoding: base64 @@ -73784,8 +73803,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *282 - - *283 + - *297 + - *298 - name: dir description: The alternate path to look for a README file in: path @@ -73805,9 +73824,9 @@ paths: description: Response content: application/json: - schema: *495 + schema: *510 examples: - default: *496 + default: *511 '404': *26 '422': *35 x-github: @@ -73829,8 +73848,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#list-releases parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -73840,7 +73859,7 @@ paths: application/json: schema: type: array - items: &497 + items: &512 title: Release description: A release. type: object @@ -73907,7 +73926,7 @@ paths: author: *19 assets: type: array - items: &498 + items: &513 title: Release Asset description: Data related to a release. type: object @@ -74090,8 +74109,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#create-a-release parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -74161,9 +74180,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *512 examples: - default: &502 + default: &517 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -74263,9 +74282,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/assets#get-a-release-asset parameters: - - *282 - - *283 - - &500 + - *297 + - *298 + - &515 name: asset_id description: The unique identifier of the asset. in: path @@ -74277,9 +74296,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *513 examples: - default: &501 + default: &516 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -74314,7 +74333,7 @@ paths: type: User site_admin: false '404': *26 - '302': *499 + '302': *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74330,9 +74349,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/assets#update-a-release-asset parameters: - - *282 - - *283 - - *500 + - *297 + - *298 + - *515 requestBody: required: false content: @@ -74360,9 +74379,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *513 examples: - default: *501 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74378,9 +74397,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/assets#delete-a-release-asset parameters: - - *282 - - *283 - - *500 + - *297 + - *298 + - *515 responses: '204': description: Response @@ -74404,8 +74423,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -74490,16 +74509,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#get-the-latest-release parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *497 + schema: *512 examples: - default: *502 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74516,8 +74535,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#get-a-release-by-tag-name parameters: - - *282 - - *283 + - *297 + - *298 - name: tag description: tag parameter in: path @@ -74530,9 +74549,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *512 examples: - default: *502 + default: *517 '404': *26 x-github: githubCloudOnly: false @@ -74554,9 +74573,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#get-a-release parameters: - - *282 - - *283 - - &503 + - *297 + - *298 + - &518 name: release_id description: The unique identifier of the release. in: path @@ -74570,9 +74589,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-server@3.13/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *497 + schema: *512 examples: - default: *502 + default: *517 '401': description: Unauthorized x-github: @@ -74590,9 +74609,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#update-a-release parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 requestBody: required: false content: @@ -74649,9 +74668,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *512 examples: - default: *502 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74667,9 +74686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#delete-a-release parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 responses: '204': description: Response @@ -74689,9 +74708,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/assets#list-release-assets parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 - *4 - *5 responses: @@ -74701,7 +74720,7 @@ paths: application/json: schema: type: array - items: *498 + items: *513 examples: default: value: @@ -74783,9 +74802,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 - name: name in: query required: true @@ -74811,7 +74830,7 @@ paths: description: Response for successful upload content: application/json: - schema: *498 + schema: *513 examples: response-for-successful-upload: value: @@ -74866,9 +74885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -74892,9 +74911,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 '404': *26 @@ -74915,9 +74934,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 requestBody: required: true content: @@ -74947,16 +74966,16 @@ paths: description: Reaction exists content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Reaction created content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '422': *35 x-github: githubCloudOnly: false @@ -74978,10 +74997,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-a-release-reaction parameters: - - *282 - - *283 - - *503 - - *274 + - *297 + - *298 + - *518 + - *289 responses: '204': description: Response @@ -75001,8 +75020,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-cache-replication-status parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -75077,9 +75096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/rules#get-rules-for-a-branch parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 - *4 - *5 responses: @@ -75095,8 +75114,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *504 - - &506 + - *247 + - &519 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -75116,47 +75135,47 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *505 - - *506 + - *248 + - *519 - allOf: - - *507 - - *506 + - *249 + - *519 - allOf: - - *508 - - *506 + - *250 + - *519 - allOf: - - *509 - - *506 + - *251 + - *519 - allOf: - - *510 - - *506 + - *252 + - *519 - allOf: - - *511 - - *506 + - *253 + - *519 - allOf: - - *512 - - *506 + - *254 + - *519 - allOf: - - *513 - - *506 + - *255 + - *519 - allOf: - - *514 - - *506 + - *256 + - *519 - allOf: - - *515 - - *506 + - *257 + - *519 - allOf: - - *516 - - *506 + - *258 + - *519 - allOf: - - *517 - - *506 + - *259 + - *519 - allOf: - - *518 - - *506 + - *260 + - *519 - allOf: + - *261 - *519 - - *506 examples: default: value: @@ -75195,8 +75214,8 @@ paths: category: repos subcategory: rules parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 - name: includes_parents @@ -75215,7 +75234,7 @@ paths: application/json: schema: type: array - items: *248 + items: *262 examples: default: value: @@ -75262,8 +75281,8 @@ paths: category: repos subcategory: rules parameters: - - *282 - - *283 + - *297 + - *298 requestBody: description: Request body required: true @@ -75292,7 +75311,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *247 + items: *521 required: - name - enforcement @@ -75323,9 +75342,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: &530 + default: &531 value: id: 42 name: super cool ruleset @@ -75372,12 +75391,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *282 - - *283 - - *521 + - *297 + - *298 - *522 - *523 - *524 + - *525 - *4 - *5 responses: @@ -75385,9 +75404,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 '404': *26 '500': *220 x-github: @@ -75408,17 +75427,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *282 - - *283 - - *527 + - *297 + - *298 + - *528 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 '404': *26 '500': *220 x-github: @@ -75446,8 +75465,8 @@ paths: category: repos subcategory: rules parameters: - - *282 - - *283 + - *297 + - *298 - name: ruleset_id description: The ID of the ruleset. in: path @@ -75467,9 +75486,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: *530 + default: *531 '404': *26 '500': *220 put: @@ -75487,8 +75506,8 @@ paths: category: repos subcategory: rules parameters: - - *282 - - *283 + - *297 + - *298 - name: ruleset_id description: The ID of the ruleset. in: path @@ -75522,7 +75541,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *247 + items: *521 examples: default: value: @@ -75550,9 +75569,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: *530 + default: *531 '404': *26 '500': *220 delete: @@ -75570,8 +75589,8 @@ paths: category: repos subcategory: rules parameters: - - *282 - - *283 + - *297 + - *298 - name: ruleset_id description: The ID of the ruleset. in: path @@ -75599,18 +75618,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *282 - - *283 - - *250 - - *251 - - *252 - - *253 + - *297 + - *298 + - *265 + - *266 + - *267 + - *268 - *9 - *5 - *4 - - *531 - *532 - - *254 + - *533 + - *269 responses: '200': description: Response @@ -75618,7 +75637,7 @@ paths: application/json: schema: type: array - items: &535 + items: &536 type: object properties: number: *93 @@ -75637,8 +75656,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *533 - resolution: *534 + state: *534 + resolution: *535 resolved_at: type: string format: date-time @@ -75816,15 +75835,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *282 - - *283 - - *369 + - *297 + - *298 + - *384 responses: '200': description: Response content: application/json: - schema: *535 + schema: *536 examples: default: value: @@ -75864,9 +75883,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *282 - - *283 - - *369 + - *297 + - *298 + - *384 requestBody: required: true content: @@ -75874,8 +75893,8 @@ paths: schema: type: object properties: - state: *533 - resolution: *534 + state: *534 + resolution: *535 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -75893,7 +75912,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: default: value: @@ -75960,9 +75979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *282 - - *283 - - *369 + - *297 + - *298 + - *384 - *5 - *4 responses: @@ -75973,7 +75992,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &662 + items: &663 type: object properties: type: @@ -76280,8 +76299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#list-stargazers parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -76377,8 +76396,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -76387,7 +76406,7 @@ paths: application/json: schema: type: array - items: &536 + items: &537 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -76418,8 +76437,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -76492,8 +76511,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -76589,8 +76608,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -76744,8 +76763,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -76755,7 +76774,7 @@ paths: application/json: schema: type: array - items: *536 + items: *537 examples: default: value: @@ -76788,8 +76807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/statuses#create-a-commit-status parameters: - - *282 - - *283 + - *297 + - *298 - name: sha in: path required: true @@ -76843,7 +76862,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: default: value: @@ -76897,8 +76916,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/watching#list-watchers parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -76930,14 +76949,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/watching#get-a-repository-subscription parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &538 + schema: &539 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -77005,8 +77024,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/watching#set-a-repository-subscription parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -77032,7 +77051,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -77059,8 +77078,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/watching#delete-a-repository-subscription parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -77080,8 +77099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-tags parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -77160,8 +77179,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -77169,7 +77188,7 @@ paths: application/json: schema: type: array - items: &539 + items: &540 title: Tag protection description: Tag protection type: object @@ -77221,8 +77240,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -77245,7 +77264,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *540 examples: default: value: @@ -77276,8 +77295,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -77314,8 +77333,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *282 - - *283 + - *297 + - *298 - name: ref in: path required: true @@ -77351,8 +77370,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-teams parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -77362,9 +77381,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - default: *262 + default: *277 headers: Link: *6 '404': *26 @@ -77384,8 +77403,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#get-all-repository-topics parameters: - - *282 - - *283 + - *297 + - *298 - *5 - *4 responses: @@ -77393,7 +77412,7 @@ paths: description: Response content: application/json: - schema: &540 + schema: &541 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -77405,7 +77424,7 @@ paths: required: - names examples: - default: &541 + default: &542 value: names: - octocat @@ -77428,8 +77447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#replace-all-repository-topics parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -77460,9 +77479,9 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: *541 + default: *542 '404': *26 '422': *27 x-github: @@ -77485,8 +77504,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#transfer-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -77760,8 +77779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -77784,8 +77803,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#enable-vulnerability-alerts parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -77807,8 +77826,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#disable-vulnerability-alerts parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -77834,8 +77853,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *282 - - *283 + - *297 + - *298 - name: ref in: path required: true @@ -77927,9 +77946,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *308 examples: - default: *295 + default: *310 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -78103,7 +78122,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &549 + - &550 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -78112,7 +78131,7 @@ paths: schema: type: string example: members - - &554 + - &555 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -78123,7 +78142,7 @@ paths: default: 1 format: int32 example: 1 - - &555 + - &556 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -78165,7 +78184,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &543 + items: &544 allOf: - type: object required: @@ -78240,7 +78259,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: &556 + meta: &557 type: object description: The metadata associated with the creation/updates to the user. @@ -78300,31 +78319,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &544 + '400': &545 description: Bad request content: application/json: - schema: *542 + schema: *543 application/scim+json: - schema: *542 - '401': &545 + schema: *543 + '401': &546 description: Authorization failure - '403': &546 + '403': &547 description: Permission denied - '429': &547 + '429': &548 description: Too many requests content: application/json: - schema: *542 + schema: *543 application/scim+json: - schema: *542 - '500': &548 + schema: *543 + '500': &549 description: Internal server error content: application/json: - schema: *542 + schema: *543 application/scim+json: - schema: *542 + schema: *543 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78351,7 +78370,7 @@ paths: required: true content: application/json: - schema: &552 + schema: &553 type: object required: - schemas @@ -78407,9 +78426,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *543 + schema: *544 examples: - group: &550 + group: &551 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -78428,13 +78447,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': *544 - '401': *545 - '403': *546 - '409': &553 + '400': *545 + '401': *546 + '403': *547 + '409': &554 description: Duplicate record detected - '429': *547 - '500': *548 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78455,7 +78474,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &551 + - &552 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -78463,22 +78482,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *549 + - *550 - *65 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *543 + schema: *544 examples: - default: *550 - '400': *544 - '401': *545 - '403': *546 + default: *551 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '429': *547 - '500': *548 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78500,13 +78519,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *551 + - *552 - *65 requestBody: required: true content: application/json: - schema: *552 + schema: *553 examples: group: summary: Group @@ -78532,17 +78551,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *543 + schema: *544 examples: - group: *550 - groupWithMembers: *550 - '400': *544 - '401': *545 - '403': *546 + group: *551 + groupWithMembers: *551 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '409': *553 - '429': *547 - '500': *548 + '409': *554 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78566,13 +78585,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *551 + - *552 - *65 requestBody: required: true content: application/json: - schema: &563 + schema: &564 type: object required: - Operations @@ -78632,17 +78651,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *543 + schema: *544 examples: - updateGroup: *550 - addMembers: *550 - '400': *544 - '401': *545 - '403': *546 + updateGroup: *551 + addMembers: *551 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '409': *553 - '429': *547 - '500': *548 + '409': *554 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78662,17 +78681,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *551 + - *552 - *65 responses: '204': description: Group was deleted, no content - '400': *544 - '401': *545 - '403': *546 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '429': *547 - '500': *548 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78709,8 +78728,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *554 - *555 + - *556 - *65 responses: '200': @@ -78743,7 +78762,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &558 + items: &559 allOf: - type: object required: @@ -78822,7 +78841,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &557 + roles: &558 type: array description: The roles assigned to the user. items: @@ -78878,7 +78897,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *556 + meta: *557 startIndex: type: integer description: A starting index for the returned page @@ -78915,11 +78934,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *544 - '401': *545 - '403': *546 - '429': *547 - '500': *548 + '400': *545 + '401': *546 + '403': *547 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78948,7 +78967,7 @@ paths: required: true content: application/json: - schema: &561 + schema: &562 type: object required: - schemas @@ -79030,9 +79049,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *557 + roles: *558 examples: - user: &562 + user: &563 summary: User value: schemas: @@ -79079,9 +79098,9 @@ paths: description: User has been created content: application/scim+json: - schema: *558 + schema: *559 examples: - user: &559 + user: &560 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -79107,13 +79126,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: *559 - '400': *544 - '401': *545 - '403': *546 - '409': *553 - '429': *547 - '500': *548 + enterpriseOwner: *560 + '400': *545 + '401': *546 + '403': *547 + '409': *554 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79134,7 +79153,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &560 + - &561 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -79147,15 +79166,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *558 + schema: *559 examples: - default: *559 - '400': *544 - '401': *545 - '403': *546 + default: *560 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '429': *547 - '500': *548 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79180,30 +79199,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *560 + - *561 - *65 requestBody: required: true content: application/json: - schema: *561 + schema: *562 examples: - user: *562 + user: *563 responses: '200': description: User was updated content: application/scim+json: - schema: *558 + schema: *559 examples: - user: *559 - '400': *544 - '401': *545 - '403': *546 + user: *560 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '409': *553 - '429': *547 - '500': *548 + '409': *554 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79241,13 +79260,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *560 + - *561 - *65 requestBody: required: true content: application/json: - schema: *563 + schema: *564 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -79287,18 +79306,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *558 - examples: - userMultiValuedProperties: *559 - userSingleValuedProperties: *559 - disableUser: *559 - '400': *544 - '401': *545 - '403': *546 + schema: *559 + examples: + userMultiValuedProperties: *560 + userSingleValuedProperties: *560 + disableUser: *560 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '409': *553 - '429': *547 - '500': *548 + '409': *554 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79318,17 +79337,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *560 + - *561 - *65 responses: '204': description: User was deleted, no content - '400': *544 - '401': *545 - '403': *546 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '429': *547 - '500': *548 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79455,7 +79474,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &564 + text_matches: &565 title: Search Result Text Matches type: array items: @@ -79618,7 +79637,7 @@ paths: enum: - author-date - committer-date - - &565 + - &566 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 @@ -79689,7 +79708,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *338 + properties: *353 nullable: true comment_count: type: integer @@ -79709,7 +79728,7 @@ paths: url: type: string format: uri - verification: *428 + verification: *443 required: - author - committer @@ -79728,7 +79747,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *338 + properties: *353 nullable: true parents: type: array @@ -79746,7 +79765,7 @@ paths: type: number node_id: type: string - text_matches: *564 + text_matches: *565 required: - sha - node_id @@ -79939,7 +79958,7 @@ paths: - interactions - created - updated - - *565 + - *566 - *4 - *5 - name: advanced_search @@ -80066,8 +80085,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *385 - required: *386 + properties: *400 + required: *401 nullable: true comments: type: integer @@ -80081,7 +80100,7 @@ paths: type: string format: date-time nullable: true - text_matches: *564 + text_matches: *565 pull_request: type: object properties: @@ -80125,7 +80144,7 @@ paths: timeline_url: type: string format: uri - type: *566 + type: *567 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -80306,7 +80325,7 @@ paths: enum: - created - updated - - *565 + - *566 - *4 - *5 responses: @@ -80350,7 +80369,7 @@ paths: nullable: true score: type: number - text_matches: *564 + text_matches: *565 required: - id - node_id @@ -80436,7 +80455,7 @@ paths: - forks - help-wanted-issues - updated - - *565 + - *566 - *4 - *5 responses: @@ -80675,7 +80694,7 @@ paths: - admin - pull - push - text_matches: *564 + text_matches: *565 temp_clone_token: type: string allow_merge_commit: @@ -80976,7 +80995,7 @@ paths: type: string format: uri nullable: true - text_matches: *564 + text_matches: *565 related: type: array nullable: true @@ -81169,7 +81188,7 @@ paths: - followers - repositories - joined - - *565 + - *566 - *4 - *5 responses: @@ -81273,7 +81292,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *564 + text_matches: *565 blog: type: string nullable: true @@ -81468,7 +81487,7 @@ paths: description: Response content: application/json: - schema: &567 + schema: &568 type: object properties: status: @@ -81488,7 +81507,7 @@ paths: - name - number examples: - default: &568 + default: &569 value: status: scheduled scheduled_time: Tuesday, January 22 at 15:34 -0800 @@ -81533,9 +81552,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *568 + default: *569 '401': description: Unauthorized requestBody: @@ -82099,7 +82118,7 @@ paths: application/json: schema: type: array - items: &569 + items: &570 type: object properties: key: @@ -82107,7 +82126,7 @@ paths: pretty-print: type: string examples: - default: &570 + default: &571 value: - key: ssh-rsa AAAAB3NzaC1yc2EAAAAB... pretty-print: ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64 @@ -82150,9 +82169,9 @@ paths: application/json: schema: type: array - items: *569 + items: *570 examples: - default: *570 + default: *571 '401': description: Unauthorized requestBody: @@ -82204,9 +82223,9 @@ paths: application/json: schema: type: array - items: *569 + items: *570 examples: - default: *570 + default: *571 '401': description: Unauthorized requestBody: @@ -82363,9 +82382,9 @@ paths: description: Response content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '404': *26 x-github: githubCloudOnly: false @@ -82455,16 +82474,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '201': description: Response content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '404': *26 '422': *35 '403': *43 @@ -82534,9 +82553,9 @@ paths: application/json: schema: type: array - items: *265 + items: *280 examples: - default: *571 + default: *572 headers: Link: *6 x-github: @@ -82599,9 +82618,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: *266 + default: *281 x-github: triggersNotification: true githubCloudOnly: false @@ -82629,15 +82648,15 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#get-a-discussion-legacy parameters: - *7 - - *267 + - *282 responses: '200': description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: *266 + default: *281 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82663,7 +82682,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#update-a-discussion-legacy parameters: - *7 - - *267 + - *282 requestBody: required: false content: @@ -82686,9 +82705,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: *572 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82714,7 +82733,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#delete-a-discussion-legacy parameters: - *7 - - *267 + - *282 responses: '204': description: Response @@ -82744,7 +82763,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - *7 - - *267 + - *282 - *9 - *4 - *5 @@ -82755,9 +82774,9 @@ paths: application/json: schema: type: array - items: *268 + items: *283 examples: - default: *573 + default: *574 headers: Link: *6 x-github: @@ -82787,7 +82806,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - *7 - - *267 + - *282 requestBody: required: true content: @@ -82809,9 +82828,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: *269 + default: *284 x-github: triggersNotification: true githubCloudOnly: false @@ -82839,16 +82858,16 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - *7 - - *267 - - *270 + - *282 + - *285 responses: '200': description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: *269 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82874,8 +82893,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - *7 - - *267 - - *270 + - *282 + - *285 requestBody: required: true content: @@ -82897,9 +82916,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: *574 + default: *575 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82925,8 +82944,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - *7 - - *267 - - *270 + - *282 + - *285 responses: '204': description: Response @@ -82956,8 +82975,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - *7 - - *267 - - *270 + - *282 + - *285 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -82983,9 +83002,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 x-github: @@ -83015,8 +83034,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - *7 - - *267 - - *270 + - *282 + - *285 requestBody: required: true content: @@ -83048,9 +83067,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83077,7 +83096,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - *7 - - *267 + - *282 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -83103,9 +83122,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 x-github: @@ -83135,7 +83154,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - *7 - - *267 + - *282 requestBody: required: true content: @@ -83167,9 +83186,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -83365,9 +83384,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *294 examples: - response-if-user-is-a-team-maintainer: *575 + response-if-user-is-a-team-maintainer: *576 '404': *26 x-github: githubCloudOnly: false @@ -83426,9 +83445,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *294 examples: - response-if-users-membership-with-team-is-now-pending: *576 + response-if-users-membership-with-team-is-now-pending: *577 '403': description: Forbidden if team synchronization is set up '422': @@ -83502,9 +83521,9 @@ paths: application/json: schema: type: array - items: *280 + items: *295 examples: - default: *577 + default: *578 headers: Link: *6 '404': *26 @@ -83532,15 +83551,15 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - *7 - - *281 + - *296 responses: '200': description: Response content: application/json: - schema: *280 + schema: *295 examples: - default: *578 + default: *579 '404': description: Not Found if project is not managed by this team x-github: @@ -83566,7 +83585,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - *7 - - *281 + - *296 requestBody: required: false content: @@ -83635,7 +83654,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - *7 - - *281 + - *296 responses: '204': description: Response @@ -83705,14 +83724,14 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - *7 - - *282 - - *283 + - *297 + - *298 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *579 + schema: *580 examples: alternative-response-with-extra-repository-information: value: @@ -83864,8 +83883,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - *7 - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -83916,8 +83935,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - *7 - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -83952,9 +83971,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - response-if-child-teams-exist: *580 + response-if-child-teams-exist: *581 headers: Link: *6 '404': *26 @@ -83987,7 +84006,7 @@ paths: application/json: schema: oneOf: - - &582 + - &583 title: Private User description: Private User type: object @@ -84190,7 +84209,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *581 + - *582 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -84341,7 +84360,7 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: default: value: @@ -84419,7 +84438,7 @@ paths: type: array items: *214 examples: - default: &592 + default: &593 value: - id: 197 name: hello_docker @@ -84506,7 +84525,7 @@ paths: application/json: schema: type: array - items: &583 + items: &584 title: Email description: Email type: object @@ -84531,7 +84550,7 @@ paths: - verified - visibility examples: - default: &594 + default: &595 value: - email: octocat@github.com verified: true @@ -84606,7 +84625,7 @@ paths: application/json: schema: type: array - items: *583 + items: *584 examples: default: value: @@ -84862,7 +84881,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: GPG Key description: A unique encryption key type: object @@ -84993,7 +85012,7 @@ paths: - subkeys - revoked examples: - default: &604 + default: &605 value: - id: 3 name: Octocat's GPG Key @@ -85078,9 +85097,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &585 + default: &586 value: id: 3 name: Octocat's GPG Key @@ -85137,7 +85156,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &586 + - &587 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -85149,9 +85168,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *585 + default: *586 '404': *26 '304': *42 '403': *43 @@ -85174,7 +85193,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *586 + - *587 responses: '204': description: Response @@ -85365,7 +85384,7 @@ paths: type: array items: *84 examples: - default: *587 + default: *588 headers: Link: *6 '404': *26 @@ -85541,7 +85560,7 @@ paths: application/json: schema: type: array - items: &588 + items: &589 title: Key description: Key type: object @@ -85638,9 +85657,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: - default: &589 + default: &590 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -85673,15 +85692,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *462 + - *477 responses: '200': description: Response content: application/json: - schema: *588 + schema: *589 examples: - default: *589 + default: *590 '404': *26 '304': *42 '403': *43 @@ -85704,7 +85723,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *462 + - *477 responses: '204': description: Response @@ -86524,7 +86543,7 @@ paths: type: array items: *70 examples: - default: *590 + default: *591 headers: Link: *6 '304': *42 @@ -86566,7 +86585,7 @@ paths: - docker - nuget - container - - *591 + - *592 - *5 - *4 responses: @@ -86578,8 +86597,8 @@ paths: type: array items: *214 examples: - default: *592 - '400': *593 + default: *593 + '400': *594 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86608,7 +86627,7 @@ paths: application/json: schema: *214 examples: - default: &605 + default: &606 value: id: 40201 name: octo-name @@ -87058,9 +87077,9 @@ paths: application/json: schema: type: array - items: *583 + items: *584 examples: - default: *594 + default: *595 headers: Link: *6 '304': *42 @@ -87173,7 +87192,7 @@ paths: type: array items: *84 examples: - default: &601 + default: &602 summary: Default response value: - id: 1296269 @@ -87477,9 +87496,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *308 examples: - default: *295 + default: *310 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -87517,9 +87536,9 @@ paths: application/json: schema: type: array - items: *435 + items: *450 examples: - default: *595 + default: *596 headers: Link: *6 '304': *42 @@ -87542,7 +87561,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *436 + - *451 responses: '204': description: Response @@ -87565,7 +87584,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *436 + - *451 responses: '204': description: Response @@ -87598,7 +87617,7 @@ paths: application/json: schema: type: array - items: &596 + items: &597 title: Social account description: Social media account type: object @@ -87613,7 +87632,7 @@ paths: - provider - url examples: - default: &597 + default: &598 value: - provider: twitter url: https://twitter.com/github @@ -87675,9 +87694,9 @@ paths: application/json: schema: type: array - items: *596 + items: *597 examples: - default: *597 + default: *598 '422': *35 '304': *42 '404': *26 @@ -87764,7 +87783,7 @@ paths: application/json: schema: type: array - items: &598 + items: &599 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -87784,7 +87803,7 @@ paths: - title - created_at examples: - default: &606 + default: &607 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -87850,9 +87869,9 @@ paths: description: Response content: application/json: - schema: *598 + schema: *599 examples: - default: &599 + default: &600 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -87883,7 +87902,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &600 + - &601 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -87895,9 +87914,9 @@ paths: description: Response content: application/json: - schema: *598 + schema: *599 examples: - default: *599 + default: *600 '404': *26 '304': *42 '403': *43 @@ -87920,7 +87939,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *600 + - *601 responses: '204': description: Response @@ -87949,7 +87968,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &607 + - &608 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 @@ -87974,11 +87993,11 @@ paths: type: array items: *84 examples: - default-response: *601 + default-response: *602 application/vnd.github.v3.star+json: schema: type: array - items: &608 + items: &609 title: Starred Repository description: Starred Repository type: object @@ -88134,8 +88153,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response if this repository is starred by you @@ -88163,8 +88182,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -88188,8 +88207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -88261,7 +88280,7 @@ paths: application/json: schema: type: array - items: *263 + items: *278 examples: default: value: @@ -88348,10 +88367,10 @@ paths: application/json: schema: oneOf: + - *583 - *582 - - *581 examples: - default-response: &602 + default-response: &603 summary: Default response value: login: octocat @@ -88386,7 +88405,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 @@ -88498,11 +88517,11 @@ paths: application/json: schema: oneOf: + - *583 - *582 - - *581 examples: - default-response: *602 - response-with-git-hub-plan-information: *603 + default-response: *603 + response-with-git-hub-plan-information: *604 '404': *26 x-github: githubCloudOnly: false @@ -88533,7 +88552,7 @@ paths: type: array items: *214 examples: - default: *592 + default: *593 '403': *43 '401': *41 x-github: @@ -88937,9 +88956,9 @@ paths: application/json: schema: type: array - items: *584 + items: *585 examples: - default: *604 + default: *605 headers: Link: *6 x-github: @@ -89043,7 +89062,7 @@ paths: application/json: schema: *39 examples: - default: *434 + default: *449 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89124,7 +89143,7 @@ paths: type: array items: *70 examples: - default: *590 + default: *591 headers: Link: *6 x-github: @@ -89163,7 +89182,7 @@ paths: - docker - nuget - container - - *591 + - *592 - *8 - *5 - *4 @@ -89176,10 +89195,10 @@ paths: type: array items: *214 examples: - default: *592 + default: *593 '403': *43 '401': *41 - '400': *593 + '400': *594 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89209,7 +89228,7 @@ paths: application/json: schema: *214 examples: - default: *605 + default: *606 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89842,9 +89861,9 @@ paths: application/json: schema: type: array - items: *596 + items: *597 examples: - default: *597 + default: *598 headers: Link: *6 x-github: @@ -89874,9 +89893,9 @@ paths: application/json: schema: type: array - items: *598 + items: *599 examples: - default: *606 + default: *607 headers: Link: *6 x-github: @@ -89901,7 +89920,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *8 - - *607 + - *608 - *9 - *4 - *5 @@ -89913,11 +89932,11 @@ paths: schema: anyOf: - type: array - items: *608 + items: *609 - type: array items: *84 examples: - default-response: *601 + default-response: *602 headers: Link: *6 x-github: @@ -90127,7 +90146,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &609 + enterprise: &610 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -90185,7 +90204,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &610 + installation: &611 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -90204,7 +90223,7 @@ x-webhooks: required: - id - node_id - organization: &611 + organization: &612 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -90264,13 +90283,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &612 + repository: &613 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: &638 + properties: &639 id: description: Unique identifier of the repository example: 42 @@ -90953,7 +90972,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &639 + required: &640 - archive_url - assignees_url - blobs_url @@ -91104,10 +91123,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -91193,11 +91212,11 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - rule: &613 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + rule: &614 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-server@3.13/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -91414,11 +91433,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - rule: *613 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + rule: *614 sender: *19 required: - action @@ -91592,11 +91611,11 @@ x-webhooks: - everyone required: - from - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - rule: *613 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + rule: *614 sender: *19 required: - action @@ -91681,12 +91700,12 @@ x-webhooks: type: string cache_location: type: string - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 ref: type: string - repository: *612 + repository: *613 sender: *19 required: - cache_location @@ -91780,7 +91799,7 @@ x-webhooks: type: string enum: - completed - check_run: &615 + check_run: &616 title: CheckRun description: A check performed on the code of a given code change type: object @@ -91833,7 +91852,7 @@ x-webhooks: type: string pull_requests: type: array - items: *351 + items: *366 repository: *153 status: example: completed @@ -91871,7 +91890,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *614 + deployment: *615 details_url: example: https://example.com type: string @@ -91921,7 +91940,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *351 + items: *366 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -91956,9 +91975,9 @@ x-webhooks: - output - app - pull_requests - installation: *610 - organization: *611 - repository: *612 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - check_run @@ -92361,10 +92380,10 @@ x-webhooks: type: string enum: - created - check_run: *615 - installation: *610 - organization: *611 - repository: *612 + check_run: *616 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - check_run @@ -92770,10 +92789,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *615 - installation: *610 - organization: *611 - repository: *612 + check_run: *616 + installation: *611 + organization: *612 + repository: *613 requested_action: description: The action requested by the user. type: object @@ -93188,10 +93207,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *615 - installation: *610 - organization: *611 - repository: *612 + check_run: *616 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - check_run @@ -94178,10 +94197,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -94861,10 +94880,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -95538,10 +95557,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -95714,7 +95733,7 @@ x-webhooks: required: - login - id - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -95859,20 +95878,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &616 + commit_oid: &617 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: *609 - installation: *610 - organization: *611 - ref: &617 + enterprise: *610 + installation: *611 + organization: *612 + ref: &618 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: *612 + repository: *613 sender: *19 required: - action @@ -96044,7 +96063,7 @@ x-webhooks: required: - login - id - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -96274,12 +96293,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *616 - enterprise: *609 - installation: *610 - organization: *611 - ref: *617 - repository: *612 + commit_oid: *617 + enterprise: *610 + installation: *611 + organization: *612 + ref: *618 + repository: *613 sender: *19 required: - action @@ -96384,7 +96403,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -96552,12 +96571,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *616 - enterprise: *609 - installation: *610 - organization: *611 - ref: *617 - repository: *612 + commit_oid: *617 + enterprise: *610 + installation: *611 + organization: *612 + ref: *618 + repository: *613 sender: *19 required: - action @@ -96730,7 +96749,7 @@ x-webhooks: required: - login - id - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -96896,12 +96915,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *616 - enterprise: *609 - installation: *610 - organization: *611 - ref: *617 - repository: *612 + commit_oid: *617 + enterprise: *610 + installation: *611 + organization: *612 + ref: *618 + repository: *613 sender: *19 required: - action @@ -97008,7 +97027,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -97176,16 +97195,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 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: *612 + repository: *613 sender: *19 required: - action @@ -97289,7 +97308,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -97429,12 +97448,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *616 - enterprise: *609 - installation: *610 - organization: *611 - ref: *617 - repository: *612 + commit_oid: *617 + enterprise: *610 + installation: *611 + organization: *612 + ref: *618 + repository: *613 sender: *19 required: - action @@ -97701,10 +97720,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -97794,18 +97813,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *611 - pusher_type: &618 + organization: *612 + pusher_type: &619 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &619 + ref: &620 description: The [`git ref`](https://docs.github.com/enterprise-server@3.13/rest/git/refs#get-a-reference) resource. type: string @@ -97815,7 +97834,7 @@ x-webhooks: enum: - tag - branch - repository: *612 + repository: *613 sender: *19 required: - ref @@ -97904,18 +97923,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *609 - installation: *610 - organization: *611 - pusher_type: *618 - ref: *619 + enterprise: *610 + installation: *611 + organization: *612 + pusher_type: *619 + ref: *620 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *612 + repository: *613 sender: *19 required: - ref @@ -98009,11 +98028,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98107,11 +98126,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98205,11 +98224,11 @@ x-webhooks: type: string enum: - created - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98301,11 +98320,11 @@ x-webhooks: type: string enum: - dismissed - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98397,11 +98416,11 @@ x-webhooks: type: string enum: - fixed - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98494,11 +98513,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98590,11 +98609,11 @@ x-webhooks: type: string enum: - reopened - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98681,9 +98700,9 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - key: &620 + enterprise: *610 + installation: *611 + key: &621 description: The [`deploy key`](https://docs.github.com/enterprise-server@3.13/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -98717,8 +98736,8 @@ x-webhooks: - verified - created_at - read_only - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -98805,11 +98824,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - key: *620 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + key: *621 + organization: *612 + repository: *613 sender: *19 required: - action @@ -99380,12 +99399,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - workflow: &624 + workflow: &625 title: Workflow type: object nullable: true @@ -100121,13 +100140,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *403 + deployment: *418 pull_requests: type: array - items: *485 - repository: *612 - organization: *611 - installation: *610 + items: *500 + repository: *613 + organization: *612 + installation: *611 sender: *19 responses: '200': @@ -100208,7 +100227,7 @@ x-webhooks: type: string enum: - approved - approver: &621 + approver: &622 type: object properties: avatar_url: @@ -100251,11 +100270,11 @@ x-webhooks: type: string comment: type: string - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - reviewers: &622 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + reviewers: &623 type: array items: type: object @@ -100334,7 +100353,7 @@ x-webhooks: sender: *19 since: type: string - workflow_job_run: &623 + workflow_job_run: &624 type: object properties: conclusion: @@ -101075,18 +101094,18 @@ x-webhooks: type: string enum: - rejected - approver: *621 + approver: *622 comment: type: string - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - reviewers: *622 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + reviewers: *623 sender: *19 since: type: string - workflow_job_run: *623 + workflow_job_run: *624 workflow_job_runs: type: array items: @@ -101800,13 +101819,13 @@ x-webhooks: type: string enum: - requested - enterprise: *609 + enterprise: *610 environment: type: string - installation: *610 - organization: *611 - repository: *612 - requestor: &629 + installation: *611 + organization: *612 + repository: *613 + requestor: &630 title: User type: object nullable: true @@ -103715,12 +103734,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - workflow: *624 + workflow: *625 workflow_run: title: Deployment Workflow Run type: object @@ -104410,7 +104429,7 @@ x-webhooks: type: string enum: - answered - answer: &627 + answer: &628 type: object properties: author_association: @@ -104567,7 +104586,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &625 + discussion: &626 title: Discussion description: A Discussion in a repository. type: object @@ -104853,7 +104872,7 @@ x-webhooks: - id labels: type: array - items: *445 + items: *460 required: - repository_url - category @@ -104875,10 +104894,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105015,11 +105034,11 @@ x-webhooks: - from required: - category - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105112,11 +105131,11 @@ x-webhooks: type: string enum: - closed - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105208,7 +105227,7 @@ x-webhooks: type: string enum: - created - comment: &626 + comment: &627 type: object properties: author_association: @@ -105365,11 +105384,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105462,12 +105481,12 @@ x-webhooks: type: string enum: - deleted - comment: *626 - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + comment: *627 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105572,12 +105591,12 @@ x-webhooks: - from required: - body - comment: *626 - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + comment: *627 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105671,11 +105690,11 @@ x-webhooks: type: string enum: - created - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105767,11 +105786,11 @@ x-webhooks: type: string enum: - deleted - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105881,11 +105900,11 @@ x-webhooks: type: string required: - from - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105977,10 +105996,10 @@ x-webhooks: type: string enum: - labeled - discussion: *625 - enterprise: *609 - installation: *610 - label: &628 + discussion: *626 + enterprise: *610 + installation: *611 + label: &629 title: Label type: object properties: @@ -106012,8 +106031,8 @@ x-webhooks: - color - default - description - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106106,11 +106125,11 @@ x-webhooks: type: string enum: - locked - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106202,11 +106221,11 @@ x-webhooks: type: string enum: - pinned - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106298,11 +106317,11 @@ x-webhooks: type: string enum: - reopened - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106397,16 +106416,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *625 - new_repository: *612 + new_discussion: *626 + new_repository: *613 required: - new_discussion - new_repository - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106499,10 +106518,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *625 - old_answer: *627 - organization: *611 - repository: *612 + discussion: *626 + old_answer: *628 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106594,12 +106613,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *625 - enterprise: *609 - installation: *610 - label: *628 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106692,11 +106711,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106788,11 +106807,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -107033,7 +107052,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *609 + enterprise: *610 forkee: description: The created [`repository`](https://docs.github.com/enterprise-server@3.13/rest/repos/repos#get-a-repository) resource. @@ -107693,9 +107712,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *610 - organization: *611 - repository: *612 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - forkee @@ -107861,9 +107880,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pages: description: The pages that were updated. type: array @@ -107900,7 +107919,7 @@ x-webhooks: - action - sha - html_url - repository: *612 + repository: *613 sender: *19 required: - pages @@ -107986,10 +108005,10 @@ x-webhooks: type: string enum: - created - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories: &630 + organization: *612 + repositories: &631 description: An array of repository objects that the installation can access. type: array @@ -108015,8 +108034,8 @@ x-webhooks: - name - full_name - private - repository: *612 - requester: *629 + repository: *613 + requester: *630 sender: *19 required: - action @@ -108101,11 +108120,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories: *630 - repository: *612 + organization: *612 + repositories: *631 + repository: *613 requester: nullable: true sender: *19 @@ -108191,11 +108210,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories: *630 - repository: *612 + organization: *612 + repositories: *631 + repository: *613 requester: nullable: true sender: *19 @@ -108281,10 +108300,10 @@ x-webhooks: type: string enum: - added - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories_added: &631 + organization: *612 + repositories_added: &632 description: An array of repository objects, which were added to the installation. type: array @@ -108330,15 +108349,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *612 - repository_selection: &632 + repository: *613 + repository_selection: &633 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *629 + requester: *630 sender: *19 required: - action @@ -108427,10 +108446,10 @@ x-webhooks: type: string enum: - removed - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories_added: *631 + organization: *612 + repositories_added: *632 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -108457,9 +108476,9 @@ x-webhooks: - name - full_name - private - repository: *612 - repository_selection: *632 - requester: *629 + repository: *613 + repository_selection: *633 + requester: *630 sender: *19 required: - action @@ -108548,11 +108567,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories: *630 - repository: *612 + organization: *612 + repositories: *631 + repository: *613 requester: nullable: true sender: *19 @@ -108741,10 +108760,10 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 target_type: type: string @@ -108833,11 +108852,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories: *630 - repository: *612 + organization: *612 + repositories: *631 + repository: *613 requester: nullable: true sender: *19 @@ -109099,8 +109118,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) the comment belongs to. @@ -109923,7 +109942,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -110256,8 +110275,8 @@ x-webhooks: - state - locked - assignee - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -110347,7 +110366,7 @@ x-webhooks: type: string enum: - deleted - comment: &633 + comment: &634 title: issue comment description: The [comment](https://docs.github.com/enterprise-server@3.13/rest/issues/comments#get-an-issue-comment) itself. @@ -110512,8 +110531,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) the comment belongs to. @@ -111332,7 +111351,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -111667,8 +111686,8 @@ x-webhooks: - state - locked - assignee - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -111758,7 +111777,7 @@ x-webhooks: type: string enum: - edited - changes: &654 + changes: &655 description: The changes to the comment. type: object properties: @@ -111770,9 +111789,9 @@ x-webhooks: type: string required: - from - comment: *633 - enterprise: *609 - installation: *610 + comment: *634 + enterprise: *610 + installation: *611 issue: description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) the comment belongs to. @@ -112594,7 +112613,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -112927,8 +112946,8 @@ x-webhooks: - state - locked - assignee - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -113020,10 +113039,10 @@ x-webhooks: type: string enum: - assigned - assignee: *629 - enterprise: *609 - installation: *610 - issue: &636 + assignee: *630 + enterprise: *610 + installation: *611 + issue: &637 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) itself. @@ -113841,7 +113860,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -113942,8 +113961,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -114033,8 +114052,8 @@ x-webhooks: type: string enum: - closed - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) itself. @@ -114857,7 +114876,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -115093,8 +115112,8 @@ x-webhooks: required: - state - closed_at - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -115183,8 +115202,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -115998,7 +116017,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -116098,8 +116117,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -116188,8 +116207,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -117025,7 +117044,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -117104,7 +117123,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &634 + milestone: &635 title: Milestone description: A collection of related issues and pull requests. type: object @@ -117242,8 +117261,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -117352,8 +117371,8 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -118168,7 +118187,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *566 + type: *567 title: description: Title of the issue type: string @@ -118272,9 +118291,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *628 - organization: *611 - repository: *612 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -118364,8 +118383,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -119179,7 +119198,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *566 + type: *567 title: description: Title of the issue type: string @@ -119283,9 +119302,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *628 - organization: *611 - repository: *612 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -119375,8 +119394,8 @@ x-webhooks: type: string enum: - locked - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -120214,7 +120233,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *566 + type: *567 title: description: Title of the issue type: string @@ -120295,8 +120314,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -120385,8 +120404,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -121221,7 +121240,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -121299,9 +121318,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *634 - organization: *611 - repository: *612 + milestone: *635 + organization: *612 + repository: *613 sender: *19 required: - action @@ -122285,7 +122304,7 @@ x-webhooks: required: - login - id - type: *566 + type: *567 required: - id - number @@ -122754,8 +122773,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -123573,7 +123592,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -123673,8 +123692,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -123764,9 +123783,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *609 - installation: *610 - issue: &635 + enterprise: *610 + installation: *611 + issue: &636 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) itself. @@ -124578,7 +124597,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -124678,8 +124697,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -124768,8 +124787,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -125686,9 +125705,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *566 - organization: *611 - repository: *612 + type: *567 + organization: *612 + repository: *613 sender: *19 required: - action @@ -126593,7 +126612,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -127161,11 +127180,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *609 - installation: *610 - issue: *635 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + issue: *636 + organization: *612 + repository: *613 sender: *19 required: - action @@ -127256,7 +127275,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &657 + assignee: &658 title: User type: object nullable: true @@ -127326,11 +127345,11 @@ x-webhooks: required: - login - id - enterprise: *609 - installation: *610 - issue: *636 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + issue: *637 + organization: *612 + repository: *613 sender: *19 required: - action @@ -127419,12 +127438,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *609 - installation: *610 - issue: *636 - label: *628 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + issue: *637 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -127514,8 +127533,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -128354,7 +128373,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -128432,8 +128451,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -128523,11 +128542,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *609 - installation: *610 - issue: *635 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + issue: *636 + organization: *612 + repository: *613 sender: *19 required: - action @@ -128616,11 +128635,11 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - label: *628 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -128708,11 +128727,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - label: *628 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -128832,11 +128851,11 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - label: *628 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -128937,11 +128956,11 @@ x-webhooks: - read required: - to - enterprise: *609 - installation: *610 - member: *629 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + member: *630 + organization: *612 + repository: *613 sender: *19 required: - action @@ -129051,11 +129070,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *609 - installation: *610 - member: *629 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + member: *630 + organization: *612 + repository: *613 sender: *19 required: - action @@ -129144,11 +129163,11 @@ x-webhooks: type: string enum: - removed - enterprise: *609 - installation: *610 - member: *629 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + member: *630 + organization: *612 + repository: *613 sender: *19 required: - action @@ -129236,11 +129255,11 @@ x-webhooks: type: string enum: - added - enterprise: *609 - installation: *610 - member: *629 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + member: *630 + organization: *612 + repository: *613 scope: description: The scope of the membership. Currently, can only be `team`. @@ -129316,7 +129335,7 @@ x-webhooks: required: - login - id - team: &637 + team: &638 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -129516,11 +129535,11 @@ x-webhooks: type: string enum: - removed - enterprise: *609 - installation: *610 - member: *629 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + member: *630 + organization: *612 + repository: *613 scope: description: The scope of the membership. Currently, can only be `team`. @@ -129597,7 +129616,7 @@ x-webhooks: required: - login - id - team: *637 + team: *638 required: - action - scope @@ -129685,7 +129704,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 + enterprise: *610 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -129794,16 +129813,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *610 - organization: *611 + installation: *611 + organization: *612 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: *638 - required: *639 + properties: *639 + required: *640 nullable: true sender: *19 required: @@ -129894,11 +129913,11 @@ x-webhooks: type: string enum: - closed - enterprise: *609 - installation: *610 - milestone: *634 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + milestone: *635 + organization: *612 + repository: *613 sender: *19 required: - action @@ -129987,9 +130006,9 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - milestone: &640 + enterprise: *610 + installation: *611 + milestone: &641 title: Milestone description: A collection of related issues and pull requests. type: object @@ -130126,8 +130145,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130216,11 +130235,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - milestone: *634 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + milestone: *635 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130340,11 +130359,11 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - milestone: *634 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + milestone: *635 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130434,11 +130453,11 @@ x-webhooks: type: string enum: - opened - enterprise: *609 - installation: *610 - milestone: *640 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + milestone: *641 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130527,9 +130546,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - membership: &641 + enterprise: *610 + installation: *611 + membership: &642 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -130636,8 +130655,8 @@ x-webhooks: - role - organization_url - user - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130725,11 +130744,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *609 - installation: *610 - membership: *641 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + membership: *642 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130818,8 +130837,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -130935,10 +130954,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 - user: *629 + user: *630 required: - action - invitation @@ -131026,11 +131045,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *609 - installation: *610 - membership: *641 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + membership: *642 + organization: *612 + repository: *613 sender: *19 required: - action @@ -131127,11 +131146,11 @@ x-webhooks: properties: from: type: string - enterprise: *609 - installation: *610 - membership: *641 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + membership: *642 + organization: *612 + repository: *613 sender: *19 required: - action @@ -131217,9 +131236,9 @@ x-webhooks: type: string enum: - published - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 package: description: Information about the package. type: object @@ -131718,7 +131737,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &642 + items: &643 title: Ruby Gems metadata type: object properties: @@ -131813,7 +131832,7 @@ x-webhooks: - owner - package_version - registry - repository: *612 + repository: *613 sender: *19 required: - action @@ -131899,9 +131918,9 @@ x-webhooks: type: string enum: - updated - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 package: description: Information about the package. type: object @@ -132254,7 +132273,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *642 + items: *643 source_url: type: string format: uri @@ -132324,7 +132343,7 @@ x-webhooks: - owner - package_version - registry - repository: *612 + repository: *613 sender: *19 required: - action @@ -132511,12 +132530,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *609 + enterprise: *610 id: type: integer - installation: *610 - organization: *611 - repository: *612 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - id @@ -132593,7 +132612,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &643 + personal_access_token_request: &644 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -132739,10 +132758,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *609 - organization: *611 + enterprise: *610 + organization: *612 sender: *19 - installation: *610 + installation: *611 required: - action - personal_access_token_request @@ -132819,11 +132838,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *643 - enterprise: *609 - organization: *611 + personal_access_token_request: *644 + enterprise: *610 + organization: *612 sender: *19 - installation: *610 + installation: *611 required: - action - personal_access_token_request @@ -132899,11 +132918,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *643 - enterprise: *609 - organization: *611 + personal_access_token_request: *644 + enterprise: *610 + organization: *612 sender: *19 - installation: *610 + installation: *611 required: - action - personal_access_token_request @@ -132978,11 +132997,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *643 - organization: *611 - enterprise: *609 + personal_access_token_request: *644 + organization: *612 + enterprise: *610 sender: *19 - installation: *610 + installation: *611 required: - action - personal_access_token_request @@ -133097,7 +133116,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *644 + last_response: *645 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -133129,8 +133148,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 zen: description: Random string of GitHub zen. @@ -133385,10 +133404,10 @@ x-webhooks: - from required: - note - enterprise: *609 - installation: *610 - organization: *611 - project_card: &645 + enterprise: *610 + installation: *611 + organization: *612 + project_card: &646 title: Project Card type: object properties: @@ -133507,7 +133526,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *612 + repository: *613 sender: *19 required: - action @@ -133598,11 +133617,11 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - project_card: *645 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project_card: *646 + repository: *613 sender: *19 required: - action @@ -133692,9 +133711,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 project_card: title: Project Card type: object @@ -133822,8 +133841,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: *638 - required: *639 + properties: *639 + required: *640 nullable: true sender: *19 required: @@ -133927,11 +133946,11 @@ x-webhooks: - from required: - note - enterprise: *609 - installation: *610 - organization: *611 - project_card: *645 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project_card: *646 + repository: *613 sender: *19 required: - action @@ -134035,9 +134054,9 @@ x-webhooks: - from required: - column_id - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 project_card: allOf: - title: Project Card @@ -134227,7 +134246,7 @@ x-webhooks: type: string required: - after_id - repository: *612 + repository: *613 sender: *19 required: - action @@ -134317,10 +134336,10 @@ x-webhooks: type: string enum: - closed - enterprise: *609 - installation: *610 - organization: *611 - project: &647 + enterprise: *610 + installation: *611 + organization: *612 + project: &648 title: Project type: object properties: @@ -134444,7 +134463,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *612 + repository: *613 sender: *19 required: - action @@ -134534,10 +134553,10 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - project_column: &646 + enterprise: *610 + installation: *611 + organization: *612 + project_column: &647 title: Project Column type: object properties: @@ -134576,7 +134595,7 @@ x-webhooks: - name - created_at - updated_at - repository: *612 + repository: *613 sender: *19 required: - action @@ -134665,18 +134684,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - project_column: *646 + enterprise: *610 + installation: *611 + organization: *612 + project_column: *647 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: *638 - required: *639 + properties: *639 + required: *640 nullable: true sender: *19 required: @@ -134776,11 +134795,11 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - organization: *611 - project_column: *646 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project_column: *647 + repository: *613 sender: *19 required: - action @@ -134870,11 +134889,11 @@ x-webhooks: type: string enum: - moved - enterprise: *609 - installation: *610 - organization: *611 - project_column: *646 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project_column: *647 + repository: *613 sender: *19 required: - action @@ -134964,11 +134983,11 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - project: *647 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project: *648 + repository: *613 sender: *19 required: - action @@ -135058,18 +135077,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - project: *647 + enterprise: *610 + installation: *611 + organization: *612 + project: *648 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: *638 - required: *639 + properties: *639 + required: *640 nullable: true sender: *19 required: @@ -135181,11 +135200,11 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - organization: *611 - project: *647 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project: *648 + repository: *613 sender: *19 required: - action @@ -135274,11 +135293,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *609 - installation: *610 - organization: *611 - project: *647 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project: *648 + repository: *613 sender: *19 required: - action @@ -135369,9 +135388,9 @@ x-webhooks: type: string enum: - closed - installation: *610 - organization: *611 - projects_v2: &648 + installation: *611 + organization: *612 + projects_v2: &649 title: Projects v2 Project description: A projects v2 project type: object @@ -135524,9 +135543,9 @@ x-webhooks: type: string enum: - created - installation: *610 - organization: *611 - projects_v2: *648 + installation: *611 + organization: *612 + projects_v2: *649 sender: *19 required: - action @@ -135617,9 +135636,9 @@ x-webhooks: type: string enum: - deleted - installation: *610 - organization: *611 - projects_v2: *648 + installation: *611 + organization: *612 + projects_v2: *649 sender: *19 required: - action @@ -135746,9 +135765,9 @@ x-webhooks: type: string to: type: string - installation: *610 - organization: *611 - projects_v2: *648 + installation: *611 + organization: *612 + projects_v2: *649 sender: *19 required: - action @@ -135841,7 +135860,7 @@ x-webhooks: type: string enum: - archived - changes: &650 + changes: &651 type: object properties: archived_at: @@ -135855,9 +135874,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *610 - organization: *611 - projects_v2_item: &649 + installation: *611 + organization: *612 + projects_v2_item: &650 title: Projects v2 Item description: An item belonging to a project type: object @@ -136001,9 +136020,9 @@ x-webhooks: nullable: true to: type: string - installation: *610 - organization: *611 - projects_v2_item: *649 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136095,9 +136114,9 @@ x-webhooks: type: string enum: - created - installation: *610 - organization: *611 - projects_v2_item: *649 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136188,9 +136207,9 @@ x-webhooks: type: string enum: - deleted - installation: *610 - organization: *611 - projects_v2_item: *649 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136312,9 +136331,9 @@ x-webhooks: nullable: true required: - body - installation: *610 - organization: *611 - projects_v2_item: *649 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136419,9 +136438,9 @@ x-webhooks: to: type: string nullable: true - installation: *610 - organization: *611 - projects_v2_item: *649 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136514,10 +136533,10 @@ x-webhooks: type: string enum: - restored - changes: *650 - installation: *610 - organization: *611 - projects_v2_item: *649 + changes: *651 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136609,9 +136628,9 @@ x-webhooks: type: string enum: - reopened - installation: *610 - organization: *611 - projects_v2: *648 + installation: *611 + organization: *612 + projects_v2: *649 sender: *19 required: - action @@ -136692,10 +136711,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - repository @@ -136782,13 +136801,13 @@ x-webhooks: type: string enum: - assigned - assignee: *629 - enterprise: *609 - installation: *610 - number: &651 + assignee: *630 + enterprise: *610 + installation: *611 + number: &652 description: The pull request number. type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -139071,7 +139090,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -139163,11 +139182,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -141445,7 +141464,7 @@ x-webhooks: - draft reason: type: string - repository: *612 + repository: *613 sender: *19 required: - action @@ -141537,11 +141556,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -143819,7 +143838,7 @@ x-webhooks: - draft reason: type: string - repository: *612 + repository: *613 sender: *19 required: - action @@ -143911,13 +143930,13 @@ x-webhooks: type: string enum: - closed - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: &652 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: &653 allOf: - - *485 + - *500 - type: object properties: allow_auto_merge: @@ -143979,7 +143998,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *612 + repository: *613 sender: *19 required: - action @@ -144070,12 +144089,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: *652 - repository: *612 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: *653 + repository: *613 sender: *19 required: - action @@ -144165,11 +144184,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *609 - milestone: *465 - number: *651 - organization: *611 - pull_request: &653 + enterprise: *610 + milestone: *480 + number: *652 + organization: *612 + pull_request: &654 title: Pull Request type: object properties: @@ -146432,7 +146451,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -146564,12 +146583,12 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: *652 - repository: *612 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: *653 + repository: *613 sender: *19 required: - action @@ -146659,11 +146678,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *609 - installation: *610 - label: *628 - number: *651 - organization: *611 + enterprise: *610 + installation: *611 + label: *629 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -148945,7 +148964,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -149036,10 +149055,10 @@ x-webhooks: type: string enum: - locked - enterprise: *609 - installation: *610 - number: *651 - organization: *611 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -151319,7 +151338,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -151409,12 +151428,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *609 - milestone: *465 - number: *651 - organization: *611 - pull_request: *653 - repository: *612 + enterprise: *610 + milestone: *480 + number: *652 + organization: *612 + pull_request: *654 + repository: *613 sender: *19 required: - action @@ -151503,12 +151522,12 @@ x-webhooks: type: string enum: - opened - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: *652 - repository: *612 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: *653 + repository: *613 sender: *19 required: - action @@ -151599,12 +151618,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: *652 - repository: *612 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: *653 + repository: *613 sender: *19 required: - action @@ -151694,12 +151713,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: *652 - repository: *612 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: *653 + repository: *613 sender: *19 required: - action @@ -152075,9 +152094,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: type: object properties: @@ -154247,7 +154266,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *612 + repository: *613 sender: *19 required: - action @@ -154337,7 +154356,7 @@ x-webhooks: type: string enum: - deleted - comment: &655 + comment: &656 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -154622,9 +154641,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: type: object properties: @@ -156782,7 +156801,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *612 + repository: *613 sender: *19 required: - action @@ -156872,11 +156891,11 @@ x-webhooks: type: string enum: - edited - changes: *654 - comment: *655 - enterprise: *609 - installation: *610 - organization: *611 + changes: *655 + comment: *656 + enterprise: *610 + installation: *611 + organization: *612 pull_request: type: object properties: @@ -159037,7 +159056,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *612 + repository: *613 sender: *19 required: - action @@ -159128,9 +159147,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: title: Simple Pull Request type: object @@ -161303,7 +161322,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *612 + repository: *613 review: description: The review that was affected. type: object @@ -161556,9 +161575,9 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: title: Simple Pull Request type: object @@ -163612,8 +163631,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *612 - review: &656 + repository: *613 + review: &657 description: The review that was affected. type: object properties: @@ -163852,12 +163871,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: description: The pull request number. type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -166140,7 +166159,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 requested_reviewer: title: User type: object @@ -166224,12 +166243,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: description: The pull request number. type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -168519,7 +168538,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 requested_team: title: Team description: Groups of organization members that gives permissions @@ -168721,12 +168740,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: description: The pull request number. type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -171011,7 +171030,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 requested_reviewer: title: User type: object @@ -171096,12 +171115,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: description: The pull request number. type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -173377,7 +173396,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 requested_team: title: Team description: Groups of organization members that gives permissions @@ -173568,9 +173587,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: title: Simple Pull Request type: object @@ -175745,8 +175764,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *612 - review: *656 + repository: *613 + review: *657 sender: *19 required: - action @@ -175836,9 +175855,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: title: Simple Pull Request type: object @@ -177908,7 +177927,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *612 + repository: *613 sender: *19 thread: type: object @@ -178301,9 +178320,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: title: Simple Pull Request type: object @@ -180359,7 +180378,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *612 + repository: *613 sender: *19 thread: type: object @@ -180755,10 +180774,10 @@ x-webhooks: type: string before: type: string - enterprise: *609 - installation: *610 - number: *651 - organization: *611 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -183029,7 +183048,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -183121,11 +183140,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *657 - enterprise: *609 - installation: *610 - number: *651 - organization: *611 + assignee: *658 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -185408,7 +185427,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -185497,11 +185516,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *609 - installation: *610 - label: *628 - number: *651 - organization: *611 + enterprise: *610 + installation: *611 + label: *629 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -187774,7 +187793,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -187865,10 +187884,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *609 - installation: *610 - number: *651 - organization: *611 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -190133,7 +190152,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -190343,7 +190362,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *609 + enterprise: *610 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -190435,8 +190454,8 @@ x-webhooks: - url - author - committer - installation: *610 - organization: *611 + installation: *611 + organization: *612 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -191021,9 +191040,9 @@ x-webhooks: type: string enum: - published - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 registry_package: type: object properties: @@ -191469,7 +191488,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *642 + items: *643 summary: type: string tag_name: @@ -191523,7 +191542,7 @@ x-webhooks: - owner - package_version - registry - repository: *612 + repository: *613 sender: *19 required: - action @@ -191611,9 +191630,9 @@ x-webhooks: type: string enum: - updated - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 registry_package: type: object properties: @@ -191921,7 +191940,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *642 + items: *643 summary: type: string tag_name: @@ -191970,7 +191989,7 @@ x-webhooks: - owner - package_version - registry - repository: *612 + repository: *613 sender: *19 required: - action @@ -192057,10 +192076,10 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - release: &658 + enterprise: *610 + installation: *611 + organization: *612 + release: &659 title: Release description: The [release](https://docs.github.com/enterprise-server@3.13/rest/releases/releases/#get-a-release) object. @@ -192373,7 +192392,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *612 + repository: *613 sender: *19 required: - action @@ -192460,11 +192479,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - release: *658 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + release: *659 + repository: *613 sender: *19 required: - action @@ -192591,11 +192610,11 @@ x-webhooks: type: boolean required: - to - enterprise: *609 - installation: *610 - organization: *611 - release: *658 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + release: *659 + repository: *613 sender: *19 required: - action @@ -192683,9 +192702,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 release: title: Release description: The [release](https://docs.github.com/enterprise-server@3.13/rest/releases/releases/#get-a-release) @@ -193002,7 +193021,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *612 + repository: *613 sender: *19 required: - action @@ -193088,10 +193107,10 @@ x-webhooks: type: string enum: - published - enterprise: *609 - installation: *610 - organization: *611 - release: &659 + enterprise: *610 + installation: *611 + organization: *612 + release: &660 title: Release description: The [release](https://docs.github.com/enterprise-server@3.13/rest/releases/releases/#get-a-release) object. @@ -193405,7 +193424,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *612 + repository: *613 sender: *19 required: - action @@ -193491,11 +193510,11 @@ x-webhooks: type: string enum: - released - enterprise: *609 - installation: *610 - organization: *611 - release: *658 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + release: *659 + repository: *613 sender: *19 required: - action @@ -193581,11 +193600,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *609 - installation: *610 - organization: *611 - release: *659 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + release: *660 + repository: *613 sender: *19 required: - action @@ -193671,10 +193690,10 @@ x-webhooks: type: string enum: - anonymous_access_disabled - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -193759,10 +193778,10 @@ x-webhooks: type: string enum: - anonymous_access_enabled - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -193847,10 +193866,10 @@ x-webhooks: type: string enum: - archived - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -193937,10 +193956,10 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194028,10 +194047,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194125,10 +194144,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194250,10 +194269,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194341,10 +194360,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194431,10 +194450,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194538,10 +194557,10 @@ x-webhooks: - name required: - repository - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194621,11 +194640,11 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - repository_ruleset: *248 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + repository_ruleset: *262 sender: *19 required: - action @@ -194703,11 +194722,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - repository_ruleset: *248 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + repository_ruleset: *262 sender: *19 required: - action @@ -194785,11 +194804,11 @@ x-webhooks: type: string enum: - edited - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - repository_ruleset: *248 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + repository_ruleset: *262 changes: type: object properties: @@ -194850,16 +194869,16 @@ x-webhooks: properties: added: type: array - items: *247 + items: *521 deleted: type: array - items: *247 + items: *521 updated: type: array items: type: object properties: - rule: *247 + rule: *521 changes: type: object properties: @@ -195103,10 +195122,10 @@ x-webhooks: - from required: - owner - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -195194,10 +195213,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -195285,7 +195304,7 @@ x-webhooks: type: string enum: - create - alert: &660 + alert: &661 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -195406,10 +195425,10 @@ x-webhooks: type: string enum: - open - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -195625,10 +195644,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -195716,11 +195735,11 @@ x-webhooks: type: string enum: - reopen - alert: *660 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + alert: *661 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -195929,10 +195948,10 @@ x-webhooks: enum: - fixed - open - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -196020,7 +196039,7 @@ x-webhooks: type: string enum: - created - alert: &661 + alert: &662 type: object properties: number: *93 @@ -196095,10 +196114,10 @@ x-webhooks: description: 'The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' nullable: true - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -196189,11 +196208,11 @@ x-webhooks: type: string enum: - created - alert: *661 - installation: *610 - location: *662 - organization: *611 - repository: *612 + alert: *662 + installation: *611 + location: *663 + organization: *612 + repository: *613 sender: *19 required: - location @@ -196436,11 +196455,11 @@ x-webhooks: type: string enum: - reopened - alert: *661 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + alert: *662 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -196528,11 +196547,11 @@ x-webhooks: type: string enum: - resolved - alert: *661 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + alert: *662 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -196620,11 +196639,11 @@ x-webhooks: type: string enum: - validated - alert: *661 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + alert: *662 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -196710,11 +196729,11 @@ x-webhooks: type: string enum: - published - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - security_advisory: &663 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + security_advisory: &664 description: The details of the security advisory, including summary, description, and severity. type: object @@ -196907,11 +196926,11 @@ x-webhooks: type: string enum: - updated - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - security_advisory: *663 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + security_advisory: *664 sender: *19 required: - action @@ -196994,10 +197013,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -197192,10 +197211,10 @@ x-webhooks: type: object properties: security_and_analysis: *241 - enterprise: *609 - installation: *610 - organization: *611 - repository: *293 + enterprise: *610 + installation: *611 + organization: *612 + repository: *308 sender: *19 required: - changes @@ -197283,12 +197302,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: &664 + sponsorship: &665 type: object properties: created_at: @@ -197599,12 +197618,12 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: *664 + sponsorship: *665 required: - action - sponsorship @@ -197702,12 +197721,12 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: *664 + sponsorship: *665 required: - action - changes @@ -197794,17 +197813,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &665 + effective_date: &666 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: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: *664 + sponsorship: *665 required: - action - sponsorship @@ -197888,7 +197907,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &666 + changes: &667 type: object properties: tier: @@ -197932,13 +197951,13 @@ x-webhooks: - from required: - tier - effective_date: *665 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + effective_date: *666 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: *664 + sponsorship: *665 required: - action - changes @@ -198025,13 +198044,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *666 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + changes: *667 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: *664 + sponsorship: *665 required: - action - changes @@ -198115,10 +198134,10 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -198211,10 +198230,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -198640,15 +198659,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *609 + enterprise: *610 id: description: The unique identifier of the status. type: integer - installation: *610 + installation: *611 name: type: string - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 sha: description: The Commit SHA. @@ -198760,12 +198779,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - team: &667 + team: &668 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -198965,9 +198984,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 repository: title: Repository description: A git repository @@ -199425,7 +199444,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *667 + team: *668 required: - action - team @@ -199511,9 +199530,9 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 repository: title: Repository description: A git repository @@ -199971,7 +199990,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *667 + team: *668 required: - action - team @@ -200058,9 +200077,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 repository: title: Repository description: A git repository @@ -200518,7 +200537,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *667 + team: *668 required: - action - team @@ -200672,9 +200691,9 @@ x-webhooks: - from required: - permissions - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 repository: title: Repository description: A git repository @@ -201132,7 +201151,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *667 + team: *668 required: - action - changes @@ -201220,9 +201239,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 repository: title: Repository description: A git repository @@ -201680,7 +201699,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *667 + team: *668 required: - action - team @@ -201763,12 +201782,12 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - user: *629 + user: *630 required: - action responses: @@ -201846,12 +201865,12 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - user: *629 + user: *630 required: - action responses: @@ -201932,10 +201951,10 @@ x-webhooks: type: string enum: - started - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -202018,16 +202037,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *609 + enterprise: *610 inputs: type: object nullable: true additionalProperties: true - installation: *610 - organization: *611 + installation: *611 + organization: *612 ref: type: string - repository: *612 + repository: *613 sender: *19 workflow: type: string @@ -202119,10 +202138,10 @@ x-webhooks: type: string enum: - completed - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 workflow_job: allOf: @@ -202359,7 +202378,7 @@ x-webhooks: type: string required: - conclusion - deployment: *403 + deployment: *418 required: - action - repository @@ -202448,10 +202467,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 workflow_job: allOf: @@ -202711,7 +202730,7 @@ x-webhooks: required: - status - steps - deployment: *403 + deployment: *418 required: - action - repository @@ -202800,10 +202819,10 @@ x-webhooks: type: string enum: - queued - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 workflow_job: type: object @@ -202938,7 +202957,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *403 + deployment: *418 required: - action - repository @@ -203027,10 +203046,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 workflow_job: type: object @@ -203166,7 +203185,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *403 + deployment: *418 required: - action - repository @@ -203256,12 +203275,12 @@ x-webhooks: type: string enum: - completed - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - workflow: *624 + workflow: *625 workflow_run: title: Workflow Run type: object @@ -204270,12 +204289,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - workflow: *624 + workflow: *625 workflow_run: title: Workflow Run type: object @@ -205269,12 +205288,12 @@ x-webhooks: type: string enum: - requested - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - workflow: *624 + workflow: *625 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghes-3.13/dereferenced/ghes-3.13.deref.yaml b/descriptions/ghes-3.13/dereferenced/ghes-3.13.deref.yaml index 4a671a1bab..7185167bcd 100644 --- a/descriptions/ghes-3.13/dereferenced/ghes-3.13.deref.yaml +++ b/descriptions/ghes-3.13/dereferenced/ghes-3.13.deref.yaml @@ -4442,7 +4442,7 @@ paths: application/json: schema: *24 application/scim+json: - schema: &542 + schema: &543 title: Scim Error description: Scim Error type: object @@ -12319,7 +12319,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &362 + instances_url: &377 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -12354,7 +12354,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &363 + dismissed_reason: &378 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -12363,13 +12363,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &364 + dismissed_comment: &379 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &365 + rule: &380 type: object properties: id: @@ -12408,7 +12408,7 @@ paths: description: A set of tags applicable for the rule. items: type: string - tool: &366 + tool: &381 type: object properties: name: *90 @@ -12418,15 +12418,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *91 - most_recent_instance: &367 + most_recent_instance: &382 type: object properties: - ref: &360 + ref: &375 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &372 + analysis_key: &387 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -12437,7 +12437,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &373 + category: &388 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -13362,7 +13362,7 @@ paths: enum: - development - runtime - security_advisory: &395 + security_advisory: &410 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -13593,7 +13593,7 @@ paths: nullable: true maxLength: 280 fixed_at: *102 - auto_dismissed_at: &396 + auto_dismissed_at: &411 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -13958,7 +13958,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *65 - - &250 + - &265 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -13969,7 +13969,7 @@ paths: enum: - open - resolved - - &251 + - &266 name: secret_type in: query description: A comma-separated list of secret types to return. By default @@ -13978,7 +13978,7 @@ paths: required: false schema: type: string - - &252 + - &267 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -13987,7 +13987,7 @@ paths: required: false schema: type: string - - &253 + - &268 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -14003,7 +14003,7 @@ paths: - *4 - *88 - *89 - - &254 + - &269 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -14019,7 +14019,7 @@ paths: application/json: schema: type: array - items: &255 + items: &270 type: object properties: number: *93 @@ -14038,14 +14038,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &533 + state: &534 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &534 + resolution: &535 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -14111,7 +14111,7 @@ paths: - inactive - unknown examples: - default: &256 + default: &271 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -14372,7 +14372,7 @@ paths: description: Success content: application/json: - schema: &258 + schema: &273 type: object properties: total_advanced_security_committers: @@ -14427,7 +14427,7 @@ paths: required: - repositories examples: - default: &259 + default: &274 value: total_advanced_security_committers: 2 total_count: 2 @@ -14591,7 +14591,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &439 + properties: &454 id: type: integer format: int64 @@ -14703,7 +14703,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &385 + properties: &400 url: type: string format: uri @@ -14773,7 +14773,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &386 + required: &401 - closed_issues - creator - description @@ -14852,7 +14852,7 @@ paths: timeline_url: type: string format: uri - type: &566 + type: &567 title: Issue Type description: The type of issue. type: object @@ -14977,7 +14977,7 @@ paths: - total - completed - percent_completed - required: &440 + required: &455 - assignee - closed_at - comments @@ -14999,7 +14999,7 @@ paths: - author_association - created_at - updated_at - comment: &437 + comment: &452 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15561,7 +15561,7 @@ paths: url: type: string format: uri - user: &581 + user: &582 title: Public User description: Public User type: object @@ -20182,14 +20182,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &282 + - &297 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &283 + - &298 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20260,7 +20260,7 @@ paths: '404': *26 '403': *43 '304': *42 - '301': &294 + '301': &309 description: Moved permanently content: application/json: @@ -20282,7 +20282,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &468 + - &483 name: all description: If `true`, show notifications marked as read. in: query @@ -20290,7 +20290,7 @@ paths: schema: type: boolean default: false - - &469 + - &484 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20300,7 +20300,7 @@ paths: type: boolean default: false - *111 - - &470 + - &485 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -20744,7 +20744,7 @@ paths: - url - subscription_url examples: - default: &471 + default: &486 value: - id: '1' repository: @@ -21290,7 +21290,7 @@ paths: type: array items: *70 examples: - default: &590 + default: &591 value: - login: github id: 1 @@ -22142,7 +22142,7 @@ paths: type: integer repository_cache_usages: type: array - items: &299 + items: &314 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -22393,7 +22393,7 @@ paths: type: array items: *84 examples: - default: &587 + default: &588 value: total_count: 1 repositories: @@ -24194,7 +24194,7 @@ paths: description: Response content: application/json: - schema: &321 + schema: &336 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -24223,7 +24223,7 @@ paths: - key_id - key examples: - default: &322 + default: &337 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24636,7 +24636,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#list-organization-variables parameters: - *135 - - &306 + - &321 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.13/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -25285,7 +25285,7 @@ paths: be returned. in: query required: false - schema: &361 + schema: &376 type: string description: Severity of a code scanning alert. enum: @@ -25782,7 +25782,7 @@ paths: description: Response content: application/json: - schema: &399 + schema: &414 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -25799,7 +25799,7 @@ paths: - key_id - key examples: - default: &400 + default: &415 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26380,7 +26380,7 @@ paths: description: Response content: application/json: - schema: &277 + schema: &292 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -26461,7 +26461,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &278 + default: &293 value: group_id: '123' group_name: Octocat admins @@ -26516,7 +26516,7 @@ paths: description: Response content: application/json: - schema: &275 + schema: &290 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -26553,7 +26553,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &276 + default: &291 value: groups: - group_id: '123' @@ -27189,7 +27189,7 @@ paths: application/json: schema: *39 examples: - default: &434 + default: &449 value: id: 1 account: @@ -28908,7 +28908,7 @@ paths: - nuget - container - *135 - - &591 + - &592 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -28949,7 +28949,7 @@ paths: default: *215 '403': *43 '401': *41 - '400': &593 + '400': &594 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -31402,7 +31402,7 @@ paths: description: Response content: application/json: - schema: &293 + schema: &308 title: Full Repository description: Full Repository type: object @@ -31900,7 +31900,7 @@ paths: - network_count - subscribers_count examples: - default: &295 + default: &310 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -32490,7 +32490,7 @@ paths: application/json: schema: type: array - items: &248 + items: &262 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -32744,12 +32744,12 @@ paths: - repository_property rules: type: array - items: &247 + items: &521 title: Repository Rule type: object description: A repository rule. oneOf: - - &504 + - &247 title: creation description: Only allow users with bypass permission to create matching refs. @@ -32761,7 +32761,7 @@ paths: type: string enum: - creation - - &505 + - &248 title: update description: Only allow users with bypass permission to update matching refs. @@ -32782,7 +32782,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &507 + - &249 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -32794,7 +32794,7 @@ paths: type: string enum: - deletion - - &508 + - &250 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -32806,7 +32806,7 @@ paths: type: string enum: - required_linear_history - - &509 + - &251 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -32830,7 +32830,7 @@ paths: type: string required: - required_deployment_environments - - &510 + - &252 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -32842,7 +32842,7 @@ paths: type: string enum: - required_signatures - - &511 + - &253 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -32893,7 +32893,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &512 + - &254 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -32941,7 +32941,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &513 + - &255 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -32953,7 +32953,7 @@ paths: type: string enum: - non_fast_forward - - &514 + - &256 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -32989,7 +32989,7 @@ paths: required: - operator - pattern - - &515 + - &257 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -33025,7 +33025,7 @@ paths: required: - operator - pattern - - &516 + - &258 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -33061,7 +33061,7 @@ paths: required: - operator - pattern - - &517 + - &259 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -33097,7 +33097,7 @@ paths: required: - operator - pattern - - &518 + - &260 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -33133,7 +33133,7 @@ paths: required: - operator - pattern - - &519 + - &261 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -33264,7 +33264,26 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *247 + items: &264 + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - *247 + - *248 + - *249 + - *250 + - *251 + - *252 + - *253 + - *254 + - *255 + - *256 + - *257 + - *258 + - *259 + - *260 + - *261 source_type: type: string description: The type of the source of the ruleset @@ -33308,9 +33327,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: &249 + default: &263 value: id: 21 name: super cool ruleset @@ -33365,7 +33384,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *135 - - &521 + - &522 name: ref description: The name of the ref. Cannot contain wildcard characters. When specified, only rule evaluations triggered for this ref will be returned. @@ -33378,7 +33397,7 @@ paths: in: query schema: type: string - - &522 + - &523 name: time_period description: |- The time period to filter by. @@ -33394,14 +33413,14 @@ paths: - week - month default: day - - &523 + - &524 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &524 + - &525 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -33421,7 +33440,7 @@ paths: description: Response content: application/json: - schema: &525 + schema: &526 title: Rule Suites description: Response type: array @@ -33475,7 +33494,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &526 + default: &527 value: - id: 21 actor_id: 12 @@ -33519,7 +33538,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *135 - - &527 + - &528 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -33535,7 +33554,7 @@ paths: description: Response content: application/json: - schema: &528 + schema: &529 title: Rule Suite description: Response type: object @@ -33633,7 +33652,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &529 + default: &530 value: id: 21 actor_id: 12 @@ -33706,9 +33725,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: *249 + default: *263 '404': *26 '500': *220 put: @@ -33760,7 +33779,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *247 + items: *264 examples: default: value: @@ -33795,9 +33814,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: *249 + default: *263 '404': *26 '500': *220 delete: @@ -33844,14 +33863,14 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *135 - - *250 - - *251 - - *252 - - *253 + - *265 + - *266 + - *267 + - *268 - *9 - *5 - *4 - - &531 + - &532 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.13/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -33861,7 +33880,7 @@ paths: required: false schema: type: string - - &532 + - &533 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.13/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -33871,7 +33890,7 @@ paths: required: false schema: type: string - - *254 + - *269 responses: '200': description: Response @@ -33879,9 +33898,9 @@ paths: application/json: schema: type: array - items: *255 + items: *270 examples: - default: *256 + default: *271 headers: Link: *6 '404': *26 @@ -33915,12 +33934,12 @@ paths: application/json: schema: type: array - items: &481 + items: &496 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &260 + properties: &275 id: description: Unique identifier of the team type: integer @@ -33973,7 +33992,7 @@ paths: LDAP environment example: uid=example,ou=users,dc=github,dc=com type: string - required: &261 + required: &276 - id - node_id - url @@ -33985,7 +34004,7 @@ paths: - repositories_url - slug examples: - default: &262 + default: &277 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -34023,7 +34042,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/orgs/security-managers#add-a-security-manager-team parameters: - *135 - - &257 + - &272 name: team_slug description: The slug of the team name. in: path @@ -34058,7 +34077,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *135 - - *257 + - *272 responses: '204': description: Response @@ -34094,9 +34113,9 @@ paths: description: Success content: application/json: - schema: *258 + schema: *273 examples: - default: *259 + default: *274 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -34124,7 +34143,7 @@ paths: application/json: schema: type: array - items: &284 + items: &299 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -34183,8 +34202,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *260 - required: *261 + properties: *275 + required: *276 nullable: true required: - id @@ -34199,7 +34218,7 @@ paths: - slug - parent examples: - default: *262 + default: *277 headers: Link: *6 '403': *43 @@ -34301,7 +34320,7 @@ paths: description: Response content: application/json: - schema: &263 + schema: &278 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -34364,8 +34383,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *260 - required: *261 + properties: *275 + required: *276 nullable: true members_count: type: integer @@ -34611,7 +34630,7 @@ paths: - repos_count - organization examples: - default: &264 + default: &279 value: id: 1 node_id: MDQ6VGVhbTE= @@ -34681,15 +34700,15 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#get-a-team-by-name parameters: - *135 - - *257 + - *272 responses: '200': description: Response content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '404': *26 x-github: githubCloudOnly: false @@ -34711,7 +34730,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#update-a-team parameters: - *135 - - *257 + - *272 requestBody: required: false content: @@ -34773,16 +34792,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '201': description: Response content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '404': *26 '422': *35 '403': *43 @@ -34808,7 +34827,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#delete-a-team parameters: - *135 - - *257 + - *272 responses: '204': description: Response @@ -34835,7 +34854,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#list-discussions parameters: - *135 - - *257 + - *272 - *9 - *4 - *5 @@ -34852,7 +34871,7 @@ paths: application/json: schema: type: array - items: &265 + items: &280 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -34951,7 +34970,7 @@ paths: - updated_at - url examples: - default: &571 + default: &572 value: - author: login: octocat @@ -35026,7 +35045,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#create-a-discussion parameters: - *135 - - *257 + - *272 requestBody: required: true content: @@ -35060,9 +35079,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: &266 + default: &281 value: author: login: octocat @@ -35135,8 +35154,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#get-a-discussion parameters: - *135 - - *257 - - &267 + - *272 + - &282 name: discussion_number description: The number that identifies the discussion. in: path @@ -35148,9 +35167,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: *266 + default: *281 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35173,8 +35192,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#update-a-discussion parameters: - *135 - - *257 - - *267 + - *272 + - *282 requestBody: required: false content: @@ -35197,9 +35216,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: &572 + default: &573 value: author: login: octocat @@ -35270,8 +35289,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#delete-a-discussion parameters: - *135 - - *257 - - *267 + - *272 + - *282 responses: '204': description: Response @@ -35298,8 +35317,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#list-discussion-comments parameters: - *135 - - *257 - - *267 + - *272 + - *282 - *9 - *4 - *5 @@ -35310,7 +35329,7 @@ paths: application/json: schema: type: array - items: &268 + items: &283 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -35382,7 +35401,7 @@ paths: - updated_at - url examples: - default: &573 + default: &574 value: - author: login: octocat @@ -35451,8 +35470,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *135 - - *257 - - *267 + - *272 + - *282 requestBody: required: true content: @@ -35474,9 +35493,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: &269 + default: &284 value: author: login: octocat @@ -35543,9 +35562,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *135 - - *257 - - *267 - - &270 + - *272 + - *282 + - &285 name: comment_number description: The number that identifies the comment. in: path @@ -35557,9 +35576,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: *269 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35582,9 +35601,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *135 - - *257 - - *267 - - *270 + - *272 + - *282 + - *285 requestBody: required: true content: @@ -35606,9 +35625,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: &574 + default: &575 value: author: login: octocat @@ -35673,9 +35692,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *135 - - *257 - - *267 - - *270 + - *272 + - *282 + - *285 responses: '204': description: Response @@ -35702,9 +35721,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *135 - - *257 - - *267 - - *270 + - *272 + - *282 + - *285 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -35730,7 +35749,7 @@ paths: application/json: schema: type: array - items: &271 + items: &286 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -35773,7 +35792,7 @@ paths: - content - created_at examples: - default: &273 + default: &288 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -35824,9 +35843,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *135 - - *257 - - *267 - - *270 + - *272 + - *282 + - *285 requestBody: required: true content: @@ -35859,9 +35878,9 @@ paths: team discussion comment content: application/json: - schema: *271 + schema: *286 examples: - default: &272 + default: &287 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -35890,9 +35909,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35916,10 +35935,10 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *135 - - *257 - - *267 - - *270 - - &274 + - *272 + - *282 + - *285 + - &289 name: reaction_id description: The unique identifier of the reaction. in: path @@ -35952,8 +35971,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *135 - - *257 - - *267 + - *272 + - *282 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -35979,9 +35998,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 x-github: @@ -36008,8 +36027,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *135 - - *257 - - *267 + - *272 + - *282 requestBody: required: true content: @@ -36041,16 +36060,16 @@ paths: description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -36074,9 +36093,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *135 - - *257 - - *267 - - *274 + - *272 + - *282 + - *289 responses: '204': description: Response @@ -36100,15 +36119,15 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *135 - - *257 + - *272 responses: '200': description: Response content: application/json: - schema: *275 + schema: *290 examples: - default: *276 + default: *291 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -36128,7 +36147,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *135 - - *257 + - *272 requestBody: required: true content: @@ -36151,9 +36170,9 @@ paths: description: Response content: application/json: - schema: *277 + schema: *292 examples: - default: *278 + default: *293 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -36173,7 +36192,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *135 - - *257 + - *272 responses: '204': description: Response @@ -36197,7 +36216,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/members#list-team-members parameters: - *135 - - *257 + - *272 - name: role description: Filters members returned by their role in the team. in: query @@ -36251,14 +36270,14 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/members#get-team-membership-for-a-user parameters: - *135 - - *257 + - *272 - *8 responses: '200': description: Response content: application/json: - schema: &279 + schema: &294 title: Team Membership description: Team Membership type: object @@ -36285,7 +36304,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &575 + response-if-user-is-a-team-maintainer: &576 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -36322,7 +36341,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *135 - - *257 + - *272 - *8 requestBody: required: false @@ -36348,9 +36367,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *294 examples: - response-if-users-membership-with-team-is-now-pending: &576 + response-if-users-membership-with-team-is-now-pending: &577 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -36386,7 +36405,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/members#remove-team-membership-for-a-user parameters: - *135 - - *257 + - *272 - *8 responses: '204': @@ -36414,7 +36433,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#list-team-projects parameters: - *135 - - *257 + - *272 - *4 - *5 responses: @@ -36424,7 +36443,7 @@ paths: application/json: schema: type: array - items: &280 + items: &295 title: Team Project description: A team's access to a project. type: object @@ -36492,7 +36511,7 @@ paths: - updated_at - permissions examples: - default: &577 + default: &578 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -36554,8 +36573,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#check-team-permissions-for-a-project parameters: - *135 - - *257 - - &281 + - *272 + - &296 name: project_id description: The unique identifier of the project. in: path @@ -36567,9 +36586,9 @@ paths: description: Response content: application/json: - schema: *280 + schema: *295 examples: - default: &578 + default: &579 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -36630,8 +36649,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#add-or-update-team-project-permissions parameters: - *135 - - *257 - - *281 + - *272 + - *296 requestBody: required: false content: @@ -36696,8 +36715,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#remove-a-project-from-a-team parameters: - *135 - - *257 - - *281 + - *272 + - *296 responses: '204': description: Response @@ -36722,7 +36741,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#list-team-repositories parameters: - *135 - - *257 + - *272 - *4 - *5 responses: @@ -36764,15 +36783,15 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *135 - - *257 - - *282 - - *283 + - *272 + - *297 + - *298 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &579 + schema: &580 title: Team Repository description: A team's access to a repository. type: object @@ -37342,9 +37361,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *135 - - *257 - - *282 - - *283 + - *272 + - *297 + - *298 requestBody: required: false content: @@ -37390,9 +37409,9 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#remove-a-repository-from-a-team parameters: - *135 - - *257 - - *282 - - *283 + - *272 + - *297 + - *298 responses: '204': description: Response @@ -37417,7 +37436,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#list-child-teams parameters: - *135 - - *257 + - *272 - *4 - *5 responses: @@ -37427,9 +37446,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - response-if-child-teams-exist: &580 + response-if-child-teams-exist: &581 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -37547,7 +37566,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#get-a-project-card parameters: - - &285 + - &300 name: card_id description: The unique identifier of the card. in: path @@ -37559,7 +37578,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &301 title: Project Card description: Project cards represent a scope of work. type: object @@ -37626,7 +37645,7 @@ paths: - created_at - updated_at examples: - default: &287 + default: &302 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -37676,7 +37695,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#update-an-existing-project-card parameters: - - *285 + - *300 requestBody: required: false content: @@ -37703,9 +37722,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *301 examples: - default: *287 + default: *302 '304': *42 '403': *43 '401': *41 @@ -37726,7 +37745,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#delete-a-project-card parameters: - - *285 + - *300 responses: '204': description: Response @@ -37764,7 +37783,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#move-a-project-card parameters: - - *285 + - *300 requestBody: required: true content: @@ -37869,7 +37888,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#get-a-project-column parameters: - - &288 + - &303 name: column_id description: The unique identifier of the column. in: path @@ -37881,7 +37900,7 @@ paths: description: Response content: application/json: - schema: &289 + schema: &304 title: Project Column description: Project columns contain cards of work. type: object @@ -37927,7 +37946,7 @@ paths: - created_at - updated_at examples: - default: &290 + default: &305 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -37956,7 +37975,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#update-an-existing-project-column parameters: - - *288 + - *303 requestBody: required: true content: @@ -37980,9 +37999,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *304 examples: - default: *290 + default: *305 '304': *42 '403': *43 '401': *41 @@ -38001,7 +38020,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#delete-a-project-column parameters: - - *288 + - *303 responses: '204': description: Response @@ -38024,7 +38043,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#list-project-cards parameters: - - *288 + - *303 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -38045,7 +38064,7 @@ paths: application/json: schema: type: array - items: *286 + items: *301 examples: default: value: @@ -38098,7 +38117,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/cards#create-a-project-card parameters: - - *288 + - *303 requestBody: required: true content: @@ -38138,9 +38157,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *301 examples: - default: *287 + default: *302 '304': *42 '403': *43 '401': *41 @@ -38190,7 +38209,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#move-a-project-column parameters: - - *288 + - *303 requestBody: required: true content: @@ -38246,7 +38265,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/projects#get-a-project parameters: - - *281 + - *296 responses: '200': description: Response @@ -38254,7 +38273,7 @@ paths: application/json: schema: *232 examples: - default: &291 + default: &306 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -38307,7 +38326,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/projects#update-a-project parameters: - - *281 + - *296 requestBody: required: false content: @@ -38355,7 +38374,7 @@ paths: application/json: schema: *232 examples: - default: *291 + default: *306 '404': description: Not Found if the authenticated user does not have access to the project @@ -38394,7 +38413,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/projects#delete-a-project parameters: - - *281 + - *296 responses: '204': description: Delete Success @@ -38438,7 +38457,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/collaborators#list-project-collaborators parameters: - - *281 + - *296 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -38490,7 +38509,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/collaborators#add-project-collaborator parameters: - - *281 + - *296 - *8 requestBody: required: false @@ -38538,7 +38557,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *281 + - *296 - *8 responses: '204': @@ -38567,7 +38586,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *281 + - *296 - *8 responses: '200': @@ -38635,7 +38654,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#list-project-columns parameters: - - *281 + - *296 - *4 - *5 responses: @@ -38645,7 +38664,7 @@ paths: application/json: schema: type: array - items: *289 + items: *304 examples: default: value: @@ -38677,7 +38696,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/columns#create-a-project-column parameters: - - *281 + - *296 requestBody: required: true content: @@ -38700,7 +38719,7 @@ paths: description: Response content: application/json: - schema: *289 + schema: *304 examples: default: value: @@ -38762,7 +38781,7 @@ paths: resources: type: object properties: - core: &292 + core: &307 title: Rate Limit type: object properties: @@ -38779,20 +38798,20 @@ paths: - remaining - reset - used - graphql: *292 - search: *292 - code_search: *292 - source_import: *292 - integration_manifest: *292 - code_scanning_upload: *292 - actions_runner_registration: *292 - scim: *292 - dependency_sbom: *292 - code_scanning_autofix: *292 + graphql: *307 + search: *307 + code_search: *307 + source_import: *307 + integration_manifest: *307 + code_scanning_upload: *307 + actions_runner_registration: *307 + scim: *307 + dependency_sbom: *307 + code_scanning_autofix: *307 required: - core - search - rate: *292 + rate: *307 required: - rate - resources @@ -38896,14 +38915,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#get-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *293 + schema: *308 examples: default-response: summary: Default response @@ -39402,7 +39421,7 @@ paths: status: disabled '403': *43 '404': *26 - '301': *294 + '301': *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39420,8 +39439,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#update-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -39637,10 +39656,10 @@ paths: description: Response content: application/json: - schema: *293 + schema: *308 examples: - default: *295 - '307': &296 + default: *310 + '307': &311 description: Temporary Redirect content: application/json: @@ -39685,8 +39704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#delete-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -39708,7 +39727,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#delete-a-repository - '307': *296 + '307': *311 '404': *26 '409': *140 x-github: @@ -39732,11 +39751,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 - - &313 + - &328 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -39759,7 +39778,7 @@ paths: type: integer artifacts: type: array - items: &297 + items: &312 title: Artifact description: An artifact type: object @@ -39830,7 +39849,7 @@ paths: - expires_at - updated_at examples: - default: &314 + default: &329 value: total_count: 2 artifacts: @@ -39889,9 +39908,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/artifacts#get-an-artifact parameters: - - *282 - - *283 - - &298 + - *297 + - *298 + - &313 name: artifact_id description: The unique identifier of the artifact. in: path @@ -39903,7 +39922,7 @@ paths: description: Response content: application/json: - schema: *297 + schema: *312 examples: default: value: @@ -39940,9 +39959,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/artifacts#delete-an-artifact parameters: - - *282 - - *283 + - *297 - *298 + - *313 responses: '204': description: Response @@ -39966,9 +39985,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/artifacts#download-an-artifact parameters: - - *282 - - *283 + - *297 - *298 + - *313 - name: archive_format in: path required: true @@ -40005,14 +40024,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *299 + schema: *314 examples: default: value: @@ -40038,14 +40057,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#get-github-actions-cache-usage-policy-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: &300 + schema: &315 title: Actions cache usage policy for repository description: GitHub Actions cache usage policy for repository. type: object @@ -40057,7 +40076,7 @@ paths: required: - repo_cache_size_limit_in_gb examples: - default: &301 + default: &316 value: repo_cache_size_limit_in_gb: 14 x-github: @@ -40078,8 +40097,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#set-github-actions-cache-usage-policy-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -40087,9 +40106,9 @@ paths: required: true content: application/json: - schema: *300 + schema: *315 examples: - selected_actions: *301 + selected_actions: *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40109,11 +40128,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 - - &302 + - &317 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -40147,7 +40166,7 @@ paths: description: Response content: application/json: - schema: &303 + schema: &318 title: Repository actions caches description: Repository actions caches type: object @@ -40189,7 +40208,7 @@ paths: - total_count - actions_caches examples: - default: &304 + default: &319 value: total_count: 1 actions_caches: @@ -40221,23 +40240,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *282 - - *283 + - *297 + - *298 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *302 + - *317 responses: '200': description: Response content: application/json: - schema: *303 + schema: *318 examples: - default: *304 + default: *319 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40257,8 +40276,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *282 - - *283 + - *297 + - *298 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -40289,9 +40308,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *282 - - *283 - - &305 + - *297 + - *298 + - &320 name: job_id description: The unique identifier of the job. in: path @@ -40303,7 +40322,7 @@ paths: description: Response content: application/json: - schema: &317 + schema: &332 title: Job description: Information of a job execution in a workflow run type: object @@ -40610,9 +40629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *282 - - *283 - - *305 + - *297 + - *298 + - *320 responses: '302': description: Response @@ -40640,9 +40659,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *282 - - *283 - - *305 + - *297 + - *298 + - *320 requestBody: required: false content: @@ -40687,8 +40706,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Status response @@ -40738,8 +40757,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -40802,8 +40821,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#list-repository-organization-secrets parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -40821,7 +40840,7 @@ paths: type: integer secrets: type: array - items: &319 + items: &334 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -40841,7 +40860,7 @@ paths: - created_at - updated_at examples: - default: &320 + default: &335 value: total_count: 2 secrets: @@ -40874,9 +40893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#list-repository-organization-variables parameters: - - *282 - - *283 - - *306 + - *297 + - *298 + - *321 - *5 responses: '200': @@ -40893,7 +40912,7 @@ paths: type: integer variables: type: array - items: &323 + items: &338 title: Actions Variable type: object properties: @@ -40923,7 +40942,7 @@ paths: - created_at - updated_at examples: - default: &324 + default: &339 value: total_count: 2 variables: @@ -40956,8 +40975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -40966,7 +40985,7 @@ paths: schema: type: object properties: - enabled: &307 + enabled: &322 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *69 @@ -40999,8 +41018,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -41011,7 +41030,7 @@ paths: schema: type: object properties: - enabled: *307 + enabled: *322 allowed_actions: *69 required: - enabled @@ -41042,14 +41061,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: &308 + schema: &323 type: object properties: access_level: @@ -41067,7 +41086,7 @@ paths: required: - access_level examples: - default: &309 + default: &324 value: access_level: organization x-github: @@ -41092,15 +41111,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: application/json: - schema: *308 + schema: *323 examples: - default: *309 + default: *324 responses: '204': description: Response @@ -41124,8 +41143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -41156,8 +41175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -41189,8 +41208,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -41219,8 +41238,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Success response @@ -41260,8 +41279,8 @@ paths: in: query schema: type: string - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -41305,8 +41324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -41338,8 +41357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -41413,8 +41432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '201': description: Response @@ -41450,8 +41469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '201': description: Response @@ -41481,8 +41500,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 responses: '200': @@ -41512,8 +41531,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 responses: '204': @@ -41540,8 +41559,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 responses: '200': *87 @@ -41566,8 +41585,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 requestBody: required: true @@ -41616,8 +41635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 requestBody: required: true @@ -41667,8 +41686,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 responses: '200': *160 @@ -41698,8 +41717,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *81 - *161 responses: @@ -41729,9 +41748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *282 - - *283 - - &327 + - *297 + - *298 + - &342 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -41739,7 +41758,7 @@ paths: required: false schema: type: string - - &328 + - &343 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -41747,7 +41766,7 @@ paths: required: false schema: type: string - - &329 + - &344 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -41756,7 +41775,7 @@ paths: required: false schema: type: string - - &330 + - &345 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -41783,7 +41802,7 @@ paths: - pending - *4 - *5 - - &331 + - &346 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-server@3.13/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -41792,7 +41811,7 @@ paths: schema: type: string format: date-time - - &310 + - &325 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -41801,13 +41820,13 @@ paths: schema: type: boolean default: false - - &332 + - &347 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &333 + - &348 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -41830,7 +41849,7 @@ paths: type: integer workflow_runs: type: array - items: &311 + items: &326 title: Workflow Run description: An invocation of a workflow type: object @@ -41925,7 +41944,7 @@ paths: that triggered the run. type: array nullable: true - items: &351 + items: &366 title: Pull Request Minimal type: object properties: @@ -42044,7 +42063,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &355 + properties: &370 id: type: string description: SHA for the commit @@ -42095,7 +42114,7 @@ paths: - name - email nullable: true - required: &356 + required: &371 - id - tree_id - message @@ -42142,7 +42161,7 @@ paths: - workflow_url - pull_requests examples: - default: &334 + default: &349 value: total_count: 1 workflow_runs: @@ -42378,24 +42397,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *282 - - *283 - - &312 + - *297 + - *298 + - &327 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *310 + - *325 responses: '200': description: Response content: application/json: - schema: *311 + schema: *326 examples: - default: &315 + default: &330 value: id: 30433642 name: Build @@ -42636,9 +42655,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '204': description: Response @@ -42661,9 +42680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '200': description: Response @@ -42784,12 +42803,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 - *4 - *5 - - *313 + - *328 responses: '200': description: Response @@ -42805,9 +42824,9 @@ paths: type: integer artifacts: type: array - items: *297 + items: *312 examples: - default: *314 + default: *329 headers: Link: *6 x-github: @@ -42831,25 +42850,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *282 - - *283 - - *312 - - &316 + - *297 + - *298 + - *327 + - &331 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *310 + - *325 responses: '200': description: Response content: application/json: - schema: *311 + schema: *326 examples: - default: *315 + default: *330 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -42872,10 +42891,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *282 - - *283 - - *312 - - *316 + - *297 + - *298 + - *327 + - *331 - *4 - *5 responses: @@ -42893,9 +42912,9 @@ paths: type: integer jobs: type: array - items: *317 + items: *332 examples: - default: &318 + default: &333 value: total_count: 1 jobs: @@ -43008,10 +43027,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *282 - - *283 - - *312 - - *316 + - *297 + - *298 + - *327 + - *331 responses: '302': description: Response @@ -43039,9 +43058,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '202': description: Response @@ -43074,9 +43093,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 requestBody: required: true content: @@ -43143,9 +43162,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '202': description: Response @@ -43178,9 +43197,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -43210,9 +43229,9 @@ paths: type: integer jobs: type: array - items: *317 + items: *332 examples: - default: *318 + default: *333 headers: Link: *6 x-github: @@ -43237,9 +43256,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '302': description: Response @@ -43266,9 +43285,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '204': description: Response @@ -43295,9 +43314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 responses: '200': description: Response @@ -43357,7 +43376,7 @@ paths: items: type: object properties: - type: &408 + type: &423 type: string description: The type of reviewer. enum: @@ -43367,7 +43386,7 @@ paths: reviewer: anyOf: - *19 - - *284 + - *299 required: - environment - wait_timer @@ -43442,9 +43461,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 requestBody: required: true content: @@ -43491,7 +43510,7 @@ paths: application/json: schema: type: array - items: &403 + items: &418 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -43597,7 +43616,7 @@ paths: - created_at - updated_at examples: - default: &404 + default: &419 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -43653,9 +43672,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 requestBody: required: false content: @@ -43699,9 +43718,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *282 - - *283 - - *312 + - *297 + - *298 + - *327 requestBody: required: false content: @@ -43748,8 +43767,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#list-repository-secrets parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -43767,9 +43786,9 @@ paths: type: integer secrets: type: array - items: *319 + items: *334 examples: - default: *320 + default: *335 headers: Link: *6 x-github: @@ -43794,16 +43813,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#get-a-repository-public-key parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *321 + schema: *336 examples: - default: *322 + default: *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43825,17 +43844,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#get-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 responses: '200': description: Response content: application/json: - schema: *319 + schema: *334 examples: - default: &421 + default: &436 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -43861,8 +43880,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 requestBody: required: true @@ -43920,8 +43939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#delete-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 responses: '204': @@ -43947,9 +43966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#list-repository-variables parameters: - - *282 - - *283 - - *306 + - *297 + - *298 + - *321 - *5 responses: '200': @@ -43966,9 +43985,9 @@ paths: type: integer variables: type: array - items: *323 + items: *338 examples: - default: *324 + default: *339 headers: Link: *6 x-github: @@ -43991,8 +44010,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#create-a-repository-variable parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -44044,17 +44063,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#get-a-repository-variable parameters: - - *282 - - *283 + - *297 + - *298 - *166 responses: '200': description: Response content: application/json: - schema: *323 + schema: *338 examples: - default: &422 + default: &437 value: name: USERNAME value: octocat @@ -44080,8 +44099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#update-a-repository-variable parameters: - - *282 - - *283 + - *297 + - *298 - *166 requestBody: required: true @@ -44124,8 +44143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#delete-a-repository-variable parameters: - - *282 - - *283 + - *297 + - *298 - *166 responses: '204': @@ -44151,8 +44170,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflows#list-repository-workflows parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -44170,7 +44189,7 @@ paths: type: integer workflows: type: array - items: &325 + items: &340 title: Workflow description: A GitHub Actions workflow type: object @@ -44277,9 +44296,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflows#get-a-workflow parameters: - - *282 - - *283 - - &326 + - *297 + - *298 + - &341 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -44294,7 +44313,7 @@ paths: description: Response content: application/json: - schema: *325 + schema: *340 examples: default: value: @@ -44327,9 +44346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflows#disable-a-workflow parameters: - - *282 - - *283 - - *326 + - *297 + - *298 + - *341 responses: '204': description: Response @@ -44354,9 +44373,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *282 - - *283 - - *326 + - *297 + - *298 + - *341 responses: '204': description: Response @@ -44407,9 +44426,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflows#enable-a-workflow parameters: - - *282 - - *283 - - *326 + - *297 + - *298 + - *341 responses: '204': description: Response @@ -44436,19 +44455,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *282 - - *283 - - *326 - - *327 - - *328 - - *329 - - *330 + - *297 + - *298 + - *341 + - *342 + - *343 + - *344 + - *345 - *4 - *5 - - *331 - - *310 - - *332 - - *333 + - *346 + - *325 + - *347 + - *348 responses: '200': description: Response @@ -44464,9 +44483,9 @@ paths: type: integer workflow_runs: type: array - items: *311 + items: *326 examples: - default: *334 + default: *349 headers: Link: *6 x-github: @@ -44489,8 +44508,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-activities parameters: - - *282 - - *283 + - *297 + - *298 - *9 - *4 - *88 @@ -44654,8 +44673,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/assignees#list-assignees parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -44692,8 +44711,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *282 - - *283 + - *297 + - *298 - name: assignee in: path required: true @@ -44727,8 +44746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -44736,7 +44755,7 @@ paths: application/json: schema: type: array - items: &335 + items: &350 title: Autolink reference description: An autolink reference. type: object @@ -44786,8 +44805,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -44826,9 +44845,9 @@ paths: description: response content: application/json: - schema: *335 + schema: *350 examples: - default: &336 + default: &351 value: id: 1 key_prefix: TICKET- @@ -44859,9 +44878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *282 - - *283 - - &337 + - *297 + - *298 + - &352 name: autolink_id description: The unique identifier of the autolink. in: path @@ -44873,9 +44892,9 @@ paths: description: Response content: application/json: - schema: *335 + schema: *350 examples: - default: *336 + default: *351 '404': *26 x-github: githubCloudOnly: false @@ -44895,9 +44914,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *282 - - *283 - - *337 + - *297 + - *298 + - *352 responses: '204': description: Response @@ -44921,8 +44940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response if Dependabot is enabled @@ -44969,8 +44988,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branches#list-branches parameters: - - *282 - - *283 + - *297 + - *298 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -45008,7 +45027,7 @@ paths: - url protected: type: boolean - protection: &339 + protection: &354 title: Branch Protection description: Branch Protection type: object @@ -45050,7 +45069,7 @@ paths: required: - contexts - checks - enforce_admins: &342 + enforce_admins: &357 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -45065,7 +45084,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &344 + required_pull_request_reviews: &359 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -45086,7 +45105,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *284 + items: *299 apps: description: The list of apps with review dismissal access. @@ -45115,7 +45134,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *284 + items: *299 apps: description: The list of apps allowed to bypass pull request requirements. @@ -45141,7 +45160,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &341 + restrictions: &356 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -45448,9 +45467,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branches#get-a-branch parameters: - - *282 - - *283 - - &340 + - *297 + - *298 + - &355 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-server@3.13/graphql). @@ -45464,14 +45483,14 @@ paths: description: Response content: application/json: - schema: &350 + schema: &365 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &381 + commit: &396 title: Commit description: Commit type: object @@ -45505,7 +45524,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &338 + properties: &353 name: type: string example: '"Chris Wanstrath"' @@ -45520,7 +45539,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *338 + properties: *353 nullable: true message: type: string @@ -45541,7 +45560,7 @@ paths: required: - sha - url - verification: &428 + verification: &443 title: Verification type: object properties: @@ -45607,7 +45626,7 @@ paths: type: integer files: type: array - items: &392 + items: &407 title: Diff Entry description: Diff Entry type: object @@ -45690,7 +45709,7 @@ paths: - self protected: type: boolean - protection: *339 + protection: *354 protection_url: type: string format: uri @@ -45794,7 +45813,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *294 + '301': *309 '404': *26 x-github: githubCloudOnly: false @@ -45816,15 +45835,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *339 + schema: *354 examples: default: value: @@ -46018,9 +46037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#update-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -46275,7 +46294,7 @@ paths: url: type: string format: uri - required_status_checks: &347 + required_status_checks: &362 title: Status Check Policy description: Status Check Policy type: object @@ -46351,7 +46370,7 @@ paths: items: *19 teams: type: array - items: *284 + items: *299 apps: type: array items: *25 @@ -46369,7 +46388,7 @@ paths: items: *19 teams: type: array - items: *284 + items: *299 apps: type: array items: *25 @@ -46427,7 +46446,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *341 + restrictions: *356 required_conversation_resolution: type: object properties: @@ -46539,9 +46558,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#delete-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -46566,17 +46585,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *342 + schema: *357 examples: - default: &343 + default: &358 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -46598,17 +46617,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *342 + schema: *357 examples: - default: *343 + default: *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46627,9 +46646,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -46654,17 +46673,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *344 + schema: *359 examples: - default: &345 + default: &360 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -46760,9 +46779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -46860,9 +46879,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *359 examples: - default: *345 + default: *360 '422': *35 x-github: githubCloudOnly: false @@ -46883,9 +46902,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -46912,17 +46931,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *342 + schema: *357 examples: - default: &346 + default: &361 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -46945,17 +46964,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *342 + schema: *357 examples: - default: *346 + default: *361 '404': *26 x-github: githubCloudOnly: false @@ -46975,9 +46994,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -47002,17 +47021,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-status-checks-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *347 + schema: *362 examples: - default: &348 + default: &363 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -47038,9 +47057,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#update-status-check-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -47092,9 +47111,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *362 examples: - default: *348 + default: *363 '404': *26 '422': *35 x-github: @@ -47116,9 +47135,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#remove-status-check-protection parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -47142,9 +47161,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response @@ -47178,9 +47197,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#add-status-check-contexts parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -47247,9 +47266,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#set-status-check-contexts parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -47313,9 +47332,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: content: application/json: @@ -47381,15 +47400,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response content: application/json: - schema: *341 + schema: *356 examples: default: value: @@ -47480,9 +47499,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#delete-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '204': description: Response @@ -47505,9 +47524,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response @@ -47517,7 +47536,7 @@ paths: type: array items: *25 examples: - default: &349 + default: &364 value: - id: 1 slug: octoapp @@ -47574,9 +47593,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -47610,7 +47629,7 @@ paths: type: array items: *25 examples: - default: *349 + default: *364 '422': *35 x-github: githubCloudOnly: false @@ -47631,9 +47650,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -47667,7 +47686,7 @@ paths: type: array items: *25 examples: - default: *349 + default: *364 '422': *35 x-github: githubCloudOnly: false @@ -47688,9 +47707,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -47724,7 +47743,7 @@ paths: type: array items: *25 examples: - default: *349 + default: *364 '422': *35 x-github: githubCloudOnly: false @@ -47746,9 +47765,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response @@ -47756,9 +47775,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - default: *262 + default: *277 '404': *26 x-github: githubCloudOnly: false @@ -47778,9 +47797,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -47816,9 +47835,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - default: *262 + default: *277 '422': *35 x-github: githubCloudOnly: false @@ -47839,9 +47858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: false content: @@ -47877,9 +47896,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - default: *262 + default: *277 '422': *35 x-github: githubCloudOnly: false @@ -47900,9 +47919,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: content: application/json: @@ -47937,9 +47956,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - default: *262 + default: *277 '422': *35 x-github: githubCloudOnly: false @@ -47961,9 +47980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 responses: '200': description: Response @@ -47997,9 +48016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -48057,9 +48076,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -48117,9 +48136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -48179,9 +48198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branches#rename-a-branch parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 requestBody: required: true content: @@ -48203,7 +48222,7 @@ paths: description: Response content: application/json: - schema: *350 + schema: *365 examples: default: value: @@ -48316,8 +48335,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#create-a-check-run parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -48596,7 +48615,7 @@ paths: description: Response content: application/json: - schema: &352 + schema: &367 title: CheckRun description: A check performed on the code of a given code change type: object @@ -48715,8 +48734,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *351 - deployment: &614 + items: *366 + deployment: &615 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -48996,9 +49015,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#get-a-check-run parameters: - - *282 - - *283 - - &353 + - *297 + - *298 + - &368 name: check_run_id description: The unique identifier of the check run. in: path @@ -49010,9 +49029,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *367 examples: - default: &354 + default: &369 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -49112,9 +49131,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#update-a-check-run parameters: - - *282 - - *283 - - *353 + - *297 + - *298 + - *368 requestBody: required: true content: @@ -49354,9 +49373,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *367 examples: - default: *354 + default: *369 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49376,9 +49395,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#list-check-run-annotations parameters: - - *282 - - *283 - - *353 + - *297 + - *298 + - *368 - *4 - *5 responses: @@ -49473,9 +49492,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#rerequest-a-check-run parameters: - - *282 - - *283 - - *353 + - *297 + - *298 + - *368 responses: '201': description: Response @@ -49519,8 +49538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/suites#create-a-check-suite parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -49542,7 +49561,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &357 + schema: &372 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -49606,7 +49625,7 @@ paths: nullable: true pull_requests: type: array - items: *351 + items: *366 nullable: true app: title: GitHub app @@ -49632,8 +49651,8 @@ paths: title: Simple Commit description: A commit. type: object - properties: *355 - required: *356 + properties: *370 + required: *371 latest_check_runs_count: type: integer check_runs_url: @@ -49661,7 +49680,7 @@ paths: - check_runs_url - pull_requests examples: - default: &358 + default: &373 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -49952,9 +49971,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *357 + schema: *372 examples: - default: *358 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49973,8 +49992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -50283,9 +50302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/suites#get-a-check-suite parameters: - - *282 - - *283 - - &359 + - *297 + - *298 + - &374 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -50297,9 +50316,9 @@ paths: description: Response content: application/json: - schema: *357 + schema: *372 examples: - default: *358 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50322,17 +50341,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *282 - - *283 - - *359 - - &389 + - *297 + - *298 + - *374 + - &404 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &390 + - &405 name: status description: Returns check runs with the specified `status`. in: query @@ -50371,9 +50390,9 @@ paths: type: integer check_runs: type: array - items: *352 + items: *367 examples: - default: &391 + default: &406 value: total_count: 1 check_runs: @@ -50475,9 +50494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/suites#rerequest-a-check-suite parameters: - - *282 - - *283 - - *359 + - *297 + - *298 + - *374 responses: '201': description: Response @@ -50510,20 +50529,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *178 - *179 - *5 - *4 - - &371 + - &386 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *360 + schema: *375 - *9 - name: sort description: The property by which to sort the results. @@ -50546,7 +50565,7 @@ paths: be returned. in: query required: false - schema: *361 + schema: *376 responses: '200': description: Response @@ -50562,7 +50581,7 @@ paths: updated_at: *100 url: *97 html_url: *98 - instances_url: *362 + instances_url: *377 state: *92 fixed_at: *102 dismissed_by: @@ -50573,11 +50592,11 @@ paths: required: *18 nullable: true dismissed_at: *101 - dismissed_reason: *363 - dismissed_comment: *364 - rule: *365 - tool: *366 - most_recent_instance: *367 + dismissed_reason: *378 + dismissed_comment: *379 + rule: *380 + tool: *381 + most_recent_instance: *382 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -50700,7 +50719,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *42 - '403': &368 + '403': &383 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -50727,9 +50746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *282 - - *283 - - &369 + - *297 + - *298 + - &384 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -50743,7 +50762,7 @@ paths: description: Response content: application/json: - schema: &370 + schema: &385 type: object properties: number: *93 @@ -50751,7 +50770,7 @@ paths: updated_at: *100 url: *97 html_url: *98 - instances_url: *362 + instances_url: *377 state: *92 fixed_at: *102 dismissed_by: @@ -50762,8 +50781,8 @@ paths: required: *18 nullable: true dismissed_at: *101 - dismissed_reason: *363 - dismissed_comment: *364 + dismissed_reason: *378 + dismissed_comment: *379 rule: type: object properties: @@ -50817,8 +50836,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *366 - most_recent_instance: *367 + tool: *381 + most_recent_instance: *382 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -50914,7 +50933,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *42 - '403': *368 + '403': *383 '404': *26 '503': *104 x-github: @@ -50934,9 +50953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *282 - - *283 - - *369 + - *297 + - *298 + - *384 requestBody: required: true content: @@ -50951,8 +50970,8 @@ paths: enum: - open - dismissed - dismissed_reason: *363 - dismissed_comment: *364 + dismissed_reason: *378 + dismissed_comment: *379 required: - state examples: @@ -50967,7 +50986,7 @@ paths: description: Response content: application/json: - schema: *370 + schema: *385 examples: default: value: @@ -51043,7 +51062,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *34 - '403': &376 + '403': &391 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -51070,12 +51089,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *282 - - *283 - - *369 + - *297 + - *298 + - *384 - *5 - *4 - - *371 + - *386 responses: '200': description: Response @@ -51083,7 +51102,7 @@ paths: application/json: schema: type: array - items: *367 + items: *382 examples: default: value: @@ -51122,7 +51141,7 @@ paths: end_column: 50 classifications: - source - '403': *368 + '403': *383 '404': *26 '503': *104 x-github: @@ -51156,8 +51175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *178 - *179 - *5 @@ -51168,12 +51187,12 @@ paths: for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *360 + schema: *375 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &374 + schema: &389 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -51194,23 +51213,23 @@ paths: application/json: schema: type: array - items: &375 + items: &390 type: object properties: - ref: *360 - commit_sha: &377 + ref: *375 + commit_sha: &392 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *372 + analysis_key: *387 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *373 + category: *388 error: type: string example: error reading field xyz @@ -51234,8 +51253,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *374 - tool: *366 + sarif_id: *389 + tool: *381 deletable: type: boolean warning: @@ -51296,7 +51315,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *368 + '403': *383 '404': *26 '503': *104 x-github: @@ -51332,8 +51351,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -51346,7 +51365,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *390 examples: response: summary: application/json response @@ -51400,7 +51419,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *368 + '403': *383 '404': *26 '503': *104 x-github: @@ -51482,8 +51501,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -51536,7 +51555,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *34 - '403': *376 + '403': *391 '404': *26 '503': *104 x-github: @@ -51558,8 +51577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -51621,7 +51640,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *368 + '403': *383 '404': *26 '503': *104 x-github: @@ -51642,8 +51661,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -51714,7 +51733,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *376 + '403': *391 '404': *26 '409': description: Response if there is already a validation run in progress with @@ -51785,8 +51804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -51794,7 +51813,7 @@ paths: schema: type: object properties: - commit_sha: *377 + commit_sha: *392 ref: type: string description: |- @@ -51847,7 +51866,7 @@ paths: schema: type: object properties: - id: *374 + id: *389 url: type: string description: The REST API URL for checking the status of the upload. @@ -51861,7 +51880,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *376 + '403': *391 '404': *26 '413': description: Payload Too Large if the sarif field is too large @@ -51884,8 +51903,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *282 - - *283 + - *297 + - *298 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -51931,7 +51950,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *368 + '403': *383 '404': description: Not Found if the sarif id does not match any upload '503': *104 @@ -51956,8 +51975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-codeowners-errors parameters: - - *282 - - *283 + - *297 + - *298 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -52080,8 +52099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *282 - - *283 + - *297 + - *298 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -52123,7 +52142,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &378 + properties: &393 login: type: string example: octocat @@ -52216,7 +52235,7 @@ paths: user_view_type: type: string example: public - required: &379 + required: &394 - avatar_url - events_url - followers_url @@ -52289,8 +52308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *282 - - *283 + - *297 + - *298 - *8 responses: '204': @@ -52327,8 +52346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *282 - - *283 + - *297 + - *298 - *8 requestBody: required: false @@ -52398,8 +52417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *282 - - *283 + - *297 + - *298 - *8 responses: '204': @@ -52431,8 +52450,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *282 - - *283 + - *297 + - *298 - *8 responses: '200': @@ -52453,8 +52472,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *378 - required: *379 + properties: *393 + required: *394 nullable: true required: - permission @@ -52509,8 +52528,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -52520,7 +52539,7 @@ paths: application/json: schema: type: array - items: &380 + items: &395 title: Commit Comment description: Commit Comment type: object @@ -52578,7 +52597,7 @@ paths: - created_at - updated_at examples: - default: &383 + default: &398 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -52637,17 +52656,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#get-a-commit-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '200': description: Response content: application/json: - schema: *380 + schema: *395 examples: - default: &384 + default: &399 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -52704,8 +52723,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#update-a-commit-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -52728,7 +52747,7 @@ paths: description: Response content: application/json: - schema: *380 + schema: *395 examples: default: value: @@ -52779,8 +52798,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#delete-a-commit-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '204': @@ -52802,8 +52821,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). @@ -52830,9 +52849,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 '404': *26 @@ -52853,8 +52872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -52887,16 +52906,16 @@ paths: description: Reaction exists content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Reaction created content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '422': *35 x-github: githubCloudOnly: false @@ -52918,10 +52937,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *282 - - *283 + - *297 + - *298 - *120 - - *274 + - *289 responses: '204': description: Response @@ -52970,8 +52989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/commits#list-commits parameters: - - *282 - - *283 + - *297 + - *298 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -53027,9 +53046,9 @@ paths: application/json: schema: type: array - items: *381 + items: *396 examples: - default: &490 + default: &505 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -53122,9 +53141,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/commits#list-branches-for-head-commit parameters: - - *282 - - *283 - - &382 + - *297 + - *298 + - &397 name: commit_sha description: The SHA of the commit. in: path @@ -53196,9 +53215,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#list-commit-comments parameters: - - *282 - - *283 - - *382 + - *297 + - *298 + - *397 - *4 - *5 responses: @@ -53208,9 +53227,9 @@ paths: application/json: schema: type: array - items: *380 + items: *395 examples: - default: *383 + default: *398 headers: Link: *6 x-github: @@ -53238,9 +53257,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/comments#create-a-commit-comment parameters: - - *282 - - *283 - - *382 + - *297 + - *298 + - *397 requestBody: required: true content: @@ -53275,9 +53294,9 @@ paths: description: Response content: application/json: - schema: *380 + schema: *395 examples: - default: *384 + default: *399 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -53305,9 +53324,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *282 - - *283 - - *382 + - *297 + - *298 + - *397 - *4 - *5 responses: @@ -53317,7 +53336,7 @@ paths: application/json: schema: type: array - items: &479 + items: &494 title: Pull Request Simple description: Pull Request Simple type: object @@ -53423,8 +53442,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *385 - required: *386 + properties: *400 + required: *401 nullable: true active_lock_reason: type: string @@ -53469,7 +53488,7 @@ paths: nullable: true requested_teams: type: array - items: *284 + items: *299 nullable: true head: type: object @@ -53520,7 +53539,7 @@ paths: _links: type: object properties: - comments: &387 + comments: &402 title: Link description: Hypermedia Link type: object @@ -53529,13 +53548,13 @@ paths: type: string required: - href - commits: *387 - statuses: *387 - html: *387 - issue: *387 - review_comments: *387 - review_comment: *387 - self: *387 + commits: *402 + statuses: *402 + html: *402 + issue: *402 + review_comments: *402 + review_comment: *402 + self: *402 required: - comments - commits @@ -53546,7 +53565,7 @@ paths: - review_comment - self author_association: *108 - auto_merge: &482 + auto_merge: &497 title: Auto merge description: The status of auto merging a pull request. type: object @@ -53609,7 +53628,7 @@ paths: - author_association - auto_merge examples: - default: &480 + default: &495 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -54146,11 +54165,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/commits#get-a-commit parameters: - - *282 - - *283 + - *297 + - *298 - *5 - *4 - - &388 + - &403 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -54165,9 +54184,9 @@ paths: description: Response content: application/json: - schema: *381 + schema: *396 examples: - default: &464 + default: &479 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -54277,11 +54296,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *282 - - *283 - - *388 - - *389 - - *390 + - *297 + - *298 + - *403 + - *404 + - *405 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -54315,9 +54334,9 @@ paths: type: integer check_runs: type: array - items: *352 + items: *367 examples: - default: *391 + default: *406 headers: Link: *6 x-github: @@ -54342,9 +54361,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *282 - - *283 - - *388 + - *297 + - *298 + - *403 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -54352,7 +54371,7 @@ paths: schema: type: integer example: 1 - - *389 + - *404 - *4 - *5 responses: @@ -54370,7 +54389,7 @@ paths: type: integer check_suites: type: array - items: *357 + items: *372 examples: default: value: @@ -54570,9 +54589,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *282 - - *283 - - *388 + - *297 + - *298 + - *403 - *4 - *5 responses: @@ -54770,9 +54789,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *282 - - *283 - - *388 + - *297 + - *298 + - *403 - *4 - *5 responses: @@ -54782,7 +54801,7 @@ paths: application/json: schema: type: array - items: &537 + items: &538 title: Status description: The status of a commit. type: object @@ -54863,7 +54882,7 @@ paths: site_admin: false headers: Link: *6 - '301': *294 + '301': *309 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54931,8 +54950,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/commits#compare-two-commits parameters: - - *282 - - *283 + - *297 + - *298 - *5 - *4 - name: basehead @@ -54975,8 +54994,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *381 - merge_base_commit: *381 + base_commit: *396 + merge_base_commit: *396 status: type: string enum: @@ -54996,10 +55015,10 @@ paths: example: 6 commits: type: array - items: *381 + items: *396 files: type: array - items: *392 + items: *407 required: - url - html_url @@ -55278,8 +55297,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#get-repository-content parameters: - - *282 - - *283 + - *297 + - *298 - name: path description: path parameter in: path @@ -55422,7 +55441,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &393 + response-if-content-is-a-file: &408 summary: Response if content is a file value: type: file @@ -55554,7 +55573,7 @@ paths: - size - type - url - - &495 + - &510 title: Content File description: Content File type: object @@ -55755,7 +55774,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *393 + response-if-content-is-a-file: *408 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -55824,7 +55843,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *26 '403': *43 - '302': &499 + '302': &514 description: Found '304': *42 x-github: @@ -55848,8 +55867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#create-or-update-file-contents parameters: - - *282 - - *283 + - *297 + - *298 - name: path description: path parameter in: path @@ -55942,7 +55961,7 @@ paths: description: Response content: application/json: - schema: &394 + schema: &409 title: File Commit description: File Commit type: object @@ -56088,7 +56107,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *409 examples: example-for-creating-a-file: value: @@ -56139,7 +56158,7 @@ paths: schema: oneOf: - *24 - - &423 + - &438 description: Repository rule violation was detected type: object properties: @@ -56192,8 +56211,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#delete-a-file parameters: - - *282 - - *283 + - *297 + - *298 - name: path description: path parameter in: path @@ -56254,7 +56273,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *409 examples: default: value: @@ -56305,8 +56324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-contributors parameters: - - *282 - - *283 + - *297 + - *298 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -56429,8 +56448,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *186 - *187 - *188 @@ -56452,7 +56471,7 @@ paths: application/json: schema: type: array - items: &397 + items: &412 type: object description: A Dependabot alert. properties: @@ -56485,7 +56504,7 @@ paths: enum: - development - runtime - security_advisory: *395 + security_advisory: *410 security_vulnerability: *96 url: *97 html_url: *98 @@ -56516,7 +56535,7 @@ paths: nullable: true maxLength: 280 fixed_at: *102 - auto_dismissed_at: *396 + auto_dismissed_at: *411 required: - number - state @@ -56743,9 +56762,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *282 - - *283 - - &398 + - *297 + - *298 + - &413 name: alert_number in: path description: |- @@ -56760,7 +56779,7 @@ paths: description: Response content: application/json: - schema: *397 + schema: *412 examples: default: value: @@ -56864,9 +56883,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *282 - - *283 - - *398 + - *297 + - *298 + - *413 requestBody: required: true content: @@ -56911,7 +56930,7 @@ paths: description: Response content: application/json: - schema: *397 + schema: *412 examples: default: value: @@ -57040,8 +57059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/secrets#list-repository-secrets parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -57059,7 +57078,7 @@ paths: type: integer secrets: type: array - items: &401 + items: &416 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -57112,16 +57131,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *399 + schema: *414 examples: - default: *400 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57141,15 +57160,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/secrets#get-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 responses: '200': description: Response content: application/json: - schema: *401 + schema: *416 examples: default: value: @@ -57175,8 +57194,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 requestBody: required: true @@ -57229,8 +57248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *282 - - *283 + - *297 + - *298 - *163 responses: '204': @@ -57253,8 +57272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *282 - - *283 + - *297 + - *298 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -57414,8 +57433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -57640,8 +57659,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -57716,7 +57735,7 @@ paths: - version - url additionalProperties: false - metadata: &402 + metadata: &417 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -57749,7 +57768,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *402 + metadata: *417 resolved: type: object description: A collection of resolved package dependencies. @@ -57762,7 +57781,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *402 + metadata: *417 relationship: type: string description: A notation of whether a dependency is requested @@ -57891,8 +57910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/deployments#list-deployments parameters: - - *282 - - *283 + - *297 + - *298 - name: sha description: The SHA recorded at creation time. in: query @@ -57932,9 +57951,9 @@ paths: application/json: schema: type: array - items: *403 + items: *418 examples: - default: *404 + default: *419 headers: Link: *6 x-github: @@ -58000,8 +58019,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/deployments#create-a-deployment parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -58082,7 +58101,7 @@ paths: description: Response content: application/json: - schema: *403 + schema: *418 examples: simple-example: summary: Simple example @@ -58155,9 +58174,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/deployments#get-a-deployment parameters: - - *282 - - *283 - - &405 + - *297 + - *298 + - &420 name: deployment_id description: deployment_id parameter in: path @@ -58169,7 +58188,7 @@ paths: description: Response content: application/json: - schema: *403 + schema: *418 examples: default: value: @@ -58234,9 +58253,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/deployments#delete-a-deployment parameters: - - *282 - - *283 - - *405 + - *297 + - *298 + - *420 responses: '204': description: Response @@ -58258,9 +58277,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/statuses#list-deployment-statuses parameters: - - *282 - - *283 - - *405 + - *297 + - *298 + - *420 - *4 - *5 responses: @@ -58270,7 +58289,7 @@ paths: application/json: schema: type: array - items: &406 + items: &421 title: Deployment Status description: The status of a deployment. type: object @@ -58431,9 +58450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/statuses#create-a-deployment-status parameters: - - *282 - - *283 - - *405 + - *297 + - *298 + - *420 requestBody: required: true content: @@ -58508,9 +58527,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *421 examples: - default: &407 + default: &422 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -58566,9 +58585,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/statuses#get-a-deployment-status parameters: - - *282 - - *283 - - *405 + - *297 + - *298 + - *420 - name: status_id in: path required: true @@ -58579,9 +58598,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *421 examples: - default: *407 + default: *422 '404': *26 x-github: githubCloudOnly: false @@ -58606,8 +58625,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -58664,8 +58683,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/environments#list-environments parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -58682,7 +58701,7 @@ paths: type: integer environments: type: array - items: &409 + items: &424 title: Environment description: Details of a deployment environment type: object @@ -58734,7 +58753,7 @@ paths: type: type: string example: wait_timer - wait_timer: &411 + wait_timer: &426 type: integer example: 30 description: The amount of time to delay a job after @@ -58771,11 +58790,11 @@ paths: items: type: object properties: - type: *408 + type: *423 reviewer: anyOf: - *19 - - *284 + - *299 required: - id - node_id @@ -58795,7 +58814,7 @@ paths: - id - node_id - type - deployment_branch_policy: &412 + deployment_branch_policy: &427 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -58910,9 +58929,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/environments#get-an-environment parameters: - - *282 - - *283 - - &410 + - *297 + - *298 + - &425 name: environment_name in: path required: true @@ -58925,9 +58944,9 @@ paths: description: Response content: application/json: - schema: *409 + schema: *424 examples: - default: &413 + default: &428 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -59010,9 +59029,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/environments#create-or-update-an-environment parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 requestBody: required: false content: @@ -59021,7 +59040,7 @@ paths: type: object nullable: true properties: - wait_timer: *411 + wait_timer: *426 prevent_self_review: type: boolean example: false @@ -59038,13 +59057,13 @@ paths: items: type: object properties: - type: *408 + type: *423 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *412 + deployment_branch_policy: *427 additionalProperties: false examples: default: @@ -59064,9 +59083,9 @@ paths: description: Response content: application/json: - schema: *409 + schema: *424 examples: - default: *413 + default: *428 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -59090,9 +59109,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/environments#delete-an-environment parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 responses: '204': description: Default response @@ -59117,9 +59136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *4 - *5 responses: @@ -59137,7 +59156,7 @@ paths: example: 2 branch_policies: type: array - items: &414 + items: &429 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -59194,9 +59213,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 requestBody: required: true content: @@ -59242,9 +59261,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *429 examples: - example-wildcard: &415 + example-wildcard: &430 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -59286,10 +59305,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *282 - - *283 - - *410 - - &416 + - *297 + - *298 + - *425 + - &431 name: branch_policy_id in: path required: true @@ -59301,9 +59320,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *429 examples: - default: *415 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59322,10 +59341,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *282 - - *283 - - *410 - - *416 + - *297 + - *298 + - *425 + - *431 requestBody: required: true content: @@ -59353,9 +59372,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *429 examples: - default: *415 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59374,10 +59393,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *282 - - *283 - - *410 - - *416 + - *297 + - *298 + - *425 + - *431 responses: '204': description: Response @@ -59402,9 +59421,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *410 - - *283 - - *282 + - *425 + - *298 + - *297 responses: '200': description: List of deployment protection rules @@ -59420,7 +59439,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &417 + items: &432 title: Deployment protection rule description: Deployment protection rule type: object @@ -59439,7 +59458,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &418 + app: &433 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -59538,9 +59557,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *410 - - *283 - - *282 + - *425 + - *298 + - *297 requestBody: content: application/json: @@ -59561,9 +59580,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *417 + schema: *432 examples: - default: &419 + default: &434 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -59598,9 +59617,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *410 - - *283 - - *282 + - *425 + - *298 + - *297 - *5 - *4 responses: @@ -59619,7 +59638,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *418 + items: *433 examples: default: value: @@ -59654,10 +59673,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *282 - - *283 - - *410 - - &420 + - *297 + - *298 + - *425 + - &435 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -59669,9 +59688,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *432 examples: - default: *419 + default: *434 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59692,10 +59711,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *410 - - *283 - - *282 - - *420 + - *425 + - *298 + - *297 + - *435 responses: '204': description: Response @@ -59721,9 +59740,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#list-environment-secrets parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *4 - *5 responses: @@ -59741,9 +59760,9 @@ paths: type: integer secrets: type: array - items: *319 + items: *334 examples: - default: *320 + default: *335 headers: Link: *6 x-github: @@ -59768,17 +59787,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#get-an-environment-public-key parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 responses: '200': description: Response content: application/json: - schema: *321 + schema: *336 examples: - default: *322 + default: *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59800,18 +59819,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#get-an-environment-secret parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *163 responses: '200': description: Response content: application/json: - schema: *319 + schema: *334 examples: - default: *421 + default: *436 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59833,9 +59852,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *163 requestBody: required: true @@ -59893,9 +59912,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/secrets#delete-an-environment-secret parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *163 responses: '204': @@ -59921,10 +59940,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#list-environment-variables parameters: - - *282 - - *283 - - *410 - - *306 + - *297 + - *298 + - *425 + - *321 - *5 responses: '200': @@ -59941,9 +59960,9 @@ paths: type: integer variables: type: array - items: *323 + items: *338 examples: - default: *324 + default: *339 headers: Link: *6 x-github: @@ -59966,9 +59985,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#create-an-environment-variable parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 requestBody: required: true content: @@ -60020,18 +60039,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#get-an-environment-variable parameters: - - *282 - - *283 - - *410 + - *297 + - *298 + - *425 - *166 responses: '200': description: Response content: application/json: - schema: *323 + schema: *338 examples: - default: *422 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60052,10 +60071,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#update-an-environment-variable parameters: - - *282 - - *283 + - *297 + - *298 - *166 - - *410 + - *425 requestBody: required: true content: @@ -60097,10 +60116,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/actions/variables#delete-an-environment-variable parameters: - - *282 - - *283 + - *297 + - *298 - *166 - - *410 + - *425 responses: '204': description: Response @@ -60122,8 +60141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/events#list-repository-events parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -60200,8 +60219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/forks#list-forks parameters: - - *282 - - *283 + - *297 + - *298 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -60360,8 +60379,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/forks#create-a-fork parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -60393,9 +60412,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *308 examples: - default: *295 + default: *310 '400': *34 '422': *35 '403': *43 @@ -60416,8 +60435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/blobs#create-a-blob parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -60477,7 +60496,7 @@ paths: schema: oneOf: - *138 - - *423 + - *438 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60502,8 +60521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/blobs#get-a-blob parameters: - - *282 - - *283 + - *297 + - *298 - name: file_sha in: path required: true @@ -60602,8 +60621,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/commits#create-a-commit parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -60712,7 +60731,7 @@ paths: description: Response content: application/json: - schema: &424 + schema: &439 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -60919,15 +60938,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/commits#get-a-commit-object parameters: - - *282 - - *283 - - *382 + - *297 + - *298 + - *397 responses: '200': description: Response content: application/json: - schema: *424 + schema: *439 examples: default: value: @@ -60980,9 +60999,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/refs#list-matching-references parameters: - - *282 - - *283 - - &425 + - *297 + - *298 + - &440 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -60999,7 +61018,7 @@ paths: application/json: schema: type: array - items: &426 + items: &441 title: Git Reference description: Git references within a repository type: object @@ -61074,17 +61093,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/refs#get-a-reference parameters: - - *282 - - *283 - - *425 + - *297 + - *298 + - *440 responses: '200': description: Response content: application/json: - schema: *426 + schema: *441 examples: - default: &427 + default: &442 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -61113,8 +61132,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/refs#create-a-reference parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -61143,9 +61162,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *441 examples: - default: *427 + default: *442 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -61171,9 +61190,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/refs#update-a-reference parameters: - - *282 - - *283 - - *425 + - *297 + - *298 + - *440 requestBody: required: true content: @@ -61202,9 +61221,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *441 examples: - default: *427 + default: *442 '422': *35 '409': *140 x-github: @@ -61222,9 +61241,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/refs#delete-a-reference parameters: - - *282 - - *283 - - *425 + - *297 + - *298 + - *440 responses: '204': description: Response @@ -61279,8 +61298,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/tags#create-a-tag-object parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -61347,7 +61366,7 @@ paths: description: Response content: application/json: - schema: &429 + schema: &444 title: Git Tag description: Metadata for a Git tag type: object @@ -61398,7 +61417,7 @@ paths: - sha - type - url - verification: *428 + verification: *443 required: - sha - url @@ -61408,7 +61427,7 @@ paths: - tag - message examples: - default: &430 + default: &445 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -61478,8 +61497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/tags#get-a-tag parameters: - - *282 - - *283 + - *297 + - *298 - name: tag_sha in: path required: true @@ -61490,9 +61509,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *444 examples: - default: *430 + default: *445 '404': *26 '409': *140 x-github: @@ -61516,8 +61535,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/trees#create-a-tree parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -61590,7 +61609,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &446 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -61686,8 +61705,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/git/trees#get-a-tree parameters: - - *282 - - *283 + - *297 + - *298 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -61710,7 +61729,7 @@ paths: description: Response content: application/json: - schema: *431 + schema: *446 examples: default-response: summary: Default response @@ -61769,8 +61788,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#list-repository-webhooks parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -61780,7 +61799,7 @@ paths: application/json: schema: type: array - items: &432 + items: &447 title: Webhook description: Webhooks for repositories. type: object @@ -61834,7 +61853,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &644 + last_response: &645 title: Hook Response type: object properties: @@ -61908,8 +61927,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#create-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -61961,9 +61980,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *447 examples: - default: &433 + default: &448 value: type: Repository id: 12345678 @@ -62011,17 +62030,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#get-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 responses: '200': description: Response content: application/json: - schema: *432 + schema: *447 examples: - default: *433 + default: *448 '404': *26 x-github: githubCloudOnly: false @@ -62041,8 +62060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#update-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 requestBody: required: true @@ -62088,9 +62107,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *447 examples: - default: *433 + default: *448 '422': *35 '404': *26 x-github: @@ -62111,8 +62130,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 responses: '204': @@ -62137,8 +62156,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *3 responses: '200': @@ -62166,8 +62185,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *3 requestBody: required: false @@ -62212,8 +62231,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 - *4 - *202 @@ -62245,8 +62264,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 - *36 responses: @@ -62275,8 +62294,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 - *36 responses: @@ -62300,8 +62319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 responses: '204': @@ -62327,8 +62346,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *282 - - *283 + - *297 + - *298 - *3 responses: '204': @@ -62353,8 +62372,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -62362,8 +62381,8 @@ paths: application/json: schema: *39 examples: - default: *434 - '301': *294 + default: *449 + '301': *309 '404': *26 x-github: githubCloudOnly: false @@ -62382,8 +62401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/invitations#list-repository-invitations parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -62393,7 +62412,7 @@ paths: application/json: schema: type: array - items: &435 + items: &450 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -62456,7 +62475,7 @@ paths: - html_url - created_at examples: - default: &595 + default: &596 value: - id: 1 repository: @@ -62587,9 +62606,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *282 - - *283 - - &436 + - *297 + - *298 + - &451 name: invitation_id description: The unique identifier of the invitation. in: path @@ -62624,7 +62643,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *450 examples: default: value: @@ -62755,9 +62774,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *282 - - *283 - - *436 + - *297 + - *298 + - *451 responses: '204': description: Response @@ -62788,8 +62807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#list-repository-issues parameters: - - *282 - - *283 + - *297 + - *298 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -63010,7 +63029,7 @@ paths: state_reason: completed headers: Link: *6 - '301': *294 + '301': *309 '422': *35 '404': *26 x-github: @@ -63039,8 +63058,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#create-an-issue parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -63124,7 +63143,7 @@ paths: application/json: schema: *121 examples: - default: &442 + default: &457 value: id: 1 node_id: MDU6SXNzdWUx @@ -63308,9 +63327,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *282 - - *283 - - &488 + - *297 + - *298 + - &503 name: sort description: The property to sort the results by. in: query @@ -63340,9 +63359,9 @@ paths: application/json: schema: type: array - items: *437 + items: *452 examples: - default: &444 + default: &459 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -63400,17 +63419,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#get-an-issue-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '200': description: Response content: application/json: - schema: *437 + schema: *452 examples: - default: &438 + default: &453 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -63464,8 +63483,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#update-an-issue-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -63488,9 +63507,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *452 examples: - default: *438 + default: *453 '422': *35 x-github: githubCloudOnly: false @@ -63508,8 +63527,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#delete-an-issue-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '204': @@ -63530,8 +63549,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). @@ -63558,9 +63577,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 '404': *26 @@ -63581,8 +63600,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -63615,16 +63634,16 @@ paths: description: Reaction exists content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Reaction created content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '422': *35 x-github: githubCloudOnly: false @@ -63646,10 +63665,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *282 - - *283 + - *297 + - *298 - *120 - - *274 + - *289 responses: '204': description: Response @@ -63669,8 +63688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/events#list-issue-events-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -63680,7 +63699,7 @@ paths: application/json: schema: type: array - items: &441 + items: &456 title: Issue Event description: Issue Event type: object @@ -63723,8 +63742,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *439 - required: *440 + properties: *454 + required: *455 nullable: true label: title: Issue Event Label @@ -63768,7 +63787,7 @@ paths: properties: *17 required: *18 nullable: true - requested_team: *284 + requested_team: *299 dismissed_review: title: Issue Event Dismissed Review type: object @@ -64031,8 +64050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/events#get-an-issue-event parameters: - - *282 - - *283 + - *297 + - *298 - name: event_id in: path required: true @@ -64043,7 +64062,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *456 examples: default: value: @@ -64270,9 +64289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue parameters: - - *282 - - *283 - - &443 + - *297 + - *298 + - &458 name: issue_number description: The number that identifies the issue. in: path @@ -64286,8 +64305,8 @@ paths: application/json: schema: *121 examples: - default: *442 - '301': *294 + default: *457 + '301': *309 '404': *26 '410': *233 '304': *42 @@ -64314,9 +64333,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#update-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: false content: @@ -64422,11 +64441,11 @@ paths: application/json: schema: *121 examples: - default: *442 + default: *457 '422': *35 '503': *104 '403': *43 - '301': *294 + '301': *309 '404': *26 '410': *233 x-github: @@ -64446,9 +64465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: false content: @@ -64476,7 +64495,7 @@ paths: application/json: schema: *121 examples: - default: *442 + default: *457 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64492,9 +64511,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: content: application/json: @@ -64521,7 +64540,7 @@ paths: application/json: schema: *121 examples: - default: *442 + default: *457 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64543,9 +64562,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - name: assignee in: path required: true @@ -64585,9 +64604,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#list-issue-comments parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - *111 - *4 - *5 @@ -64598,9 +64617,9 @@ paths: application/json: schema: type: array - items: *437 + items: *452 examples: - default: *444 + default: *459 headers: Link: *6 '404': *26 @@ -64633,9 +64652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/comments#create-an-issue-comment parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: true content: @@ -64657,9 +64676,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *452 examples: - default: *438 + default: *453 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -64686,9 +64705,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/events#list-issue-events parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - *4 - *5 responses: @@ -64702,7 +64721,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &447 + - &462 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -64756,7 +64775,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &448 + - &463 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -64892,7 +64911,7 @@ paths: - performed_via_github_app - assignee - assigner - - &449 + - &464 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -64943,7 +64962,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &450 + - &465 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -64994,7 +65013,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &451 + - &466 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -65048,7 +65067,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &452 + - &467 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -65082,7 +65101,7 @@ paths: properties: *106 required: *107 review_requester: *19 - requested_team: *284 + requested_team: *299 requested_reviewer: *19 required: - review_requester @@ -65095,7 +65114,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &453 + - &468 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -65129,7 +65148,7 @@ paths: properties: *106 required: *107 review_requester: *19 - requested_team: *284 + requested_team: *299 requested_reviewer: *19 required: - review_requester @@ -65142,7 +65161,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &454 + - &469 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -65202,7 +65221,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &455 + - &470 title: Locked Issue Event description: Locked Issue Event type: object @@ -65250,7 +65269,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &456 + - &471 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -65316,7 +65335,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &457 + - &472 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -65382,7 +65401,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &458 + - &473 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -65448,7 +65467,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &459 + - &474 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -65556,9 +65575,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#list-labels-for-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - *4 - *5 responses: @@ -65568,7 +65587,7 @@ paths: application/json: schema: type: array - items: &445 + items: &460 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -65615,7 +65634,7 @@ paths: - color - default examples: - default: &446 + default: &461 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -65633,7 +65652,7 @@ paths: default: false headers: Link: *6 - '301': *294 + '301': *309 '404': *26 '410': *233 x-github: @@ -65652,9 +65671,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#add-labels-to-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: false content: @@ -65713,10 +65732,10 @@ paths: application/json: schema: type: array - items: *445 + items: *460 examples: - default: *446 - '301': *294 + default: *461 + '301': *309 '404': *26 '410': *233 '422': *35 @@ -65735,9 +65754,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#set-labels-for-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: false content: @@ -65797,10 +65816,10 @@ paths: application/json: schema: type: array - items: *445 + items: *460 examples: - default: *446 - '301': *294 + default: *461 + '301': *309 '404': *26 '410': *233 '422': *35 @@ -65819,13 +65838,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 responses: '204': description: Response - '301': *294 + '301': *309 '404': *26 '410': *233 x-github: @@ -65846,9 +65865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - name: name in: path required: true @@ -65861,7 +65880,7 @@ paths: application/json: schema: type: array - items: *445 + items: *460 examples: default: value: @@ -65872,7 +65891,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *294 + '301': *309 '404': *26 '410': *233 x-github: @@ -65894,9 +65913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#lock-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: false content: @@ -65942,9 +65961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/issues#unlock-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 responses: '204': description: Response @@ -65966,9 +65985,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -65994,9 +66013,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 '404': *26 @@ -66018,9 +66037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 requestBody: required: true content: @@ -66052,16 +66071,16 @@ paths: description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '422': *35 x-github: githubCloudOnly: false @@ -66083,10 +66102,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *282 - - *283 - - *443 - - *274 + - *297 + - *298 + - *458 + - *289 responses: '204': description: Response @@ -66106,9 +66125,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *282 - - *283 - - *443 + - *297 + - *298 + - *458 - *4 - *5 responses: @@ -66123,19 +66142,19 @@ paths: description: Timeline Event type: object anyOf: - - *447 - - *448 - - *449 - - *450 - - *451 - - *452 - - *453 - - *454 - - *455 - - *456 - - *457 - - *458 - - *459 + - *462 + - *463 + - *464 + - *465 + - *466 + - *467 + - *468 + - *469 + - *470 + - *471 + - *472 + - *473 + - *474 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -66436,7 +66455,7 @@ paths: type: string comments: type: array - items: &483 + items: &498 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -66645,7 +66664,7 @@ paths: type: string comments: type: array - items: *380 + items: *395 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -66951,8 +66970,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -66962,7 +66981,7 @@ paths: application/json: schema: type: array - items: &460 + items: &475 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -67025,8 +67044,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -67062,9 +67081,9 @@ paths: description: Response content: application/json: - schema: *460 + schema: *475 examples: - default: &461 + default: &476 value: id: 1 key: ssh-rsa AAA... @@ -67097,9 +67116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *282 - - *283 - - &462 + - *297 + - *298 + - &477 name: key_id description: The unique identifier of the key. in: path @@ -67111,9 +67130,9 @@ paths: description: Response content: application/json: - schema: *460 + schema: *475 examples: - default: *461 + default: *476 '404': *26 x-github: githubCloudOnly: false @@ -67131,9 +67150,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *282 - - *283 - - *462 + - *297 + - *298 + - *477 responses: '204': description: Response @@ -67153,8 +67172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#list-labels-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -67164,9 +67183,9 @@ paths: application/json: schema: type: array - items: *445 + items: *460 examples: - default: *446 + default: *461 headers: Link: *6 '404': *26 @@ -67187,8 +67206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#create-a-label parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -67224,9 +67243,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *460 examples: - default: &463 + default: &478 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -67258,8 +67277,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#get-a-label parameters: - - *282 - - *283 + - *297 + - *298 - name: name in: path required: true @@ -67270,9 +67289,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *460 examples: - default: *463 + default: *478 '404': *26 x-github: githubCloudOnly: false @@ -67289,8 +67308,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#update-a-label parameters: - - *282 - - *283 + - *297 + - *298 - name: name in: path required: true @@ -67329,7 +67348,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *460 examples: default: value: @@ -67355,8 +67374,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#delete-a-label parameters: - - *282 - - *283 + - *297 + - *298 - name: name in: path required: true @@ -67382,8 +67401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-languages parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -67419,8 +67438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '202': *141 '403': @@ -67448,8 +67467,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -67475,9 +67494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *282 - - *283 - - *371 + - *297 + - *298 + - *386 responses: '200': description: Response @@ -67622,8 +67641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -67688,8 +67707,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/branches/branches#merge-a-branch parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -67723,9 +67742,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *381 + schema: *396 examples: - default: *464 + default: *479 '204': description: Response when already merged '404': @@ -67750,8 +67769,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/milestones#list-milestones parameters: - - *282 - - *283 + - *297 + - *298 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -67792,12 +67811,12 @@ paths: application/json: schema: type: array - items: &465 + items: &480 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *385 - required: *386 + properties: *400 + required: *401 examples: default: value: @@ -67853,8 +67872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/milestones#create-a-milestone parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -67894,9 +67913,9 @@ paths: description: Response content: application/json: - schema: *465 + schema: *480 examples: - default: &466 + default: &481 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -67955,9 +67974,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/milestones#get-a-milestone parameters: - - *282 - - *283 - - &467 + - *297 + - *298 + - &482 name: milestone_number description: The number that identifies the milestone. in: path @@ -67969,9 +67988,9 @@ paths: description: Response content: application/json: - schema: *465 + schema: *480 examples: - default: *466 + default: *481 '404': *26 x-github: githubCloudOnly: false @@ -67988,9 +68007,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/milestones#update-a-milestone parameters: - - *282 - - *283 - - *467 + - *297 + - *298 + - *482 requestBody: required: false content: @@ -68028,9 +68047,9 @@ paths: description: Response content: application/json: - schema: *465 + schema: *480 examples: - default: *466 + default: *481 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68046,9 +68065,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/milestones#delete-a-milestone parameters: - - *282 - - *283 - - *467 + - *297 + - *298 + - *482 responses: '204': description: Response @@ -68069,9 +68088,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *282 - - *283 - - *467 + - *297 + - *298 + - *482 - *4 - *5 responses: @@ -68081,9 +68100,9 @@ paths: application/json: schema: type: array - items: *445 + items: *460 examples: - default: *446 + default: *461 headers: Link: *6 x-github: @@ -68102,12 +68121,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *282 - - *283 - - *468 - - *469 + - *297 + - *298 + - *483 + - *484 - *111 - - *470 + - *485 - *4 - *5 responses: @@ -68119,7 +68138,7 @@ paths: type: array items: *131 examples: - default: *471 + default: *486 headers: Link: *6 x-github: @@ -68143,8 +68162,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -68202,14 +68221,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#get-a-apiname-pages-site parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: &472 + schema: &487 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -68334,7 +68353,7 @@ paths: - custom_404 - public examples: - default: &473 + default: &488 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -68375,8 +68394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#create-a-apiname-pages-site parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -68430,9 +68449,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *487 examples: - default: *473 + default: *488 '422': *35 '409': *140 x-github: @@ -68455,8 +68474,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -68555,8 +68574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -68582,8 +68601,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#list-apiname-pages-builds parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -68593,7 +68612,7 @@ paths: application/json: schema: type: array - items: &474 + items: &489 title: Page Build description: Page Build type: object @@ -68687,8 +68706,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#request-a-apiname-pages-build parameters: - - *282 - - *283 + - *297 + - *298 responses: '201': description: Response @@ -68733,16 +68752,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#get-latest-pages-build parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *474 + schema: *489 examples: - default: &475 + default: &490 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -68790,8 +68809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#get-apiname-pages-build parameters: - - *282 - - *283 + - *297 + - *298 - name: build_id in: path required: true @@ -68802,9 +68821,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *489 examples: - default: *475 + default: *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68824,8 +68843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#create-a-github-pages-deployment parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -68925,9 +68944,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *282 - - *283 - - &476 + - *297 + - *298 + - &491 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -68985,9 +69004,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *282 - - *283 - - *476 + - *297 + - *298 + - *491 responses: '204': *229 '404': *26 @@ -69010,8 +69029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/repo-pre-receive-hooks#list-pre-receive-hooks-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 - *9 @@ -69032,7 +69051,7 @@ paths: application/json: schema: type: array - items: &477 + items: &492 type: object properties: id: @@ -69066,17 +69085,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/repo-pre-receive-hooks#get-a-pre-receive-hook-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *16 responses: '200': description: Response content: application/json: - schema: *477 + schema: *492 examples: - default: &478 + default: &493 value: id: 42 name: Check Commits @@ -69098,15 +69117,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/repo-pre-receive-hooks#update-pre-receive-hook-enforcement-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *16 responses: '200': description: Response content: application/json: - schema: *477 + schema: *492 examples: default: value: @@ -69150,8 +69169,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/repo-pre-receive-hooks#remove-pre-receive-hook-enforcement-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - *16 responses: '200': @@ -69159,9 +69178,9 @@ paths: global level. content: application/json: - schema: *477 + schema: *492 examples: - default: *478 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69181,8 +69200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/projects#list-repository-projects parameters: - - *282 - - *283 + - *297 + - *298 - name: state description: Indicates the state of the projects to return. in: query @@ -69263,8 +69282,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/projects/projects#create-a-repository-project parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -69292,7 +69311,7 @@ paths: application/json: schema: *232 examples: - default: *291 + default: *306 '401': *41 '403': *43 '404': *26 @@ -69316,8 +69335,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -69356,8 +69375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -69419,8 +69438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#list-pull-requests parameters: - - *282 - - *283 + - *297 + - *298 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -69480,9 +69499,9 @@ paths: application/json: schema: type: array - items: *479 + items: *494 examples: - default: *480 + default: *495 headers: Link: *6 '304': *42 @@ -69514,8 +69533,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#create-a-pull-request parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -69580,7 +69599,7 @@ paths: description: Response content: application/json: - schema: &485 + schema: &500 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -69691,8 +69710,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *385 - required: *386 + properties: *400 + required: *401 nullable: true active_lock_reason: type: string @@ -69737,7 +69756,7 @@ paths: nullable: true requested_teams: type: array - items: *481 + items: *496 nullable: true head: type: object @@ -69776,14 +69795,14 @@ paths: _links: type: object properties: - comments: *387 - commits: *387 - statuses: *387 - html: *387 - issue: *387 - review_comments: *387 - review_comment: *387 - self: *387 + comments: *402 + commits: *402 + statuses: *402 + html: *402 + issue: *402 + review_comments: *402 + review_comment: *402 + self: *402 required: - comments - commits @@ -69794,7 +69813,7 @@ paths: - review_comment - self author_association: *108 - auto_merge: *482 + auto_merge: *497 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -69886,7 +69905,7 @@ paths: - merged_by - review_comments examples: - default: &486 + default: &501 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -70413,8 +70432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - name: sort in: query required: false @@ -70443,9 +70462,9 @@ paths: application/json: schema: type: array - items: *483 + items: *498 examples: - default: &489 + default: &504 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -70522,17 +70541,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '200': description: Response content: application/json: - schema: *483 + schema: *498 examples: - default: &484 + default: &499 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -70607,8 +70626,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -70631,9 +70650,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *498 examples: - default: *484 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70649,8 +70668,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *282 - - *283 + - *297 + - *298 - *120 responses: '204': @@ -70672,8 +70691,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). @@ -70700,9 +70719,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 '404': *26 @@ -70723,8 +70742,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *282 - - *283 + - *297 + - *298 - *120 requestBody: required: true @@ -70757,16 +70776,16 @@ paths: description: Reaction exists content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Reaction created content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '422': *35 x-github: githubCloudOnly: false @@ -70788,10 +70807,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *282 - - *283 + - *297 + - *298 - *120 - - *274 + - *289 responses: '204': description: Response @@ -70834,9 +70853,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#get-a-pull-request parameters: - - *282 - - *283 - - &487 + - *297 + - *298 + - &502 name: pull_number description: The number that identifies the pull request. in: path @@ -70849,9 +70868,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *485 + schema: *500 examples: - default: *486 + default: *501 '304': *42 '404': *26 '406': @@ -70886,9 +70905,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#update-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: false content: @@ -70930,9 +70949,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *500 examples: - default: *486 + default: *501 '422': *35 '403': *43 x-github: @@ -70960,10 +70979,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *282 - - *283 - - *487 - - *488 + - *297 + - *298 + - *502 + - *503 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -70983,9 +71002,9 @@ paths: application/json: schema: type: array - items: *483 + items: *498 examples: - default: *489 + default: *504 headers: Link: *6 x-github: @@ -71018,9 +71037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: true content: @@ -71125,7 +71144,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *498 examples: example-for-a-multi-line-comment: value: @@ -71213,9 +71232,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 - *120 requestBody: required: true @@ -71238,7 +71257,7 @@ paths: description: Response content: application/json: - schema: *483 + schema: *498 examples: default: value: @@ -71324,9 +71343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 - *4 - *5 responses: @@ -71336,9 +71355,9 @@ paths: application/json: schema: type: array - items: *381 + items: *396 examples: - default: *490 + default: *505 headers: Link: *6 x-github: @@ -71368,9 +71387,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#list-pull-requests-files parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 - *4 - *5 responses: @@ -71380,7 +71399,7 @@ paths: application/json: schema: type: array - items: *392 + items: *407 examples: default: value: @@ -71418,9 +71437,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 responses: '204': description: Response if pull request has been merged @@ -71443,9 +71462,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#merge-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: false content: @@ -71556,9 +71575,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 responses: '200': description: Response @@ -71574,7 +71593,7 @@ paths: items: *19 teams: type: array - items: *284 + items: *299 required: - users - teams @@ -71633,9 +71652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: false content: @@ -71672,7 +71691,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *494 examples: default: value: @@ -72208,9 +72227,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: true content: @@ -72244,7 +72263,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *494 examples: default: value: @@ -72749,9 +72768,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 - *4 - *5 responses: @@ -72761,7 +72780,7 @@ paths: application/json: schema: type: array - items: &491 + items: &506 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -72912,9 +72931,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: false content: @@ -73000,9 +73019,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *506 examples: - default: &493 + default: &508 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -73065,10 +73084,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 - - &492 + - *297 + - *298 + - *502 + - &507 name: review_id description: The unique identifier of the review. in: path @@ -73080,9 +73099,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *506 examples: - default: &494 + default: &509 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -73141,10 +73160,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 - - *492 + - *297 + - *298 + - *502 + - *507 requestBody: required: true content: @@ -73167,7 +73186,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *506 examples: default: value: @@ -73229,18 +73248,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 - - *492 + - *297 + - *298 + - *502 + - *507 responses: '200': description: Response content: application/json: - schema: *491 + schema: *506 examples: - default: *493 + default: *508 '422': *27 '404': *26 x-github: @@ -73267,10 +73286,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *282 - - *283 - - *487 - - *492 + - *297 + - *298 + - *502 + - *507 - *4 - *5 responses: @@ -73353,9 +73372,9 @@ paths: _links: type: object properties: - self: *387 - html: *387 - pull_request: *387 + self: *402 + html: *402 + pull_request: *402 required: - self - html @@ -73505,10 +73524,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 - - *492 + - *297 + - *298 + - *502 + - *507 requestBody: required: true content: @@ -73536,7 +73555,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *506 examples: default: value: @@ -73599,10 +73618,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *282 - - *283 - - *487 - - *492 + - *297 + - *298 + - *502 + - *507 requestBody: required: true content: @@ -73637,9 +73656,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *506 examples: - default: *494 + default: *509 '404': *26 '422': *27 '403': *43 @@ -73661,9 +73680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *282 - - *283 - - *487 + - *297 + - *298 + - *502 requestBody: required: false content: @@ -73726,8 +73745,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#get-a-repository-readme parameters: - - *282 - - *283 + - *297 + - *298 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -73740,9 +73759,9 @@ paths: description: Response content: application/json: - schema: *495 + schema: *510 examples: - default: &496 + default: &511 value: type: file encoding: base64 @@ -73784,8 +73803,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *282 - - *283 + - *297 + - *298 - name: dir description: The alternate path to look for a README file in: path @@ -73805,9 +73824,9 @@ paths: description: Response content: application/json: - schema: *495 + schema: *510 examples: - default: *496 + default: *511 '404': *26 '422': *35 x-github: @@ -73829,8 +73848,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#list-releases parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -73840,7 +73859,7 @@ paths: application/json: schema: type: array - items: &497 + items: &512 title: Release description: A release. type: object @@ -73907,7 +73926,7 @@ paths: author: *19 assets: type: array - items: &498 + items: &513 title: Release Asset description: Data related to a release. type: object @@ -74090,8 +74109,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#create-a-release parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -74161,9 +74180,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *512 examples: - default: &502 + default: &517 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -74263,9 +74282,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/assets#get-a-release-asset parameters: - - *282 - - *283 - - &500 + - *297 + - *298 + - &515 name: asset_id description: The unique identifier of the asset. in: path @@ -74277,9 +74296,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *513 examples: - default: &501 + default: &516 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -74314,7 +74333,7 @@ paths: type: User site_admin: false '404': *26 - '302': *499 + '302': *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74330,9 +74349,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/assets#update-a-release-asset parameters: - - *282 - - *283 - - *500 + - *297 + - *298 + - *515 requestBody: required: false content: @@ -74360,9 +74379,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *513 examples: - default: *501 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74378,9 +74397,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/assets#delete-a-release-asset parameters: - - *282 - - *283 - - *500 + - *297 + - *298 + - *515 responses: '204': description: Response @@ -74404,8 +74423,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -74490,16 +74509,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#get-the-latest-release parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *497 + schema: *512 examples: - default: *502 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74516,8 +74535,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#get-a-release-by-tag-name parameters: - - *282 - - *283 + - *297 + - *298 - name: tag description: tag parameter in: path @@ -74530,9 +74549,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *512 examples: - default: *502 + default: *517 '404': *26 x-github: githubCloudOnly: false @@ -74554,9 +74573,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#get-a-release parameters: - - *282 - - *283 - - &503 + - *297 + - *298 + - &518 name: release_id description: The unique identifier of the release. in: path @@ -74570,9 +74589,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-server@3.13/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *497 + schema: *512 examples: - default: *502 + default: *517 '401': description: Unauthorized x-github: @@ -74590,9 +74609,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#update-a-release parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 requestBody: required: false content: @@ -74649,9 +74668,9 @@ paths: description: Response content: application/json: - schema: *497 + schema: *512 examples: - default: *502 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74667,9 +74686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/releases#delete-a-release parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 responses: '204': description: Response @@ -74689,9 +74708,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/releases/assets#list-release-assets parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 - *4 - *5 responses: @@ -74701,7 +74720,7 @@ paths: application/json: schema: type: array - items: *498 + items: *513 examples: default: value: @@ -74783,9 +74802,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 - name: name in: query required: true @@ -74811,7 +74830,7 @@ paths: description: Response for successful upload content: application/json: - schema: *498 + schema: *513 examples: response-for-successful-upload: value: @@ -74866,9 +74885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -74892,9 +74911,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 '404': *26 @@ -74915,9 +74934,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *282 - - *283 - - *503 + - *297 + - *298 + - *518 requestBody: required: true content: @@ -74947,16 +74966,16 @@ paths: description: Reaction exists content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '201': description: Reaction created content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 '422': *35 x-github: githubCloudOnly: false @@ -74978,10 +74997,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#delete-a-release-reaction parameters: - - *282 - - *283 - - *503 - - *274 + - *297 + - *298 + - *518 + - *289 responses: '204': description: Response @@ -75001,8 +75020,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-cache-replication-status parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -75077,9 +75096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/rules#get-rules-for-a-branch parameters: - - *282 - - *283 - - *340 + - *297 + - *298 + - *355 - *4 - *5 responses: @@ -75095,8 +75114,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *504 - - &506 + - *247 + - &519 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -75116,47 +75135,47 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *505 - - *506 + - *248 + - *519 - allOf: - - *507 - - *506 + - *249 + - *519 - allOf: - - *508 - - *506 + - *250 + - *519 - allOf: - - *509 - - *506 + - *251 + - *519 - allOf: - - *510 - - *506 + - *252 + - *519 - allOf: - - *511 - - *506 + - *253 + - *519 - allOf: - - *512 - - *506 + - *254 + - *519 - allOf: - - *513 - - *506 + - *255 + - *519 - allOf: - - *514 - - *506 + - *256 + - *519 - allOf: - - *515 - - *506 + - *257 + - *519 - allOf: - - *516 - - *506 + - *258 + - *519 - allOf: - - *517 - - *506 + - *259 + - *519 - allOf: - - *518 - - *506 + - *260 + - *519 - allOf: + - *261 - *519 - - *506 examples: default: value: @@ -75195,8 +75214,8 @@ paths: category: repos subcategory: rules parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 - name: includes_parents @@ -75215,7 +75234,7 @@ paths: application/json: schema: type: array - items: *248 + items: *262 examples: default: value: @@ -75262,8 +75281,8 @@ paths: category: repos subcategory: rules parameters: - - *282 - - *283 + - *297 + - *298 requestBody: description: Request body required: true @@ -75292,7 +75311,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *247 + items: *521 required: - name - enforcement @@ -75323,9 +75342,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: &530 + default: &531 value: id: 42 name: super cool ruleset @@ -75372,12 +75391,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *282 - - *283 - - *521 + - *297 + - *298 - *522 - *523 - *524 + - *525 - *4 - *5 responses: @@ -75385,9 +75404,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 '404': *26 '500': *220 x-github: @@ -75408,17 +75427,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *282 - - *283 - - *527 + - *297 + - *298 + - *528 responses: '200': description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 '404': *26 '500': *220 x-github: @@ -75446,8 +75465,8 @@ paths: category: repos subcategory: rules parameters: - - *282 - - *283 + - *297 + - *298 - name: ruleset_id description: The ID of the ruleset. in: path @@ -75467,9 +75486,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: *530 + default: *531 '404': *26 '500': *220 put: @@ -75487,8 +75506,8 @@ paths: category: repos subcategory: rules parameters: - - *282 - - *283 + - *297 + - *298 - name: ruleset_id description: The ID of the ruleset. in: path @@ -75522,7 +75541,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *247 + items: *521 examples: default: value: @@ -75550,9 +75569,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *262 examples: - default: *530 + default: *531 '404': *26 '500': *220 delete: @@ -75570,8 +75589,8 @@ paths: category: repos subcategory: rules parameters: - - *282 - - *283 + - *297 + - *298 - name: ruleset_id description: The ID of the ruleset. in: path @@ -75599,18 +75618,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *282 - - *283 - - *250 - - *251 - - *252 - - *253 + - *297 + - *298 + - *265 + - *266 + - *267 + - *268 - *9 - *5 - *4 - - *531 - *532 - - *254 + - *533 + - *269 responses: '200': description: Response @@ -75618,7 +75637,7 @@ paths: application/json: schema: type: array - items: &535 + items: &536 type: object properties: number: *93 @@ -75637,8 +75656,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *533 - resolution: *534 + state: *534 + resolution: *535 resolved_at: type: string format: date-time @@ -75816,15 +75835,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *282 - - *283 - - *369 + - *297 + - *298 + - *384 responses: '200': description: Response content: application/json: - schema: *535 + schema: *536 examples: default: value: @@ -75864,9 +75883,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *282 - - *283 - - *369 + - *297 + - *298 + - *384 requestBody: required: true content: @@ -75874,8 +75893,8 @@ paths: schema: type: object properties: - state: *533 - resolution: *534 + state: *534 + resolution: *535 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -75893,7 +75912,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: default: value: @@ -75960,9 +75979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *282 - - *283 - - *369 + - *297 + - *298 + - *384 - *5 - *4 responses: @@ -75973,7 +75992,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &662 + items: &663 type: object properties: type: @@ -76280,8 +76299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#list-stargazers parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -76377,8 +76396,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -76387,7 +76406,7 @@ paths: application/json: schema: type: array - items: &536 + items: &537 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -76418,8 +76437,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -76492,8 +76511,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -76589,8 +76608,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -76744,8 +76763,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -76755,7 +76774,7 @@ paths: application/json: schema: type: array - items: *536 + items: *537 examples: default: value: @@ -76788,8 +76807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/commits/statuses#create-a-commit-status parameters: - - *282 - - *283 + - *297 + - *298 - name: sha in: path required: true @@ -76843,7 +76862,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: default: value: @@ -76897,8 +76916,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/watching#list-watchers parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -76930,14 +76949,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/watching#get-a-repository-subscription parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &538 + schema: &539 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -77005,8 +77024,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/watching#set-a-repository-subscription parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -77032,7 +77051,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -77059,8 +77078,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/watching#delete-a-repository-subscription parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -77080,8 +77099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-tags parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -77160,8 +77179,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '200': description: Response @@ -77169,7 +77188,7 @@ paths: application/json: schema: type: array - items: &539 + items: &540 title: Tag protection description: Tag protection type: object @@ -77221,8 +77240,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -77245,7 +77264,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *540 examples: default: value: @@ -77276,8 +77295,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -77314,8 +77333,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *282 - - *283 + - *297 + - *298 - name: ref in: path required: true @@ -77351,8 +77370,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#list-repository-teams parameters: - - *282 - - *283 + - *297 + - *298 - *4 - *5 responses: @@ -77362,9 +77381,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - default: *262 + default: *277 headers: Link: *6 '404': *26 @@ -77384,8 +77403,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#get-all-repository-topics parameters: - - *282 - - *283 + - *297 + - *298 - *5 - *4 responses: @@ -77393,7 +77412,7 @@ paths: description: Response content: application/json: - schema: &540 + schema: &541 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -77405,7 +77424,7 @@ paths: required: - names examples: - default: &541 + default: &542 value: names: - octocat @@ -77428,8 +77447,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#replace-all-repository-topics parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -77460,9 +77479,9 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: *541 + default: *542 '404': *26 '422': *27 x-github: @@ -77485,8 +77504,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#transfer-a-repository parameters: - - *282 - - *283 + - *297 + - *298 requestBody: required: true content: @@ -77760,8 +77779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -77784,8 +77803,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#enable-vulnerability-alerts parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -77807,8 +77826,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/repos/repos#disable-vulnerability-alerts parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -77834,8 +77853,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *282 - - *283 + - *297 + - *298 - name: ref in: path required: true @@ -77927,9 +77946,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *308 examples: - default: *295 + default: *310 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -78103,7 +78122,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &549 + - &550 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -78112,7 +78131,7 @@ paths: schema: type: string example: members - - &554 + - &555 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -78123,7 +78142,7 @@ paths: default: 1 format: int32 example: 1 - - &555 + - &556 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -78165,7 +78184,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &543 + items: &544 allOf: - type: object required: @@ -78240,7 +78259,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: &556 + meta: &557 type: object description: The metadata associated with the creation/updates to the user. @@ -78300,31 +78319,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &544 + '400': &545 description: Bad request content: application/json: - schema: *542 + schema: *543 application/scim+json: - schema: *542 - '401': &545 + schema: *543 + '401': &546 description: Authorization failure - '403': &546 + '403': &547 description: Permission denied - '429': &547 + '429': &548 description: Too many requests content: application/json: - schema: *542 + schema: *543 application/scim+json: - schema: *542 - '500': &548 + schema: *543 + '500': &549 description: Internal server error content: application/json: - schema: *542 + schema: *543 application/scim+json: - schema: *542 + schema: *543 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78351,7 +78370,7 @@ paths: required: true content: application/json: - schema: &552 + schema: &553 type: object required: - schemas @@ -78407,9 +78426,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *543 + schema: *544 examples: - group: &550 + group: &551 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -78428,13 +78447,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': *544 - '401': *545 - '403': *546 - '409': &553 + '400': *545 + '401': *546 + '403': *547 + '409': &554 description: Duplicate record detected - '429': *547 - '500': *548 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78455,7 +78474,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &551 + - &552 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -78463,22 +78482,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *549 + - *550 - *65 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *543 + schema: *544 examples: - default: *550 - '400': *544 - '401': *545 - '403': *546 + default: *551 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '429': *547 - '500': *548 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78500,13 +78519,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *551 + - *552 - *65 requestBody: required: true content: application/json: - schema: *552 + schema: *553 examples: group: summary: Group @@ -78532,17 +78551,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *543 + schema: *544 examples: - group: *550 - groupWithMembers: *550 - '400': *544 - '401': *545 - '403': *546 + group: *551 + groupWithMembers: *551 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '409': *553 - '429': *547 - '500': *548 + '409': *554 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78566,13 +78585,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *551 + - *552 - *65 requestBody: required: true content: application/json: - schema: &563 + schema: &564 type: object required: - Operations @@ -78632,17 +78651,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *543 + schema: *544 examples: - updateGroup: *550 - addMembers: *550 - '400': *544 - '401': *545 - '403': *546 + updateGroup: *551 + addMembers: *551 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '409': *553 - '429': *547 - '500': *548 + '409': *554 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78662,17 +78681,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *551 + - *552 - *65 responses: '204': description: Group was deleted, no content - '400': *544 - '401': *545 - '403': *546 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '429': *547 - '500': *548 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78709,8 +78728,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *554 - *555 + - *556 - *65 responses: '200': @@ -78743,7 +78762,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &558 + items: &559 allOf: - type: object required: @@ -78822,7 +78841,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &557 + roles: &558 type: array description: The roles assigned to the user. items: @@ -78878,7 +78897,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *556 + meta: *557 startIndex: type: integer description: A starting index for the returned page @@ -78915,11 +78934,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *544 - '401': *545 - '403': *546 - '429': *547 - '500': *548 + '400': *545 + '401': *546 + '403': *547 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -78948,7 +78967,7 @@ paths: required: true content: application/json: - schema: &561 + schema: &562 type: object required: - schemas @@ -79030,9 +79049,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *557 + roles: *558 examples: - user: &562 + user: &563 summary: User value: schemas: @@ -79079,9 +79098,9 @@ paths: description: User has been created content: application/scim+json: - schema: *558 + schema: *559 examples: - user: &559 + user: &560 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -79107,13 +79126,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: *559 - '400': *544 - '401': *545 - '403': *546 - '409': *553 - '429': *547 - '500': *548 + enterpriseOwner: *560 + '400': *545 + '401': *546 + '403': *547 + '409': *554 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79134,7 +79153,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &560 + - &561 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -79147,15 +79166,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *558 + schema: *559 examples: - default: *559 - '400': *544 - '401': *545 - '403': *546 + default: *560 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '429': *547 - '500': *548 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79180,30 +79199,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *560 + - *561 - *65 requestBody: required: true content: application/json: - schema: *561 + schema: *562 examples: - user: *562 + user: *563 responses: '200': description: User was updated content: application/scim+json: - schema: *558 + schema: *559 examples: - user: *559 - '400': *544 - '401': *545 - '403': *546 + user: *560 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '409': *553 - '429': *547 - '500': *548 + '409': *554 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79241,13 +79260,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *560 + - *561 - *65 requestBody: required: true content: application/json: - schema: *563 + schema: *564 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -79287,18 +79306,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *558 - examples: - userMultiValuedProperties: *559 - userSingleValuedProperties: *559 - disableUser: *559 - '400': *544 - '401': *545 - '403': *546 + schema: *559 + examples: + userMultiValuedProperties: *560 + userSingleValuedProperties: *560 + disableUser: *560 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '409': *553 - '429': *547 - '500': *548 + '409': *554 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79318,17 +79337,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *560 + - *561 - *65 responses: '204': description: User was deleted, no content - '400': *544 - '401': *545 - '403': *546 + '400': *545 + '401': *546 + '403': *547 '404': *26 - '429': *547 - '500': *548 + '429': *548 + '500': *549 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79455,7 +79474,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &564 + text_matches: &565 title: Search Result Text Matches type: array items: @@ -79618,7 +79637,7 @@ paths: enum: - author-date - committer-date - - &565 + - &566 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 @@ -79689,7 +79708,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *338 + properties: *353 nullable: true comment_count: type: integer @@ -79709,7 +79728,7 @@ paths: url: type: string format: uri - verification: *428 + verification: *443 required: - author - committer @@ -79728,7 +79747,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *338 + properties: *353 nullable: true parents: type: array @@ -79746,7 +79765,7 @@ paths: type: number node_id: type: string - text_matches: *564 + text_matches: *565 required: - sha - node_id @@ -79939,7 +79958,7 @@ paths: - interactions - created - updated - - *565 + - *566 - *4 - *5 - name: advanced_search @@ -80066,8 +80085,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *385 - required: *386 + properties: *400 + required: *401 nullable: true comments: type: integer @@ -80081,7 +80100,7 @@ paths: type: string format: date-time nullable: true - text_matches: *564 + text_matches: *565 pull_request: type: object properties: @@ -80125,7 +80144,7 @@ paths: timeline_url: type: string format: uri - type: *566 + type: *567 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -80306,7 +80325,7 @@ paths: enum: - created - updated - - *565 + - *566 - *4 - *5 responses: @@ -80350,7 +80369,7 @@ paths: nullable: true score: type: number - text_matches: *564 + text_matches: *565 required: - id - node_id @@ -80436,7 +80455,7 @@ paths: - forks - help-wanted-issues - updated - - *565 + - *566 - *4 - *5 responses: @@ -80675,7 +80694,7 @@ paths: - admin - pull - push - text_matches: *564 + text_matches: *565 temp_clone_token: type: string allow_merge_commit: @@ -80976,7 +80995,7 @@ paths: type: string format: uri nullable: true - text_matches: *564 + text_matches: *565 related: type: array nullable: true @@ -81169,7 +81188,7 @@ paths: - followers - repositories - joined - - *565 + - *566 - *4 - *5 responses: @@ -81273,7 +81292,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *564 + text_matches: *565 blog: type: string nullable: true @@ -81468,7 +81487,7 @@ paths: description: Response content: application/json: - schema: &567 + schema: &568 type: object properties: status: @@ -81488,7 +81507,7 @@ paths: - name - number examples: - default: &568 + default: &569 value: status: scheduled scheduled_time: Tuesday, January 22 at 15:34 -0800 @@ -81533,9 +81552,9 @@ paths: description: Response content: application/json: - schema: *567 + schema: *568 examples: - default: *568 + default: *569 '401': description: Unauthorized requestBody: @@ -82099,7 +82118,7 @@ paths: application/json: schema: type: array - items: &569 + items: &570 type: object properties: key: @@ -82107,7 +82126,7 @@ paths: pretty-print: type: string examples: - default: &570 + default: &571 value: - key: ssh-rsa AAAAB3NzaC1yc2EAAAAB... pretty-print: ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64 @@ -82150,9 +82169,9 @@ paths: application/json: schema: type: array - items: *569 + items: *570 examples: - default: *570 + default: *571 '401': description: Unauthorized requestBody: @@ -82204,9 +82223,9 @@ paths: application/json: schema: type: array - items: *569 + items: *570 examples: - default: *570 + default: *571 '401': description: Unauthorized requestBody: @@ -82363,9 +82382,9 @@ paths: description: Response content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '404': *26 x-github: githubCloudOnly: false @@ -82455,16 +82474,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '201': description: Response content: application/json: - schema: *263 + schema: *278 examples: - default: *264 + default: *279 '404': *26 '422': *35 '403': *43 @@ -82534,9 +82553,9 @@ paths: application/json: schema: type: array - items: *265 + items: *280 examples: - default: *571 + default: *572 headers: Link: *6 x-github: @@ -82599,9 +82618,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: *266 + default: *281 x-github: triggersNotification: true githubCloudOnly: false @@ -82629,15 +82648,15 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#get-a-discussion-legacy parameters: - *7 - - *267 + - *282 responses: '200': description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: *266 + default: *281 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82663,7 +82682,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#update-a-discussion-legacy parameters: - *7 - - *267 + - *282 requestBody: required: false content: @@ -82686,9 +82705,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *280 examples: - default: *572 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82714,7 +82733,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussions#delete-a-discussion-legacy parameters: - *7 - - *267 + - *282 responses: '204': description: Response @@ -82744,7 +82763,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - *7 - - *267 + - *282 - *9 - *4 - *5 @@ -82755,9 +82774,9 @@ paths: application/json: schema: type: array - items: *268 + items: *283 examples: - default: *573 + default: *574 headers: Link: *6 x-github: @@ -82787,7 +82806,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - *7 - - *267 + - *282 requestBody: required: true content: @@ -82809,9 +82828,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: *269 + default: *284 x-github: triggersNotification: true githubCloudOnly: false @@ -82839,16 +82858,16 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - *7 - - *267 - - *270 + - *282 + - *285 responses: '200': description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: *269 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82874,8 +82893,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - *7 - - *267 - - *270 + - *282 + - *285 requestBody: required: true content: @@ -82897,9 +82916,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *283 examples: - default: *574 + default: *575 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82925,8 +82944,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - *7 - - *267 - - *270 + - *282 + - *285 responses: '204': description: Response @@ -82956,8 +82975,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - *7 - - *267 - - *270 + - *282 + - *285 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -82983,9 +83002,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 x-github: @@ -83015,8 +83034,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - *7 - - *267 - - *270 + - *282 + - *285 requestBody: required: true content: @@ -83048,9 +83067,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83077,7 +83096,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - *7 - - *267 + - *282 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -83103,9 +83122,9 @@ paths: application/json: schema: type: array - items: *271 + items: *286 examples: - default: *273 + default: *288 headers: Link: *6 x-github: @@ -83135,7 +83154,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - *7 - - *267 + - *282 requestBody: required: true content: @@ -83167,9 +83186,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *286 examples: - default: *272 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -83365,9 +83384,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *294 examples: - response-if-user-is-a-team-maintainer: *575 + response-if-user-is-a-team-maintainer: *576 '404': *26 x-github: githubCloudOnly: false @@ -83426,9 +83445,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *294 examples: - response-if-users-membership-with-team-is-now-pending: *576 + response-if-users-membership-with-team-is-now-pending: *577 '403': description: Forbidden if team synchronization is set up '422': @@ -83502,9 +83521,9 @@ paths: application/json: schema: type: array - items: *280 + items: *295 examples: - default: *577 + default: *578 headers: Link: *6 '404': *26 @@ -83532,15 +83551,15 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - *7 - - *281 + - *296 responses: '200': description: Response content: application/json: - schema: *280 + schema: *295 examples: - default: *578 + default: *579 '404': description: Not Found if project is not managed by this team x-github: @@ -83566,7 +83585,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - *7 - - *281 + - *296 requestBody: required: false content: @@ -83635,7 +83654,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - *7 - - *281 + - *296 responses: '204': description: Response @@ -83705,14 +83724,14 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - *7 - - *282 - - *283 + - *297 + - *298 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *579 + schema: *580 examples: alternative-response-with-extra-repository-information: value: @@ -83864,8 +83883,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - *7 - - *282 - - *283 + - *297 + - *298 requestBody: required: false content: @@ -83916,8 +83935,8 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - *7 - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -83952,9 +83971,9 @@ paths: application/json: schema: type: array - items: *284 + items: *299 examples: - response-if-child-teams-exist: *580 + response-if-child-teams-exist: *581 headers: Link: *6 '404': *26 @@ -83987,7 +84006,7 @@ paths: application/json: schema: oneOf: - - &582 + - &583 title: Private User description: Private User type: object @@ -84190,7 +84209,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *581 + - *582 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -84341,7 +84360,7 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: default: value: @@ -84419,7 +84438,7 @@ paths: type: array items: *214 examples: - default: &592 + default: &593 value: - id: 197 name: hello_docker @@ -84506,7 +84525,7 @@ paths: application/json: schema: type: array - items: &583 + items: &584 title: Email description: Email type: object @@ -84531,7 +84550,7 @@ paths: - verified - visibility examples: - default: &594 + default: &595 value: - email: octocat@github.com verified: true @@ -84606,7 +84625,7 @@ paths: application/json: schema: type: array - items: *583 + items: *584 examples: default: value: @@ -84862,7 +84881,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: GPG Key description: A unique encryption key type: object @@ -84993,7 +85012,7 @@ paths: - subkeys - revoked examples: - default: &604 + default: &605 value: - id: 3 name: Octocat's GPG Key @@ -85078,9 +85097,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &585 + default: &586 value: id: 3 name: Octocat's GPG Key @@ -85137,7 +85156,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &586 + - &587 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -85149,9 +85168,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *585 + default: *586 '404': *26 '304': *42 '403': *43 @@ -85174,7 +85193,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *586 + - *587 responses: '204': description: Response @@ -85365,7 +85384,7 @@ paths: type: array items: *84 examples: - default: *587 + default: *588 headers: Link: *6 '404': *26 @@ -85541,7 +85560,7 @@ paths: application/json: schema: type: array - items: &588 + items: &589 title: Key description: Key type: object @@ -85638,9 +85657,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: - default: &589 + default: &590 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -85673,15 +85692,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *462 + - *477 responses: '200': description: Response content: application/json: - schema: *588 + schema: *589 examples: - default: *589 + default: *590 '404': *26 '304': *42 '403': *43 @@ -85704,7 +85723,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *462 + - *477 responses: '204': description: Response @@ -86524,7 +86543,7 @@ paths: type: array items: *70 examples: - default: *590 + default: *591 headers: Link: *6 '304': *42 @@ -86566,7 +86585,7 @@ paths: - docker - nuget - container - - *591 + - *592 - *5 - *4 responses: @@ -86578,8 +86597,8 @@ paths: type: array items: *214 examples: - default: *592 - '400': *593 + default: *593 + '400': *594 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -86608,7 +86627,7 @@ paths: application/json: schema: *214 examples: - default: &605 + default: &606 value: id: 40201 name: octo-name @@ -87058,9 +87077,9 @@ paths: application/json: schema: type: array - items: *583 + items: *584 examples: - default: *594 + default: *595 headers: Link: *6 '304': *42 @@ -87173,7 +87192,7 @@ paths: type: array items: *84 examples: - default: &601 + default: &602 summary: Default response value: - id: 1296269 @@ -87477,9 +87496,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *308 examples: - default: *295 + default: *310 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -87517,9 +87536,9 @@ paths: application/json: schema: type: array - items: *435 + items: *450 examples: - default: *595 + default: *596 headers: Link: *6 '304': *42 @@ -87542,7 +87561,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *436 + - *451 responses: '204': description: Response @@ -87565,7 +87584,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *436 + - *451 responses: '204': description: Response @@ -87598,7 +87617,7 @@ paths: application/json: schema: type: array - items: &596 + items: &597 title: Social account description: Social media account type: object @@ -87613,7 +87632,7 @@ paths: - provider - url examples: - default: &597 + default: &598 value: - provider: twitter url: https://twitter.com/github @@ -87675,9 +87694,9 @@ paths: application/json: schema: type: array - items: *596 + items: *597 examples: - default: *597 + default: *598 '422': *35 '304': *42 '404': *26 @@ -87764,7 +87783,7 @@ paths: application/json: schema: type: array - items: &598 + items: &599 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -87784,7 +87803,7 @@ paths: - title - created_at examples: - default: &606 + default: &607 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -87850,9 +87869,9 @@ paths: description: Response content: application/json: - schema: *598 + schema: *599 examples: - default: &599 + default: &600 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -87883,7 +87902,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &600 + - &601 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -87895,9 +87914,9 @@ paths: description: Response content: application/json: - schema: *598 + schema: *599 examples: - default: *599 + default: *600 '404': *26 '304': *42 '403': *43 @@ -87920,7 +87939,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *600 + - *601 responses: '204': description: Response @@ -87949,7 +87968,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &607 + - &608 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 @@ -87974,11 +87993,11 @@ paths: type: array items: *84 examples: - default-response: *601 + default-response: *602 application/vnd.github.v3.star+json: schema: type: array - items: &608 + items: &609 title: Starred Repository description: Starred Repository type: object @@ -88134,8 +88153,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response if this repository is starred by you @@ -88163,8 +88182,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -88188,8 +88207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *282 - - *283 + - *297 + - *298 responses: '204': description: Response @@ -88261,7 +88280,7 @@ paths: application/json: schema: type: array - items: *263 + items: *278 examples: default: value: @@ -88348,10 +88367,10 @@ paths: application/json: schema: oneOf: + - *583 - *582 - - *581 examples: - default-response: &602 + default-response: &603 summary: Default response value: login: octocat @@ -88386,7 +88405,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 @@ -88498,11 +88517,11 @@ paths: application/json: schema: oneOf: + - *583 - *582 - - *581 examples: - default-response: *602 - response-with-git-hub-plan-information: *603 + default-response: *603 + response-with-git-hub-plan-information: *604 '404': *26 x-github: githubCloudOnly: false @@ -88533,7 +88552,7 @@ paths: type: array items: *214 examples: - default: *592 + default: *593 '403': *43 '401': *41 x-github: @@ -88937,9 +88956,9 @@ paths: application/json: schema: type: array - items: *584 + items: *585 examples: - default: *604 + default: *605 headers: Link: *6 x-github: @@ -89043,7 +89062,7 @@ paths: application/json: schema: *39 examples: - default: *434 + default: *449 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89124,7 +89143,7 @@ paths: type: array items: *70 examples: - default: *590 + default: *591 headers: Link: *6 x-github: @@ -89163,7 +89182,7 @@ paths: - docker - nuget - container - - *591 + - *592 - *8 - *5 - *4 @@ -89176,10 +89195,10 @@ paths: type: array items: *214 examples: - default: *592 + default: *593 '403': *43 '401': *41 - '400': *593 + '400': *594 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89209,7 +89228,7 @@ paths: application/json: schema: *214 examples: - default: *605 + default: *606 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89842,9 +89861,9 @@ paths: application/json: schema: type: array - items: *596 + items: *597 examples: - default: *597 + default: *598 headers: Link: *6 x-github: @@ -89874,9 +89893,9 @@ paths: application/json: schema: type: array - items: *598 + items: *599 examples: - default: *606 + default: *607 headers: Link: *6 x-github: @@ -89901,7 +89920,7 @@ paths: url: https://docs.github.com/enterprise-server@3.13/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *8 - - *607 + - *608 - *9 - *4 - *5 @@ -89913,11 +89932,11 @@ paths: schema: anyOf: - type: array - items: *608 + items: *609 - type: array items: *84 examples: - default-response: *601 + default-response: *602 headers: Link: *6 x-github: @@ -90127,7 +90146,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &609 + enterprise: &610 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -90185,7 +90204,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &610 + installation: &611 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -90204,7 +90223,7 @@ x-webhooks: required: - id - node_id - organization: &611 + organization: &612 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -90264,13 +90283,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &612 + repository: &613 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: &638 + properties: &639 id: description: Unique identifier of the repository example: 42 @@ -90953,7 +90972,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &639 + required: &640 - archive_url - assignees_url - blobs_url @@ -91104,10 +91123,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -91193,11 +91212,11 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - rule: &613 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + rule: &614 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-server@3.13/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -91414,11 +91433,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - rule: *613 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + rule: *614 sender: *19 required: - action @@ -91592,11 +91611,11 @@ x-webhooks: - everyone required: - from - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - rule: *613 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + rule: *614 sender: *19 required: - action @@ -91681,12 +91700,12 @@ x-webhooks: type: string cache_location: type: string - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 ref: type: string - repository: *612 + repository: *613 sender: *19 required: - cache_location @@ -91780,7 +91799,7 @@ x-webhooks: type: string enum: - completed - check_run: &615 + check_run: &616 title: CheckRun description: A check performed on the code of a given code change type: object @@ -91833,7 +91852,7 @@ x-webhooks: type: string pull_requests: type: array - items: *351 + items: *366 repository: *153 status: example: completed @@ -91871,7 +91890,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *614 + deployment: *615 details_url: example: https://example.com type: string @@ -91921,7 +91940,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *351 + items: *366 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -91956,9 +91975,9 @@ x-webhooks: - output - app - pull_requests - installation: *610 - organization: *611 - repository: *612 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - check_run @@ -92361,10 +92380,10 @@ x-webhooks: type: string enum: - created - check_run: *615 - installation: *610 - organization: *611 - repository: *612 + check_run: *616 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - check_run @@ -92770,10 +92789,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *615 - installation: *610 - organization: *611 - repository: *612 + check_run: *616 + installation: *611 + organization: *612 + repository: *613 requested_action: description: The action requested by the user. type: object @@ -93188,10 +93207,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *615 - installation: *610 - organization: *611 - repository: *612 + check_run: *616 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - check_run @@ -94178,10 +94197,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -94861,10 +94880,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -95538,10 +95557,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -95714,7 +95733,7 @@ x-webhooks: required: - login - id - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -95859,20 +95878,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &616 + commit_oid: &617 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: *609 - installation: *610 - organization: *611 - ref: &617 + enterprise: *610 + installation: *611 + organization: *612 + ref: &618 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: *612 + repository: *613 sender: *19 required: - action @@ -96044,7 +96063,7 @@ x-webhooks: required: - login - id - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -96274,12 +96293,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *616 - enterprise: *609 - installation: *610 - organization: *611 - ref: *617 - repository: *612 + commit_oid: *617 + enterprise: *610 + installation: *611 + organization: *612 + ref: *618 + repository: *613 sender: *19 required: - action @@ -96384,7 +96403,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -96552,12 +96571,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *616 - enterprise: *609 - installation: *610 - organization: *611 - ref: *617 - repository: *612 + commit_oid: *617 + enterprise: *610 + installation: *611 + organization: *612 + ref: *618 + repository: *613 sender: *19 required: - action @@ -96730,7 +96749,7 @@ x-webhooks: required: - login - id - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -96896,12 +96915,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *616 - enterprise: *609 - installation: *610 - organization: *611 - ref: *617 - repository: *612 + commit_oid: *617 + enterprise: *610 + installation: *611 + organization: *612 + ref: *618 + repository: *613 sender: *19 required: - action @@ -97008,7 +97027,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -97176,16 +97195,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 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: *612 + repository: *613 sender: *19 required: - action @@ -97289,7 +97308,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *364 + dismissed_comment: *379 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -97429,12 +97448,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *616 - enterprise: *609 - installation: *610 - organization: *611 - ref: *617 - repository: *612 + commit_oid: *617 + enterprise: *610 + installation: *611 + organization: *612 + ref: *618 + repository: *613 sender: *19 required: - action @@ -97701,10 +97720,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -97794,18 +97813,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *611 - pusher_type: &618 + organization: *612 + pusher_type: &619 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &619 + ref: &620 description: The [`git ref`](https://docs.github.com/enterprise-server@3.13/rest/git/refs#get-a-reference) resource. type: string @@ -97815,7 +97834,7 @@ x-webhooks: enum: - tag - branch - repository: *612 + repository: *613 sender: *19 required: - ref @@ -97904,18 +97923,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *609 - installation: *610 - organization: *611 - pusher_type: *618 - ref: *619 + enterprise: *610 + installation: *611 + organization: *612 + pusher_type: *619 + ref: *620 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *612 + repository: *613 sender: *19 required: - ref @@ -98009,11 +98028,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98107,11 +98126,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98205,11 +98224,11 @@ x-webhooks: type: string enum: - created - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98301,11 +98320,11 @@ x-webhooks: type: string enum: - dismissed - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98397,11 +98416,11 @@ x-webhooks: type: string enum: - fixed - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98494,11 +98513,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98590,11 +98609,11 @@ x-webhooks: type: string enum: - reopened - alert: *397 - installation: *610 - organization: *611 - enterprise: *609 - repository: *612 + alert: *412 + installation: *611 + organization: *612 + enterprise: *610 + repository: *613 sender: *19 required: - action @@ -98681,9 +98700,9 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - key: &620 + enterprise: *610 + installation: *611 + key: &621 description: The [`deploy key`](https://docs.github.com/enterprise-server@3.13/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -98717,8 +98736,8 @@ x-webhooks: - verified - created_at - read_only - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -98805,11 +98824,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - key: *620 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + key: *621 + organization: *612 + repository: *613 sender: *19 required: - action @@ -99380,12 +99399,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - workflow: &624 + workflow: &625 title: Workflow type: object nullable: true @@ -100121,13 +100140,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *403 + deployment: *418 pull_requests: type: array - items: *485 - repository: *612 - organization: *611 - installation: *610 + items: *500 + repository: *613 + organization: *612 + installation: *611 sender: *19 responses: '200': @@ -100208,7 +100227,7 @@ x-webhooks: type: string enum: - approved - approver: &621 + approver: &622 type: object properties: avatar_url: @@ -100251,11 +100270,11 @@ x-webhooks: type: string comment: type: string - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - reviewers: &622 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + reviewers: &623 type: array items: type: object @@ -100334,7 +100353,7 @@ x-webhooks: sender: *19 since: type: string - workflow_job_run: &623 + workflow_job_run: &624 type: object properties: conclusion: @@ -101075,18 +101094,18 @@ x-webhooks: type: string enum: - rejected - approver: *621 + approver: *622 comment: type: string - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - reviewers: *622 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + reviewers: *623 sender: *19 since: type: string - workflow_job_run: *623 + workflow_job_run: *624 workflow_job_runs: type: array items: @@ -101800,13 +101819,13 @@ x-webhooks: type: string enum: - requested - enterprise: *609 + enterprise: *610 environment: type: string - installation: *610 - organization: *611 - repository: *612 - requestor: &629 + installation: *611 + organization: *612 + repository: *613 + requestor: &630 title: User type: object nullable: true @@ -103715,12 +103734,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - workflow: *624 + workflow: *625 workflow_run: title: Deployment Workflow Run type: object @@ -104410,7 +104429,7 @@ x-webhooks: type: string enum: - answered - answer: &627 + answer: &628 type: object properties: author_association: @@ -104567,7 +104586,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &625 + discussion: &626 title: Discussion description: A Discussion in a repository. type: object @@ -104853,7 +104872,7 @@ x-webhooks: - id labels: type: array - items: *445 + items: *460 required: - repository_url - category @@ -104875,10 +104894,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105015,11 +105034,11 @@ x-webhooks: - from required: - category - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105112,11 +105131,11 @@ x-webhooks: type: string enum: - closed - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105208,7 +105227,7 @@ x-webhooks: type: string enum: - created - comment: &626 + comment: &627 type: object properties: author_association: @@ -105365,11 +105384,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105462,12 +105481,12 @@ x-webhooks: type: string enum: - deleted - comment: *626 - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + comment: *627 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105572,12 +105591,12 @@ x-webhooks: - from required: - body - comment: *626 - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + comment: *627 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105671,11 +105690,11 @@ x-webhooks: type: string enum: - created - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105767,11 +105786,11 @@ x-webhooks: type: string enum: - deleted - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105881,11 +105900,11 @@ x-webhooks: type: string required: - from - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -105977,10 +105996,10 @@ x-webhooks: type: string enum: - labeled - discussion: *625 - enterprise: *609 - installation: *610 - label: &628 + discussion: *626 + enterprise: *610 + installation: *611 + label: &629 title: Label type: object properties: @@ -106012,8 +106031,8 @@ x-webhooks: - color - default - description - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106106,11 +106125,11 @@ x-webhooks: type: string enum: - locked - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106202,11 +106221,11 @@ x-webhooks: type: string enum: - pinned - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106298,11 +106317,11 @@ x-webhooks: type: string enum: - reopened - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106397,16 +106416,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *625 - new_repository: *612 + new_discussion: *626 + new_repository: *613 required: - new_discussion - new_repository - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106499,10 +106518,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *625 - old_answer: *627 - organization: *611 - repository: *612 + discussion: *626 + old_answer: *628 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106594,12 +106613,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *625 - enterprise: *609 - installation: *610 - label: *628 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106692,11 +106711,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -106788,11 +106807,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *625 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + discussion: *626 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -107033,7 +107052,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *609 + enterprise: *610 forkee: description: The created [`repository`](https://docs.github.com/enterprise-server@3.13/rest/repos/repos#get-a-repository) resource. @@ -107693,9 +107712,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *610 - organization: *611 - repository: *612 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - forkee @@ -107861,9 +107880,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pages: description: The pages that were updated. type: array @@ -107900,7 +107919,7 @@ x-webhooks: - action - sha - html_url - repository: *612 + repository: *613 sender: *19 required: - pages @@ -107986,10 +108005,10 @@ x-webhooks: type: string enum: - created - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories: &630 + organization: *612 + repositories: &631 description: An array of repository objects that the installation can access. type: array @@ -108015,8 +108034,8 @@ x-webhooks: - name - full_name - private - repository: *612 - requester: *629 + repository: *613 + requester: *630 sender: *19 required: - action @@ -108101,11 +108120,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories: *630 - repository: *612 + organization: *612 + repositories: *631 + repository: *613 requester: nullable: true sender: *19 @@ -108191,11 +108210,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories: *630 - repository: *612 + organization: *612 + repositories: *631 + repository: *613 requester: nullable: true sender: *19 @@ -108281,10 +108300,10 @@ x-webhooks: type: string enum: - added - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories_added: &631 + organization: *612 + repositories_added: &632 description: An array of repository objects, which were added to the installation. type: array @@ -108330,15 +108349,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *612 - repository_selection: &632 + repository: *613 + repository_selection: &633 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *629 + requester: *630 sender: *19 required: - action @@ -108427,10 +108446,10 @@ x-webhooks: type: string enum: - removed - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories_added: *631 + organization: *612 + repositories_added: *632 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -108457,9 +108476,9 @@ x-webhooks: - name - full_name - private - repository: *612 - repository_selection: *632 - requester: *629 + repository: *613 + repository_selection: *633 + requester: *630 sender: *19 required: - action @@ -108548,11 +108567,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories: *630 - repository: *612 + organization: *612 + repositories: *631 + repository: *613 requester: nullable: true sender: *19 @@ -108741,10 +108760,10 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 target_type: type: string @@ -108833,11 +108852,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *609 + enterprise: *610 installation: *39 - organization: *611 - repositories: *630 - repository: *612 + organization: *612 + repositories: *631 + repository: *613 requester: nullable: true sender: *19 @@ -109099,8 +109118,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) the comment belongs to. @@ -109923,7 +109942,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -110256,8 +110275,8 @@ x-webhooks: - state - locked - assignee - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -110347,7 +110366,7 @@ x-webhooks: type: string enum: - deleted - comment: &633 + comment: &634 title: issue comment description: The [comment](https://docs.github.com/enterprise-server@3.13/rest/issues/comments#get-an-issue-comment) itself. @@ -110512,8 +110531,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) the comment belongs to. @@ -111332,7 +111351,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -111667,8 +111686,8 @@ x-webhooks: - state - locked - assignee - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -111758,7 +111777,7 @@ x-webhooks: type: string enum: - edited - changes: &654 + changes: &655 description: The changes to the comment. type: object properties: @@ -111770,9 +111789,9 @@ x-webhooks: type: string required: - from - comment: *633 - enterprise: *609 - installation: *610 + comment: *634 + enterprise: *610 + installation: *611 issue: description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) the comment belongs to. @@ -112594,7 +112613,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -112927,8 +112946,8 @@ x-webhooks: - state - locked - assignee - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -113020,10 +113039,10 @@ x-webhooks: type: string enum: - assigned - assignee: *629 - enterprise: *609 - installation: *610 - issue: &636 + assignee: *630 + enterprise: *610 + installation: *611 + issue: &637 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) itself. @@ -113841,7 +113860,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -113942,8 +113961,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -114033,8 +114052,8 @@ x-webhooks: type: string enum: - closed - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) itself. @@ -114857,7 +114876,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -115093,8 +115112,8 @@ x-webhooks: required: - state - closed_at - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -115183,8 +115202,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -115998,7 +116017,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -116098,8 +116117,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -116188,8 +116207,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -117025,7 +117044,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -117104,7 +117123,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &634 + milestone: &635 title: Milestone description: A collection of related issues and pull requests. type: object @@ -117242,8 +117261,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -117352,8 +117371,8 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -118168,7 +118187,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *566 + type: *567 title: description: Title of the issue type: string @@ -118272,9 +118291,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *628 - organization: *611 - repository: *612 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -118364,8 +118383,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -119179,7 +119198,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *566 + type: *567 title: description: Title of the issue type: string @@ -119283,9 +119302,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *628 - organization: *611 - repository: *612 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -119375,8 +119394,8 @@ x-webhooks: type: string enum: - locked - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -120214,7 +120233,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *566 + type: *567 title: description: Title of the issue type: string @@ -120295,8 +120314,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -120385,8 +120404,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -121221,7 +121240,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -121299,9 +121318,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *634 - organization: *611 - repository: *612 + milestone: *635 + organization: *612 + repository: *613 sender: *19 required: - action @@ -122285,7 +122304,7 @@ x-webhooks: required: - login - id - type: *566 + type: *567 required: - id - number @@ -122754,8 +122773,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -123573,7 +123592,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -123673,8 +123692,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -123764,9 +123783,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *609 - installation: *610 - issue: &635 + enterprise: *610 + installation: *611 + issue: &636 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) itself. @@ -124578,7 +124597,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -124678,8 +124697,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -124768,8 +124787,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -125686,9 +125705,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *566 - organization: *611 - repository: *612 + type: *567 + organization: *612 + repository: *613 sender: *19 required: - action @@ -126593,7 +126612,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -127161,11 +127180,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *609 - installation: *610 - issue: *635 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + issue: *636 + organization: *612 + repository: *613 sender: *19 required: - action @@ -127256,7 +127275,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &657 + assignee: &658 title: User type: object nullable: true @@ -127326,11 +127345,11 @@ x-webhooks: required: - login - id - enterprise: *609 - installation: *610 - issue: *636 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + issue: *637 + organization: *612 + repository: *613 sender: *19 required: - action @@ -127419,12 +127438,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *609 - installation: *610 - issue: *636 - label: *628 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + issue: *637 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -127514,8 +127533,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.13/rest/issues/issues#get-an-issue) @@ -128354,7 +128373,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *566 + type: *567 updated_at: type: string format: date-time @@ -128432,8 +128451,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -128523,11 +128542,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *609 - installation: *610 - issue: *635 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + issue: *636 + organization: *612 + repository: *613 sender: *19 required: - action @@ -128616,11 +128635,11 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - label: *628 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -128708,11 +128727,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - label: *628 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -128832,11 +128851,11 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - label: *628 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + label: *629 + organization: *612 + repository: *613 sender: *19 required: - action @@ -128937,11 +128956,11 @@ x-webhooks: - read required: - to - enterprise: *609 - installation: *610 - member: *629 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + member: *630 + organization: *612 + repository: *613 sender: *19 required: - action @@ -129051,11 +129070,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *609 - installation: *610 - member: *629 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + member: *630 + organization: *612 + repository: *613 sender: *19 required: - action @@ -129144,11 +129163,11 @@ x-webhooks: type: string enum: - removed - enterprise: *609 - installation: *610 - member: *629 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + member: *630 + organization: *612 + repository: *613 sender: *19 required: - action @@ -129236,11 +129255,11 @@ x-webhooks: type: string enum: - added - enterprise: *609 - installation: *610 - member: *629 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + member: *630 + organization: *612 + repository: *613 scope: description: The scope of the membership. Currently, can only be `team`. @@ -129316,7 +129335,7 @@ x-webhooks: required: - login - id - team: &637 + team: &638 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -129516,11 +129535,11 @@ x-webhooks: type: string enum: - removed - enterprise: *609 - installation: *610 - member: *629 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + member: *630 + organization: *612 + repository: *613 scope: description: The scope of the membership. Currently, can only be `team`. @@ -129597,7 +129616,7 @@ x-webhooks: required: - login - id - team: *637 + team: *638 required: - action - scope @@ -129685,7 +129704,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 + enterprise: *610 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -129794,16 +129813,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *610 - organization: *611 + installation: *611 + organization: *612 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: *638 - required: *639 + properties: *639 + required: *640 nullable: true sender: *19 required: @@ -129894,11 +129913,11 @@ x-webhooks: type: string enum: - closed - enterprise: *609 - installation: *610 - milestone: *634 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + milestone: *635 + organization: *612 + repository: *613 sender: *19 required: - action @@ -129987,9 +130006,9 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - milestone: &640 + enterprise: *610 + installation: *611 + milestone: &641 title: Milestone description: A collection of related issues and pull requests. type: object @@ -130126,8 +130145,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130216,11 +130235,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - milestone: *634 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + milestone: *635 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130340,11 +130359,11 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - milestone: *634 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + milestone: *635 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130434,11 +130453,11 @@ x-webhooks: type: string enum: - opened - enterprise: *609 - installation: *610 - milestone: *640 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + milestone: *641 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130527,9 +130546,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - membership: &641 + enterprise: *610 + installation: *611 + membership: &642 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -130636,8 +130655,8 @@ x-webhooks: - role - organization_url - user - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130725,11 +130744,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *609 - installation: *610 - membership: *641 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + membership: *642 + organization: *612 + repository: *613 sender: *19 required: - action @@ -130818,8 +130837,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -130935,10 +130954,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 - user: *629 + user: *630 required: - action - invitation @@ -131026,11 +131045,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *609 - installation: *610 - membership: *641 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + membership: *642 + organization: *612 + repository: *613 sender: *19 required: - action @@ -131127,11 +131146,11 @@ x-webhooks: properties: from: type: string - enterprise: *609 - installation: *610 - membership: *641 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + membership: *642 + organization: *612 + repository: *613 sender: *19 required: - action @@ -131217,9 +131236,9 @@ x-webhooks: type: string enum: - published - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 package: description: Information about the package. type: object @@ -131718,7 +131737,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &642 + items: &643 title: Ruby Gems metadata type: object properties: @@ -131813,7 +131832,7 @@ x-webhooks: - owner - package_version - registry - repository: *612 + repository: *613 sender: *19 required: - action @@ -131899,9 +131918,9 @@ x-webhooks: type: string enum: - updated - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 package: description: Information about the package. type: object @@ -132254,7 +132273,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *642 + items: *643 source_url: type: string format: uri @@ -132324,7 +132343,7 @@ x-webhooks: - owner - package_version - registry - repository: *612 + repository: *613 sender: *19 required: - action @@ -132511,12 +132530,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *609 + enterprise: *610 id: type: integer - installation: *610 - organization: *611 - repository: *612 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - id @@ -132593,7 +132612,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &643 + personal_access_token_request: &644 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -132739,10 +132758,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *609 - organization: *611 + enterprise: *610 + organization: *612 sender: *19 - installation: *610 + installation: *611 required: - action - personal_access_token_request @@ -132819,11 +132838,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *643 - enterprise: *609 - organization: *611 + personal_access_token_request: *644 + enterprise: *610 + organization: *612 sender: *19 - installation: *610 + installation: *611 required: - action - personal_access_token_request @@ -132899,11 +132918,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *643 - enterprise: *609 - organization: *611 + personal_access_token_request: *644 + enterprise: *610 + organization: *612 sender: *19 - installation: *610 + installation: *611 required: - action - personal_access_token_request @@ -132978,11 +132997,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *643 - organization: *611 - enterprise: *609 + personal_access_token_request: *644 + organization: *612 + enterprise: *610 sender: *19 - installation: *610 + installation: *611 required: - action - personal_access_token_request @@ -133097,7 +133116,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *644 + last_response: *645 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -133129,8 +133148,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 zen: description: Random string of GitHub zen. @@ -133385,10 +133404,10 @@ x-webhooks: - from required: - note - enterprise: *609 - installation: *610 - organization: *611 - project_card: &645 + enterprise: *610 + installation: *611 + organization: *612 + project_card: &646 title: Project Card type: object properties: @@ -133507,7 +133526,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *612 + repository: *613 sender: *19 required: - action @@ -133598,11 +133617,11 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - project_card: *645 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project_card: *646 + repository: *613 sender: *19 required: - action @@ -133692,9 +133711,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 project_card: title: Project Card type: object @@ -133822,8 +133841,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: *638 - required: *639 + properties: *639 + required: *640 nullable: true sender: *19 required: @@ -133927,11 +133946,11 @@ x-webhooks: - from required: - note - enterprise: *609 - installation: *610 - organization: *611 - project_card: *645 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project_card: *646 + repository: *613 sender: *19 required: - action @@ -134035,9 +134054,9 @@ x-webhooks: - from required: - column_id - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 project_card: allOf: - title: Project Card @@ -134227,7 +134246,7 @@ x-webhooks: type: string required: - after_id - repository: *612 + repository: *613 sender: *19 required: - action @@ -134317,10 +134336,10 @@ x-webhooks: type: string enum: - closed - enterprise: *609 - installation: *610 - organization: *611 - project: &647 + enterprise: *610 + installation: *611 + organization: *612 + project: &648 title: Project type: object properties: @@ -134444,7 +134463,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *612 + repository: *613 sender: *19 required: - action @@ -134534,10 +134553,10 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - project_column: &646 + enterprise: *610 + installation: *611 + organization: *612 + project_column: &647 title: Project Column type: object properties: @@ -134576,7 +134595,7 @@ x-webhooks: - name - created_at - updated_at - repository: *612 + repository: *613 sender: *19 required: - action @@ -134665,18 +134684,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - project_column: *646 + enterprise: *610 + installation: *611 + organization: *612 + project_column: *647 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: *638 - required: *639 + properties: *639 + required: *640 nullable: true sender: *19 required: @@ -134776,11 +134795,11 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - organization: *611 - project_column: *646 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project_column: *647 + repository: *613 sender: *19 required: - action @@ -134870,11 +134889,11 @@ x-webhooks: type: string enum: - moved - enterprise: *609 - installation: *610 - organization: *611 - project_column: *646 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project_column: *647 + repository: *613 sender: *19 required: - action @@ -134964,11 +134983,11 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - project: *647 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project: *648 + repository: *613 sender: *19 required: - action @@ -135058,18 +135077,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - project: *647 + enterprise: *610 + installation: *611 + organization: *612 + project: *648 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: *638 - required: *639 + properties: *639 + required: *640 nullable: true sender: *19 required: @@ -135181,11 +135200,11 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - organization: *611 - project: *647 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project: *648 + repository: *613 sender: *19 required: - action @@ -135274,11 +135293,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *609 - installation: *610 - organization: *611 - project: *647 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + project: *648 + repository: *613 sender: *19 required: - action @@ -135369,9 +135388,9 @@ x-webhooks: type: string enum: - closed - installation: *610 - organization: *611 - projects_v2: &648 + installation: *611 + organization: *612 + projects_v2: &649 title: Projects v2 Project description: A projects v2 project type: object @@ -135524,9 +135543,9 @@ x-webhooks: type: string enum: - created - installation: *610 - organization: *611 - projects_v2: *648 + installation: *611 + organization: *612 + projects_v2: *649 sender: *19 required: - action @@ -135617,9 +135636,9 @@ x-webhooks: type: string enum: - deleted - installation: *610 - organization: *611 - projects_v2: *648 + installation: *611 + organization: *612 + projects_v2: *649 sender: *19 required: - action @@ -135746,9 +135765,9 @@ x-webhooks: type: string to: type: string - installation: *610 - organization: *611 - projects_v2: *648 + installation: *611 + organization: *612 + projects_v2: *649 sender: *19 required: - action @@ -135841,7 +135860,7 @@ x-webhooks: type: string enum: - archived - changes: &650 + changes: &651 type: object properties: archived_at: @@ -135855,9 +135874,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *610 - organization: *611 - projects_v2_item: &649 + installation: *611 + organization: *612 + projects_v2_item: &650 title: Projects v2 Item description: An item belonging to a project type: object @@ -136001,9 +136020,9 @@ x-webhooks: nullable: true to: type: string - installation: *610 - organization: *611 - projects_v2_item: *649 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136095,9 +136114,9 @@ x-webhooks: type: string enum: - created - installation: *610 - organization: *611 - projects_v2_item: *649 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136188,9 +136207,9 @@ x-webhooks: type: string enum: - deleted - installation: *610 - organization: *611 - projects_v2_item: *649 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136312,9 +136331,9 @@ x-webhooks: nullable: true required: - body - installation: *610 - organization: *611 - projects_v2_item: *649 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136419,9 +136438,9 @@ x-webhooks: to: type: string nullable: true - installation: *610 - organization: *611 - projects_v2_item: *649 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136514,10 +136533,10 @@ x-webhooks: type: string enum: - restored - changes: *650 - installation: *610 - organization: *611 - projects_v2_item: *649 + changes: *651 + installation: *611 + organization: *612 + projects_v2_item: *650 sender: *19 required: - action @@ -136609,9 +136628,9 @@ x-webhooks: type: string enum: - reopened - installation: *610 - organization: *611 - projects_v2: *648 + installation: *611 + organization: *612 + projects_v2: *649 sender: *19 required: - action @@ -136692,10 +136711,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - repository @@ -136782,13 +136801,13 @@ x-webhooks: type: string enum: - assigned - assignee: *629 - enterprise: *609 - installation: *610 - number: &651 + assignee: *630 + enterprise: *610 + installation: *611 + number: &652 description: The pull request number. type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -139071,7 +139090,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -139163,11 +139182,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -141445,7 +141464,7 @@ x-webhooks: - draft reason: type: string - repository: *612 + repository: *613 sender: *19 required: - action @@ -141537,11 +141556,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -143819,7 +143838,7 @@ x-webhooks: - draft reason: type: string - repository: *612 + repository: *613 sender: *19 required: - action @@ -143911,13 +143930,13 @@ x-webhooks: type: string enum: - closed - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: &652 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: &653 allOf: - - *485 + - *500 - type: object properties: allow_auto_merge: @@ -143979,7 +143998,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *612 + repository: *613 sender: *19 required: - action @@ -144070,12 +144089,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: *652 - repository: *612 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: *653 + repository: *613 sender: *19 required: - action @@ -144165,11 +144184,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *609 - milestone: *465 - number: *651 - organization: *611 - pull_request: &653 + enterprise: *610 + milestone: *480 + number: *652 + organization: *612 + pull_request: &654 title: Pull Request type: object properties: @@ -146432,7 +146451,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -146564,12 +146583,12 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: *652 - repository: *612 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: *653 + repository: *613 sender: *19 required: - action @@ -146659,11 +146678,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *609 - installation: *610 - label: *628 - number: *651 - organization: *611 + enterprise: *610 + installation: *611 + label: *629 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -148945,7 +148964,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -149036,10 +149055,10 @@ x-webhooks: type: string enum: - locked - enterprise: *609 - installation: *610 - number: *651 - organization: *611 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -151319,7 +151338,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -151409,12 +151428,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *609 - milestone: *465 - number: *651 - organization: *611 - pull_request: *653 - repository: *612 + enterprise: *610 + milestone: *480 + number: *652 + organization: *612 + pull_request: *654 + repository: *613 sender: *19 required: - action @@ -151503,12 +151522,12 @@ x-webhooks: type: string enum: - opened - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: *652 - repository: *612 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: *653 + repository: *613 sender: *19 required: - action @@ -151599,12 +151618,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: *652 - repository: *612 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: *653 + repository: *613 sender: *19 required: - action @@ -151694,12 +151713,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *609 - installation: *610 - number: *651 - organization: *611 - pull_request: *652 - repository: *612 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 + pull_request: *653 + repository: *613 sender: *19 required: - action @@ -152075,9 +152094,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: type: object properties: @@ -154247,7 +154266,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *612 + repository: *613 sender: *19 required: - action @@ -154337,7 +154356,7 @@ x-webhooks: type: string enum: - deleted - comment: &655 + comment: &656 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-server@3.13/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -154622,9 +154641,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: type: object properties: @@ -156782,7 +156801,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *612 + repository: *613 sender: *19 required: - action @@ -156872,11 +156891,11 @@ x-webhooks: type: string enum: - edited - changes: *654 - comment: *655 - enterprise: *609 - installation: *610 - organization: *611 + changes: *655 + comment: *656 + enterprise: *610 + installation: *611 + organization: *612 pull_request: type: object properties: @@ -159037,7 +159056,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *612 + repository: *613 sender: *19 required: - action @@ -159128,9 +159147,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: title: Simple Pull Request type: object @@ -161303,7 +161322,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *612 + repository: *613 review: description: The review that was affected. type: object @@ -161556,9 +161575,9 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: title: Simple Pull Request type: object @@ -163612,8 +163631,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *612 - review: &656 + repository: *613 + review: &657 description: The review that was affected. type: object properties: @@ -163852,12 +163871,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: description: The pull request number. type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -166140,7 +166159,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 requested_reviewer: title: User type: object @@ -166224,12 +166243,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: description: The pull request number. type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -168519,7 +168538,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 requested_team: title: Team description: Groups of organization members that gives permissions @@ -168721,12 +168740,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: description: The pull request number. type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -171011,7 +171030,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 requested_reviewer: title: User type: object @@ -171096,12 +171115,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *609 - installation: *610 + enterprise: *610 + installation: *611 number: description: The pull request number. type: integer - organization: *611 + organization: *612 pull_request: title: Pull Request type: object @@ -173377,7 +173396,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 requested_team: title: Team description: Groups of organization members that gives permissions @@ -173568,9 +173587,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: title: Simple Pull Request type: object @@ -175745,8 +175764,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *612 - review: *656 + repository: *613 + review: *657 sender: *19 required: - action @@ -175836,9 +175855,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: title: Simple Pull Request type: object @@ -177908,7 +177927,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *612 + repository: *613 sender: *19 thread: type: object @@ -178301,9 +178320,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 pull_request: title: Simple Pull Request type: object @@ -180359,7 +180378,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *612 + repository: *613 sender: *19 thread: type: object @@ -180755,10 +180774,10 @@ x-webhooks: type: string before: type: string - enterprise: *609 - installation: *610 - number: *651 - organization: *611 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -183029,7 +183048,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -183121,11 +183140,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *657 - enterprise: *609 - installation: *610 - number: *651 - organization: *611 + assignee: *658 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -185408,7 +185427,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -185497,11 +185516,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *609 - installation: *610 - label: *628 - number: *651 - organization: *611 + enterprise: *610 + installation: *611 + label: *629 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -187774,7 +187793,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -187865,10 +187884,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *609 - installation: *610 - number: *651 - organization: *611 + enterprise: *610 + installation: *611 + number: *652 + organization: *612 pull_request: title: Pull Request type: object @@ -190133,7 +190152,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *612 + repository: *613 sender: *19 required: - action @@ -190343,7 +190362,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *609 + enterprise: *610 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -190435,8 +190454,8 @@ x-webhooks: - url - author - committer - installation: *610 - organization: *611 + installation: *611 + organization: *612 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -191021,9 +191040,9 @@ x-webhooks: type: string enum: - published - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 registry_package: type: object properties: @@ -191469,7 +191488,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *642 + items: *643 summary: type: string tag_name: @@ -191523,7 +191542,7 @@ x-webhooks: - owner - package_version - registry - repository: *612 + repository: *613 sender: *19 required: - action @@ -191611,9 +191630,9 @@ x-webhooks: type: string enum: - updated - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 registry_package: type: object properties: @@ -191921,7 +191940,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *642 + items: *643 summary: type: string tag_name: @@ -191970,7 +191989,7 @@ x-webhooks: - owner - package_version - registry - repository: *612 + repository: *613 sender: *19 required: - action @@ -192057,10 +192076,10 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - release: &658 + enterprise: *610 + installation: *611 + organization: *612 + release: &659 title: Release description: The [release](https://docs.github.com/enterprise-server@3.13/rest/releases/releases/#get-a-release) object. @@ -192373,7 +192392,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *612 + repository: *613 sender: *19 required: - action @@ -192460,11 +192479,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - release: *658 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + release: *659 + repository: *613 sender: *19 required: - action @@ -192591,11 +192610,11 @@ x-webhooks: type: boolean required: - to - enterprise: *609 - installation: *610 - organization: *611 - release: *658 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + release: *659 + repository: *613 sender: *19 required: - action @@ -192683,9 +192702,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 release: title: Release description: The [release](https://docs.github.com/enterprise-server@3.13/rest/releases/releases/#get-a-release) @@ -193002,7 +193021,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *612 + repository: *613 sender: *19 required: - action @@ -193088,10 +193107,10 @@ x-webhooks: type: string enum: - published - enterprise: *609 - installation: *610 - organization: *611 - release: &659 + enterprise: *610 + installation: *611 + organization: *612 + release: &660 title: Release description: The [release](https://docs.github.com/enterprise-server@3.13/rest/releases/releases/#get-a-release) object. @@ -193405,7 +193424,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *612 + repository: *613 sender: *19 required: - action @@ -193491,11 +193510,11 @@ x-webhooks: type: string enum: - released - enterprise: *609 - installation: *610 - organization: *611 - release: *658 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + release: *659 + repository: *613 sender: *19 required: - action @@ -193581,11 +193600,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *609 - installation: *610 - organization: *611 - release: *659 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + release: *660 + repository: *613 sender: *19 required: - action @@ -193671,10 +193690,10 @@ x-webhooks: type: string enum: - anonymous_access_disabled - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -193759,10 +193778,10 @@ x-webhooks: type: string enum: - anonymous_access_enabled - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -193847,10 +193866,10 @@ x-webhooks: type: string enum: - archived - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -193937,10 +193956,10 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194028,10 +194047,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194125,10 +194144,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194250,10 +194269,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194341,10 +194360,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194431,10 +194450,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194538,10 +194557,10 @@ x-webhooks: - name required: - repository - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -194621,11 +194640,11 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - repository_ruleset: *248 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + repository_ruleset: *262 sender: *19 required: - action @@ -194703,11 +194722,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - repository_ruleset: *248 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + repository_ruleset: *262 sender: *19 required: - action @@ -194785,11 +194804,11 @@ x-webhooks: type: string enum: - edited - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - repository_ruleset: *248 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + repository_ruleset: *262 changes: type: object properties: @@ -194850,16 +194869,16 @@ x-webhooks: properties: added: type: array - items: *247 + items: *521 deleted: type: array - items: *247 + items: *521 updated: type: array items: type: object properties: - rule: *247 + rule: *521 changes: type: object properties: @@ -195103,10 +195122,10 @@ x-webhooks: - from required: - owner - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -195194,10 +195213,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -195285,7 +195304,7 @@ x-webhooks: type: string enum: - create - alert: &660 + alert: &661 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -195406,10 +195425,10 @@ x-webhooks: type: string enum: - open - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -195625,10 +195644,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -195716,11 +195735,11 @@ x-webhooks: type: string enum: - reopen - alert: *660 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + alert: *661 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -195929,10 +195948,10 @@ x-webhooks: enum: - fixed - open - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -196020,7 +196039,7 @@ x-webhooks: type: string enum: - created - alert: &661 + alert: &662 type: object properties: number: *93 @@ -196095,10 +196114,10 @@ x-webhooks: description: 'The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' nullable: true - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -196189,11 +196208,11 @@ x-webhooks: type: string enum: - created - alert: *661 - installation: *610 - location: *662 - organization: *611 - repository: *612 + alert: *662 + installation: *611 + location: *663 + organization: *612 + repository: *613 sender: *19 required: - location @@ -196436,11 +196455,11 @@ x-webhooks: type: string enum: - reopened - alert: *661 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + alert: *662 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -196528,11 +196547,11 @@ x-webhooks: type: string enum: - resolved - alert: *661 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + alert: *662 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -196620,11 +196639,11 @@ x-webhooks: type: string enum: - validated - alert: *661 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + alert: *662 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -196710,11 +196729,11 @@ x-webhooks: type: string enum: - published - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - security_advisory: &663 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + security_advisory: &664 description: The details of the security advisory, including summary, description, and severity. type: object @@ -196907,11 +196926,11 @@ x-webhooks: type: string enum: - updated - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 - security_advisory: *663 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 + security_advisory: *664 sender: *19 required: - action @@ -196994,10 +197013,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -197192,10 +197211,10 @@ x-webhooks: type: object properties: security_and_analysis: *241 - enterprise: *609 - installation: *610 - organization: *611 - repository: *293 + enterprise: *610 + installation: *611 + organization: *612 + repository: *308 sender: *19 required: - changes @@ -197283,12 +197302,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: &664 + sponsorship: &665 type: object properties: created_at: @@ -197599,12 +197618,12 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: *664 + sponsorship: *665 required: - action - sponsorship @@ -197702,12 +197721,12 @@ x-webhooks: type: string required: - from - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: *664 + sponsorship: *665 required: - action - changes @@ -197794,17 +197813,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &665 + effective_date: &666 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: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: *664 + sponsorship: *665 required: - action - sponsorship @@ -197888,7 +197907,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &666 + changes: &667 type: object properties: tier: @@ -197932,13 +197951,13 @@ x-webhooks: - from required: - tier - effective_date: *665 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + effective_date: *666 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: *664 + sponsorship: *665 required: - action - changes @@ -198025,13 +198044,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *666 - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + changes: *667 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - sponsorship: *664 + sponsorship: *665 required: - action - changes @@ -198115,10 +198134,10 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -198211,10 +198230,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -198640,15 +198659,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *609 + enterprise: *610 id: description: The unique identifier of the status. type: integer - installation: *610 + installation: *611 name: type: string - organization: *611 - repository: *612 + organization: *612 + repository: *613 sender: *19 sha: description: The Commit SHA. @@ -198760,12 +198779,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - team: &667 + team: &668 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -198965,9 +198984,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 repository: title: Repository description: A git repository @@ -199425,7 +199444,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *667 + team: *668 required: - action - team @@ -199511,9 +199530,9 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 repository: title: Repository description: A git repository @@ -199971,7 +199990,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *667 + team: *668 required: - action - team @@ -200058,9 +200077,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 repository: title: Repository description: A git repository @@ -200518,7 +200537,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *667 + team: *668 required: - action - team @@ -200672,9 +200691,9 @@ x-webhooks: - from required: - permissions - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 repository: title: Repository description: A git repository @@ -201132,7 +201151,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *667 + team: *668 required: - action - changes @@ -201220,9 +201239,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *609 - installation: *610 - organization: *611 + enterprise: *610 + installation: *611 + organization: *612 repository: title: Repository description: A git repository @@ -201680,7 +201699,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *667 + team: *668 required: - action - team @@ -201763,12 +201782,12 @@ x-webhooks: type: string enum: - created - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - user: *629 + user: *630 required: - action responses: @@ -201846,12 +201865,12 @@ x-webhooks: type: string enum: - deleted - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - user: *629 + user: *630 required: - action responses: @@ -201932,10 +201951,10 @@ x-webhooks: type: string enum: - started - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 required: - action @@ -202018,16 +202037,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *609 + enterprise: *610 inputs: type: object nullable: true additionalProperties: true - installation: *610 - organization: *611 + installation: *611 + organization: *612 ref: type: string - repository: *612 + repository: *613 sender: *19 workflow: type: string @@ -202119,10 +202138,10 @@ x-webhooks: type: string enum: - completed - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 workflow_job: allOf: @@ -202359,7 +202378,7 @@ x-webhooks: type: string required: - conclusion - deployment: *403 + deployment: *418 required: - action - repository @@ -202448,10 +202467,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 workflow_job: allOf: @@ -202711,7 +202730,7 @@ x-webhooks: required: - status - steps - deployment: *403 + deployment: *418 required: - action - repository @@ -202800,10 +202819,10 @@ x-webhooks: type: string enum: - queued - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 workflow_job: type: object @@ -202938,7 +202957,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *403 + deployment: *418 required: - action - repository @@ -203027,10 +203046,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 workflow_job: type: object @@ -203166,7 +203185,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *403 + deployment: *418 required: - action - repository @@ -203256,12 +203275,12 @@ x-webhooks: type: string enum: - completed - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - workflow: *624 + workflow: *625 workflow_run: title: Workflow Run type: object @@ -204270,12 +204289,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - workflow: *624 + workflow: *625 workflow_run: title: Workflow Run type: object @@ -205269,12 +205288,12 @@ x-webhooks: type: string enum: - requested - enterprise: *609 - installation: *610 - organization: *611 - repository: *612 + enterprise: *610 + installation: *611 + organization: *612 + repository: *613 sender: *19 - workflow: *624 + workflow: *625 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghes-3.13/ghes-3.13.2022-11-28.json b/descriptions/ghes-3.13/ghes-3.13.2022-11-28.json index 5753594257..551153ec59 100644 --- a/descriptions/ghes-3.13/ghes-3.13.2022-11-28.json +++ b/descriptions/ghes-3.13/ghes-3.13.2022-11-28.json @@ -21311,7 +21311,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } }, "source_type": { @@ -21647,7 +21647,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } } @@ -104453,6 +104453,58 @@ } } }, + "org-rules": { + "title": "Repository Rule", + "type": "object", + "description": "A repository rule.", + "oneOf": [ + { + "$ref": "#/components/schemas/repository-rule-creation" + }, + { + "$ref": "#/components/schemas/repository-rule-update" + }, + { + "$ref": "#/components/schemas/repository-rule-deletion" + }, + { + "$ref": "#/components/schemas/repository-rule-required-linear-history" + }, + { + "$ref": "#/components/schemas/repository-rule-required-deployments" + }, + { + "$ref": "#/components/schemas/repository-rule-required-signatures" + }, + { + "$ref": "#/components/schemas/repository-rule-pull-request" + }, + { + "$ref": "#/components/schemas/repository-rule-required-status-checks" + }, + { + "$ref": "#/components/schemas/repository-rule-non-fast-forward" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-workflows" + } + ] + }, "rule-suites": { "title": "Rule Suites", "description": "Response", diff --git a/descriptions/ghes-3.13/ghes-3.13.2022-11-28.yaml b/descriptions/ghes-3.13/ghes-3.13.2022-11-28.yaml index ffea62553a..ad9ab6ec2d 100644 --- a/descriptions/ghes-3.13/ghes-3.13.2022-11-28.yaml +++ b/descriptions/ghes-3.13/ghes-3.13.2022-11-28.yaml @@ -15310,7 +15310,7 @@ paths: type: array description: An array of rules within the ruleset. items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" source_type: type: string description: The type of the source of the ruleset @@ -15531,7 +15531,7 @@ paths: description: An array of rules within the ruleset. type: array items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" examples: default: value: @@ -75767,6 +75767,26 @@ components: updated_at: type: string format: date-time + org-rules: + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - "$ref": "#/components/schemas/repository-rule-creation" + - "$ref": "#/components/schemas/repository-rule-update" + - "$ref": "#/components/schemas/repository-rule-deletion" + - "$ref": "#/components/schemas/repository-rule-required-linear-history" + - "$ref": "#/components/schemas/repository-rule-required-deployments" + - "$ref": "#/components/schemas/repository-rule-required-signatures" + - "$ref": "#/components/schemas/repository-rule-pull-request" + - "$ref": "#/components/schemas/repository-rule-required-status-checks" + - "$ref": "#/components/schemas/repository-rule-non-fast-forward" + - "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + - "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + - "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + - "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + - "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + - "$ref": "#/components/schemas/repository-rule-workflows" rule-suites: title: Rule Suites description: Response diff --git a/descriptions/ghes-3.13/ghes-3.13.json b/descriptions/ghes-3.13/ghes-3.13.json index 5753594257..551153ec59 100644 --- a/descriptions/ghes-3.13/ghes-3.13.json +++ b/descriptions/ghes-3.13/ghes-3.13.json @@ -21311,7 +21311,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } }, "source_type": { @@ -21647,7 +21647,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } } @@ -104453,6 +104453,58 @@ } } }, + "org-rules": { + "title": "Repository Rule", + "type": "object", + "description": "A repository rule.", + "oneOf": [ + { + "$ref": "#/components/schemas/repository-rule-creation" + }, + { + "$ref": "#/components/schemas/repository-rule-update" + }, + { + "$ref": "#/components/schemas/repository-rule-deletion" + }, + { + "$ref": "#/components/schemas/repository-rule-required-linear-history" + }, + { + "$ref": "#/components/schemas/repository-rule-required-deployments" + }, + { + "$ref": "#/components/schemas/repository-rule-required-signatures" + }, + { + "$ref": "#/components/schemas/repository-rule-pull-request" + }, + { + "$ref": "#/components/schemas/repository-rule-required-status-checks" + }, + { + "$ref": "#/components/schemas/repository-rule-non-fast-forward" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + }, + { + "$ref": "#/components/schemas/repository-rule-workflows" + } + ] + }, "rule-suites": { "title": "Rule Suites", "description": "Response", diff --git a/descriptions/ghes-3.13/ghes-3.13.yaml b/descriptions/ghes-3.13/ghes-3.13.yaml index ffea62553a..ad9ab6ec2d 100644 --- a/descriptions/ghes-3.13/ghes-3.13.yaml +++ b/descriptions/ghes-3.13/ghes-3.13.yaml @@ -15310,7 +15310,7 @@ paths: type: array description: An array of rules within the ruleset. items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" source_type: type: string description: The type of the source of the ruleset @@ -15531,7 +15531,7 @@ paths: description: An array of rules within the ruleset. type: array items: - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" examples: default: value: @@ -75767,6 +75767,26 @@ components: updated_at: type: string format: date-time + org-rules: + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - "$ref": "#/components/schemas/repository-rule-creation" + - "$ref": "#/components/schemas/repository-rule-update" + - "$ref": "#/components/schemas/repository-rule-deletion" + - "$ref": "#/components/schemas/repository-rule-required-linear-history" + - "$ref": "#/components/schemas/repository-rule-required-deployments" + - "$ref": "#/components/schemas/repository-rule-required-signatures" + - "$ref": "#/components/schemas/repository-rule-pull-request" + - "$ref": "#/components/schemas/repository-rule-required-status-checks" + - "$ref": "#/components/schemas/repository-rule-non-fast-forward" + - "$ref": "#/components/schemas/repository-rule-commit-message-pattern" + - "$ref": "#/components/schemas/repository-rule-commit-author-email-pattern" + - "$ref": "#/components/schemas/repository-rule-committer-email-pattern" + - "$ref": "#/components/schemas/repository-rule-branch-name-pattern" + - "$ref": "#/components/schemas/repository-rule-tag-name-pattern" + - "$ref": "#/components/schemas/repository-rule-workflows" rule-suites: title: Rule Suites description: Response diff --git a/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml b/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml index 5d467b3a04..ffb3f5d832 100644 --- a/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml +++ b/descriptions/ghes-3.14/dereferenced/ghes-3.14.2022-11-28.deref.yaml @@ -4442,7 +4442,7 @@ paths: application/json: schema: *24 application/scim+json: - schema: &544 + schema: &545 title: Scim Error description: Scim Error type: object @@ -12321,7 +12321,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &364 + instances_url: &380 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -12356,7 +12356,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &365 + dismissed_reason: &381 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -12365,13 +12365,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &366 + dismissed_comment: &382 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &367 + rule: &383 type: object properties: id: @@ -12410,7 +12410,7 @@ paths: description: A set of tags applicable for the rule. items: type: string - tool: &368 + tool: &384 type: object properties: name: *90 @@ -12420,15 +12420,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *91 - most_recent_instance: &369 + most_recent_instance: &385 type: object properties: - ref: &362 + ref: &378 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &374 + analysis_key: &390 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -12439,7 +12439,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &375 + category: &391 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -13364,7 +13364,7 @@ paths: enum: - development - runtime - security_advisory: &397 + security_advisory: &413 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -13595,7 +13595,7 @@ paths: nullable: true maxLength: 280 fixed_at: *102 - auto_dismissed_at: &398 + auto_dismissed_at: &414 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -13960,7 +13960,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *65 - - &254 + - &270 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -13971,7 +13971,7 @@ paths: enum: - open - resolved - - &255 + - &271 name: secret_type in: query description: A comma-separated list of secret types to return. By default @@ -13980,7 +13980,7 @@ paths: required: false schema: type: string - - &256 + - &272 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -13989,7 +13989,7 @@ paths: required: false schema: type: string - - &257 + - &273 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -14005,7 +14005,7 @@ paths: - *4 - *88 - *89 - - &258 + - &274 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -14021,7 +14021,7 @@ paths: application/json: schema: type: array - items: &259 + items: &275 type: object properties: number: *93 @@ -14040,14 +14040,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &535 + state: &536 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &536 + resolution: &537 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -14113,7 +14113,7 @@ paths: - inactive - unknown examples: - default: &260 + default: &276 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -14374,7 +14374,7 @@ paths: description: Success content: application/json: - schema: &263 + schema: &279 type: object properties: total_advanced_security_committers: @@ -14429,7 +14429,7 @@ paths: required: - repositories examples: - default: &264 + default: &280 value: total_advanced_security_committers: 2 total_count: 2 @@ -14593,7 +14593,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &441 + properties: &457 id: type: integer format: int64 @@ -14705,7 +14705,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &387 + properties: &403 url: type: string format: uri @@ -14775,7 +14775,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &388 + required: &404 - closed_issues - creator - description @@ -14854,7 +14854,7 @@ paths: timeline_url: type: string format: uri - type: &568 + type: &569 title: Issue Type description: The type of issue. type: object @@ -14979,7 +14979,7 @@ paths: - total - completed - percent_completed - required: &442 + required: &458 - assignee - closed_at - comments @@ -15001,7 +15001,7 @@ paths: - author_association - created_at - updated_at - comment: &439 + comment: &455 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15563,7 +15563,7 @@ paths: url: type: string format: uri - user: &583 + user: &584 title: Public User description: Public User type: object @@ -20184,14 +20184,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &284 + - &300 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &285 + - &301 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20262,7 +20262,7 @@ paths: '404': *26 '403': *43 '304': *42 - '301': &296 + '301': &312 description: Moved permanently content: application/json: @@ -20284,7 +20284,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &470 + - &486 name: all description: If `true`, show notifications marked as read. in: query @@ -20292,7 +20292,7 @@ paths: schema: type: boolean default: false - - &471 + - &487 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20302,7 +20302,7 @@ paths: type: boolean default: false - *111 - - &472 + - &488 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -20746,7 +20746,7 @@ paths: - url - subscription_url examples: - default: &473 + default: &489 value: - id: '1' repository: @@ -21292,7 +21292,7 @@ paths: type: array items: *70 examples: - default: &592 + default: &593 value: - login: github id: 1 @@ -22183,7 +22183,7 @@ paths: type: integer repository_cache_usages: type: array - items: &301 + items: &317 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -22434,7 +22434,7 @@ paths: type: array items: *84 examples: - default: &589 + default: &590 value: total_count: 1 repositories: @@ -24235,7 +24235,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &339 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -24264,7 +24264,7 @@ paths: - key_id - key examples: - default: &324 + default: &340 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24677,7 +24677,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#list-organization-variables parameters: - *135 - - &308 + - &324 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.14/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -25326,7 +25326,7 @@ paths: be returned. in: query required: false - schema: &363 + schema: &379 type: string description: Severity of a code scanning alert. enum: @@ -25823,7 +25823,7 @@ paths: description: Response content: application/json: - schema: &401 + schema: &417 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -25840,7 +25840,7 @@ paths: - key_id - key examples: - default: &402 + default: &418 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26421,7 +26421,7 @@ paths: description: Response content: application/json: - schema: &279 + schema: &295 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -26502,7 +26502,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &280 + default: &296 value: group_id: '123' group_name: Octocat admins @@ -26557,7 +26557,7 @@ paths: description: Response content: application/json: - schema: &277 + schema: &293 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -26594,7 +26594,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &278 + default: &294 value: groups: - group_id: '123' @@ -27230,7 +27230,7 @@ paths: application/json: schema: *39 examples: - default: &436 + default: &452 value: id: 1 account: @@ -29604,7 +29604,7 @@ paths: - slug - parent examples: - default: &262 + default: &278 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -29676,7 +29676,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &261 + items: &277 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -29970,7 +29970,7 @@ paths: - nuget - container - *135 - - &593 + - &594 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -30011,7 +30011,7 @@ paths: default: *219 '403': *43 '401': *41 - '400': &595 + '400': &596 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -32464,7 +32464,7 @@ paths: description: Response content: application/json: - schema: &295 + schema: &311 title: Full Repository description: Full Repository type: object @@ -32962,7 +32962,7 @@ paths: - network_count - subscribers_count examples: - default: &297 + default: &313 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -33552,7 +33552,7 @@ paths: application/json: schema: type: array - items: &252 + items: &267 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -33807,12 +33807,12 @@ paths: - repository_property rules: type: array - items: &251 + items: &523 title: Repository Rule type: object description: A repository rule. oneOf: - - &505 + - &251 title: creation description: Only allow users with bypass permission to create matching refs. @@ -33824,7 +33824,7 @@ paths: type: string enum: - creation - - &506 + - &252 title: update description: Only allow users with bypass permission to update matching refs. @@ -33845,7 +33845,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &508 + - &253 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -33857,7 +33857,7 @@ paths: type: string enum: - deletion - - &509 + - &254 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -33869,7 +33869,7 @@ paths: type: string enum: - required_linear_history - - &510 + - &255 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -33893,7 +33893,7 @@ paths: type: string required: - required_deployment_environments - - &511 + - &256 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -33905,7 +33905,7 @@ paths: type: string enum: - required_signatures - - &512 + - &257 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -33956,7 +33956,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &513 + - &258 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -34004,7 +34004,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &514 + - &259 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -34016,7 +34016,7 @@ paths: type: string enum: - non_fast_forward - - &515 + - &260 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -34052,7 +34052,7 @@ paths: required: - operator - pattern - - &516 + - &261 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -34088,7 +34088,7 @@ paths: required: - operator - pattern - - &517 + - &262 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -34124,7 +34124,7 @@ paths: required: - operator - pattern - - &518 + - &263 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -34160,7 +34160,7 @@ paths: required: - operator - pattern - - &519 + - &264 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -34196,7 +34196,7 @@ paths: required: - operator - pattern - - &520 + - &265 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -34246,7 +34246,7 @@ paths: - repository_id required: - workflows - - &521 + - &266 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -34388,7 +34388,27 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *251 + items: &269 + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - *251 + - *252 + - *253 + - *254 + - *255 + - *256 + - *257 + - *258 + - *259 + - *260 + - *261 + - *262 + - *263 + - *264 + - *265 + - *266 source_type: type: string description: The type of the source of the ruleset @@ -34432,9 +34452,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: &253 + default: &268 value: id: 21 name: super cool ruleset @@ -34489,7 +34509,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *135 - - &523 + - &524 name: ref description: The name of the ref. Cannot contain wildcard characters. When specified, only rule evaluations triggered for this ref will be returned. @@ -34502,7 +34522,7 @@ paths: in: query schema: type: string - - &524 + - &525 name: time_period description: |- The time period to filter by. @@ -34518,14 +34538,14 @@ paths: - week - month default: day - - &525 + - &526 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &526 + - &527 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -34545,7 +34565,7 @@ paths: description: Response content: application/json: - schema: &527 + schema: &528 title: Rule Suites description: Response type: array @@ -34599,7 +34619,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &528 + default: &529 value: - id: 21 actor_id: 12 @@ -34643,7 +34663,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *135 - - &529 + - &530 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -34659,7 +34679,7 @@ paths: description: Response content: application/json: - schema: &530 + schema: &531 title: Rule Suite description: Response type: object @@ -34757,7 +34777,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &531 + default: &532 value: id: 21 actor_id: 12 @@ -34830,9 +34850,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: *253 + default: *268 '404': *26 '500': *224 put: @@ -34884,7 +34904,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *251 + items: *269 examples: default: value: @@ -34919,9 +34939,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: *253 + default: *268 '404': *26 '500': *224 delete: @@ -34968,14 +34988,14 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *135 - - *254 - - *255 - - *256 - - *257 + - *270 + - *271 + - *272 + - *273 - *9 - *5 - *4 - - &533 + - &534 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.14/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -34985,7 +35005,7 @@ paths: required: false schema: type: string - - &534 + - &535 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.14/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -34995,7 +35015,7 @@ paths: required: false schema: type: string - - *258 + - *274 responses: '200': description: Response @@ -35003,9 +35023,9 @@ paths: application/json: schema: type: array - items: *259 + items: *275 examples: - default: *260 + default: *276 headers: Link: *6 '404': *26 @@ -35039,9 +35059,9 @@ paths: application/json: schema: type: array - items: *261 + items: *277 examples: - default: *262 + default: *278 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35127,9 +35147,9 @@ paths: description: Success content: application/json: - schema: *263 + schema: *279 examples: - default: *264 + default: *280 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -35157,7 +35177,7 @@ paths: application/json: schema: type: array - items: &286 + items: &302 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -35232,7 +35252,7 @@ paths: - slug - parent examples: - default: *262 + default: *278 headers: Link: *6 '403': *43 @@ -35334,7 +35354,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &281 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -35644,7 +35664,7 @@ paths: - repos_count - organization examples: - default: &266 + default: &282 value: id: 1 node_id: MDQ6VGVhbTE= @@ -35720,9 +35740,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '404': *26 x-github: githubCloudOnly: false @@ -35806,16 +35826,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '201': description: Response content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '404': *26 '422': *35 '403': *43 @@ -35885,7 +35905,7 @@ paths: application/json: schema: type: array - items: &267 + items: &283 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -35984,7 +36004,7 @@ paths: - updated_at - url examples: - default: &573 + default: &574 value: - author: login: octocat @@ -36093,9 +36113,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: &268 + default: &284 value: author: login: octocat @@ -36169,7 +36189,7 @@ paths: parameters: - *135 - *214 - - &269 + - &285 name: discussion_number description: The number that identifies the discussion. in: path @@ -36181,9 +36201,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: *268 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36207,7 +36227,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 requestBody: required: false content: @@ -36230,9 +36250,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: &574 + default: &575 value: author: login: octocat @@ -36304,7 +36324,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 responses: '204': description: Response @@ -36332,7 +36352,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 - *9 - *4 - *5 @@ -36343,7 +36363,7 @@ paths: application/json: schema: type: array - items: &270 + items: &286 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -36415,7 +36435,7 @@ paths: - updated_at - url examples: - default: &575 + default: &576 value: - author: login: octocat @@ -36485,7 +36505,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 requestBody: required: true content: @@ -36507,9 +36527,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: &271 + default: &287 value: author: login: octocat @@ -36577,8 +36597,8 @@ paths: parameters: - *135 - *214 - - *269 - - &272 + - *285 + - &288 name: comment_number description: The number that identifies the comment. in: path @@ -36590,9 +36610,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: *271 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36616,8 +36636,8 @@ paths: parameters: - *135 - *214 - - *269 - - *272 + - *285 + - *288 requestBody: required: true content: @@ -36639,9 +36659,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: &576 + default: &577 value: author: login: octocat @@ -36707,8 +36727,8 @@ paths: parameters: - *135 - *214 - - *269 - - *272 + - *285 + - *288 responses: '204': description: Response @@ -36736,8 +36756,8 @@ paths: parameters: - *135 - *214 - - *269 - - *272 + - *285 + - *288 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -36763,7 +36783,7 @@ paths: application/json: schema: type: array - items: &273 + items: &289 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -36806,7 +36826,7 @@ paths: - content - created_at examples: - default: &275 + default: &291 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -36858,8 +36878,8 @@ paths: parameters: - *135 - *214 - - *269 - - *272 + - *285 + - *288 requestBody: required: true content: @@ -36892,9 +36912,9 @@ paths: team discussion comment content: application/json: - schema: *273 + schema: *289 examples: - default: &274 + default: &290 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -36923,9 +36943,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36950,9 +36970,9 @@ paths: parameters: - *135 - *214 - - *269 - - *272 - - &276 + - *285 + - *288 + - &292 name: reaction_id description: The unique identifier of the reaction. in: path @@ -36986,7 +37006,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -37012,9 +37032,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 x-github: @@ -37042,7 +37062,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 requestBody: required: true content: @@ -37074,16 +37094,16 @@ paths: description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -37108,8 +37128,8 @@ paths: parameters: - *135 - *214 - - *269 - - *276 + - *285 + - *292 responses: '204': description: Response @@ -37139,9 +37159,9 @@ paths: description: Response content: application/json: - schema: *277 + schema: *293 examples: - default: *278 + default: *294 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -37184,9 +37204,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *295 examples: - default: *280 + default: *296 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -37291,7 +37311,7 @@ paths: description: Response content: application/json: - schema: &281 + schema: &297 title: Team Membership description: Team Membership type: object @@ -37318,7 +37338,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &577 + response-if-user-is-a-team-maintainer: &578 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -37381,9 +37401,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *297 examples: - response-if-users-membership-with-team-is-now-pending: &578 + response-if-users-membership-with-team-is-now-pending: &579 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -37457,7 +37477,7 @@ paths: application/json: schema: type: array - items: &282 + items: &298 title: Team Project description: A team's access to a project. type: object @@ -37525,7 +37545,7 @@ paths: - updated_at - permissions examples: - default: &579 + default: &580 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -37588,7 +37608,7 @@ paths: parameters: - *135 - *214 - - &283 + - &299 name: project_id description: The unique identifier of the project. in: path @@ -37600,9 +37620,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *298 examples: - default: &580 + default: &581 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -37664,7 +37684,7 @@ paths: parameters: - *135 - *214 - - *283 + - *299 requestBody: required: false content: @@ -37730,7 +37750,7 @@ paths: parameters: - *135 - *214 - - *283 + - *299 responses: '204': description: Response @@ -37798,14 +37818,14 @@ paths: parameters: - *135 - *214 - - *284 - - *285 + - *300 + - *301 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &581 + schema: &582 title: Team Repository description: A team's access to a repository. type: object @@ -38376,8 +38396,8 @@ paths: parameters: - *135 - *214 - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -38424,8 +38444,8 @@ paths: parameters: - *135 - *214 - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -38460,9 +38480,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - response-if-child-teams-exist: &582 + response-if-child-teams-exist: &583 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -38586,7 +38606,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#get-a-project-card parameters: - - &287 + - &303 name: card_id description: The unique identifier of the card. in: path @@ -38598,7 +38618,7 @@ paths: description: Response content: application/json: - schema: &288 + schema: &304 title: Project Card description: Project cards represent a scope of work. type: object @@ -38665,7 +38685,7 @@ paths: - created_at - updated_at examples: - default: &289 + default: &305 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -38715,7 +38735,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#update-an-existing-project-card parameters: - - *287 + - *303 requestBody: required: false content: @@ -38742,9 +38762,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *304 examples: - default: *289 + default: *305 '304': *42 '403': *43 '401': *41 @@ -38765,7 +38785,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#delete-a-project-card parameters: - - *287 + - *303 responses: '204': description: Response @@ -38803,7 +38823,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#move-a-project-card parameters: - - *287 + - *303 requestBody: required: true content: @@ -38908,7 +38928,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#get-a-project-column parameters: - - &290 + - &306 name: column_id description: The unique identifier of the column. in: path @@ -38920,7 +38940,7 @@ paths: description: Response content: application/json: - schema: &291 + schema: &307 title: Project Column description: Project columns contain cards of work. type: object @@ -38966,7 +38986,7 @@ paths: - created_at - updated_at examples: - default: &292 + default: &308 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -38995,7 +39015,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#update-an-existing-project-column parameters: - - *290 + - *306 requestBody: required: true content: @@ -39019,9 +39039,9 @@ paths: description: Response content: application/json: - schema: *291 + schema: *307 examples: - default: *292 + default: *308 '304': *42 '403': *43 '401': *41 @@ -39040,7 +39060,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#delete-a-project-column parameters: - - *290 + - *306 responses: '204': description: Response @@ -39063,7 +39083,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#list-project-cards parameters: - - *290 + - *306 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -39084,7 +39104,7 @@ paths: application/json: schema: type: array - items: *288 + items: *304 examples: default: value: @@ -39137,7 +39157,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#create-a-project-card parameters: - - *290 + - *306 requestBody: required: true content: @@ -39177,9 +39197,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *304 examples: - default: *289 + default: *305 '304': *42 '403': *43 '401': *41 @@ -39229,7 +39249,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#move-a-project-column parameters: - - *290 + - *306 requestBody: required: true content: @@ -39285,7 +39305,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/projects#get-a-project parameters: - - *283 + - *299 responses: '200': description: Response @@ -39293,7 +39313,7 @@ paths: application/json: schema: *236 examples: - default: &293 + default: &309 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -39346,7 +39366,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/projects#update-a-project parameters: - - *283 + - *299 requestBody: required: false content: @@ -39394,7 +39414,7 @@ paths: application/json: schema: *236 examples: - default: *293 + default: *309 '404': description: Not Found if the authenticated user does not have access to the project @@ -39433,7 +39453,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/projects#delete-a-project parameters: - - *283 + - *299 responses: '204': description: Delete Success @@ -39477,7 +39497,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/collaborators#list-project-collaborators parameters: - - *283 + - *299 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -39529,7 +39549,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/collaborators#add-project-collaborator parameters: - - *283 + - *299 - *8 requestBody: required: false @@ -39577,7 +39597,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *283 + - *299 - *8 responses: '204': @@ -39606,7 +39626,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *283 + - *299 - *8 responses: '200': @@ -39674,7 +39694,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#list-project-columns parameters: - - *283 + - *299 - *4 - *5 responses: @@ -39684,7 +39704,7 @@ paths: application/json: schema: type: array - items: *291 + items: *307 examples: default: value: @@ -39716,7 +39736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#create-a-project-column parameters: - - *283 + - *299 requestBody: required: true content: @@ -39739,7 +39759,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *307 examples: default: value: @@ -39801,7 +39821,7 @@ paths: resources: type: object properties: - core: &294 + core: &310 title: Rate Limit type: object properties: @@ -39818,20 +39838,20 @@ paths: - remaining - reset - used - graphql: *294 - search: *294 - code_search: *294 - source_import: *294 - integration_manifest: *294 - code_scanning_upload: *294 - actions_runner_registration: *294 - scim: *294 - dependency_sbom: *294 - code_scanning_autofix: *294 + graphql: *310 + search: *310 + code_search: *310 + source_import: *310 + integration_manifest: *310 + code_scanning_upload: *310 + actions_runner_registration: *310 + scim: *310 + dependency_sbom: *310 + code_scanning_autofix: *310 required: - core - search - rate: *294 + rate: *310 required: - rate - resources @@ -39935,14 +39955,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#get-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *295 + schema: *311 examples: default-response: summary: Default response @@ -40441,7 +40461,7 @@ paths: status: disabled '403': *43 '404': *26 - '301': *296 + '301': *312 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40459,8 +40479,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#update-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -40676,10 +40696,10 @@ paths: description: Response content: application/json: - schema: *295 + schema: *311 examples: - default: *297 - '307': &298 + default: *313 + '307': &314 description: Temporary Redirect content: application/json: @@ -40724,8 +40744,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#delete-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -40747,7 +40767,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#delete-a-repository - '307': *298 + '307': *314 '404': *26 '409': *140 x-github: @@ -40771,11 +40791,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 - - &315 + - &331 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -40798,7 +40818,7 @@ paths: type: integer artifacts: type: array - items: &299 + items: &315 title: Artifact description: An artifact type: object @@ -40869,7 +40889,7 @@ paths: - expires_at - updated_at examples: - default: &316 + default: &332 value: total_count: 2 artifacts: @@ -40928,9 +40948,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/artifacts#get-an-artifact parameters: - - *284 - - *285 - - &300 + - *300 + - *301 + - &316 name: artifact_id description: The unique identifier of the artifact. in: path @@ -40942,7 +40962,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *315 examples: default: value: @@ -40979,9 +40999,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/artifacts#delete-an-artifact parameters: - - *284 - - *285 - *300 + - *301 + - *316 responses: '204': description: Response @@ -41005,9 +41025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/artifacts#download-an-artifact parameters: - - *284 - - *285 - *300 + - *301 + - *316 - name: archive_format in: path required: true @@ -41044,14 +41064,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *301 + schema: *317 examples: default: value: @@ -41077,14 +41097,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#get-github-actions-cache-usage-policy-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: &302 + schema: &318 title: Actions cache usage policy for repository description: GitHub Actions cache usage policy for repository. type: object @@ -41096,7 +41116,7 @@ paths: required: - repo_cache_size_limit_in_gb examples: - default: &303 + default: &319 value: repo_cache_size_limit_in_gb: 14 x-github: @@ -41117,8 +41137,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#set-github-actions-cache-usage-policy-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -41126,9 +41146,9 @@ paths: required: true content: application/json: - schema: *302 + schema: *318 examples: - selected_actions: *303 + selected_actions: *319 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41148,11 +41168,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 - - &304 + - &320 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -41186,7 +41206,7 @@ paths: description: Response content: application/json: - schema: &305 + schema: &321 title: Repository actions caches description: Repository actions caches type: object @@ -41228,7 +41248,7 @@ paths: - total_count - actions_caches examples: - default: &306 + default: &322 value: total_count: 1 actions_caches: @@ -41260,23 +41280,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *284 - - *285 + - *300 + - *301 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *304 + - *320 responses: '200': description: Response content: application/json: - schema: *305 + schema: *321 examples: - default: *306 + default: *322 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41296,8 +41316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *284 - - *285 + - *300 + - *301 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -41328,9 +41348,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *284 - - *285 - - &307 + - *300 + - *301 + - &323 name: job_id description: The unique identifier of the job. in: path @@ -41342,7 +41362,7 @@ paths: description: Response content: application/json: - schema: &319 + schema: &335 title: Job description: Information of a job execution in a workflow run type: object @@ -41649,9 +41669,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *284 - - *285 - - *307 + - *300 + - *301 + - *323 responses: '302': description: Response @@ -41679,9 +41699,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *284 - - *285 - - *307 + - *300 + - *301 + - *323 requestBody: required: false content: @@ -41726,8 +41746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Status response @@ -41777,8 +41797,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -41841,8 +41861,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#list-repository-organization-secrets parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -41860,7 +41880,7 @@ paths: type: integer secrets: type: array - items: &321 + items: &337 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -41880,7 +41900,7 @@ paths: - created_at - updated_at examples: - default: &322 + default: &338 value: total_count: 2 secrets: @@ -41913,9 +41933,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#list-repository-organization-variables parameters: - - *284 - - *285 - - *308 + - *300 + - *301 + - *324 - *5 responses: '200': @@ -41932,7 +41952,7 @@ paths: type: integer variables: type: array - items: &325 + items: &341 title: Actions Variable type: object properties: @@ -41962,7 +41982,7 @@ paths: - created_at - updated_at examples: - default: &326 + default: &342 value: total_count: 2 variables: @@ -41995,8 +42015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -42005,7 +42025,7 @@ paths: schema: type: object properties: - enabled: &309 + enabled: &325 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *69 @@ -42038,8 +42058,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -42050,7 +42070,7 @@ paths: schema: type: object properties: - enabled: *309 + enabled: *325 allowed_actions: *69 required: - enabled @@ -42081,14 +42101,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: &310 + schema: &326 type: object properties: access_level: @@ -42106,7 +42126,7 @@ paths: required: - access_level examples: - default: &311 + default: &327 value: access_level: organization x-github: @@ -42131,15 +42151,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: application/json: - schema: *310 + schema: *326 examples: - default: *311 + default: *327 responses: '204': description: Response @@ -42163,8 +42183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -42195,8 +42215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -42228,8 +42248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -42258,8 +42278,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Success response @@ -42299,8 +42319,8 @@ paths: in: query schema: type: string - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -42344,8 +42364,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -42377,8 +42397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -42452,8 +42472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '201': description: Response @@ -42489,8 +42509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '201': description: Response @@ -42520,8 +42540,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 responses: '200': @@ -42551,8 +42571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 responses: '204': @@ -42579,8 +42599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 responses: '200': *87 @@ -42605,8 +42625,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 requestBody: required: true @@ -42655,8 +42675,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 requestBody: required: true @@ -42706,8 +42726,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 responses: '200': *160 @@ -42737,8 +42757,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 - *161 responses: @@ -42768,9 +42788,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *284 - - *285 - - &329 + - *300 + - *301 + - &345 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -42778,7 +42798,7 @@ paths: required: false schema: type: string - - &330 + - &346 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -42786,7 +42806,7 @@ paths: required: false schema: type: string - - &331 + - &347 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -42795,7 +42815,7 @@ paths: required: false schema: type: string - - &332 + - &348 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -42822,7 +42842,7 @@ paths: - pending - *4 - *5 - - &333 + - &349 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-server@3.14/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -42831,7 +42851,7 @@ paths: schema: type: string format: date-time - - &312 + - &328 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -42840,13 +42860,13 @@ paths: schema: type: boolean default: false - - &334 + - &350 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &335 + - &351 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -42869,7 +42889,7 @@ paths: type: integer workflow_runs: type: array - items: &313 + items: &329 title: Workflow Run description: An invocation of a workflow type: object @@ -42964,7 +42984,7 @@ paths: that triggered the run. type: array nullable: true - items: &353 + items: &369 title: Pull Request Minimal type: object properties: @@ -43083,7 +43103,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &357 + properties: &373 id: type: string description: SHA for the commit @@ -43134,7 +43154,7 @@ paths: - name - email nullable: true - required: &358 + required: &374 - id - tree_id - message @@ -43181,7 +43201,7 @@ paths: - workflow_url - pull_requests examples: - default: &336 + default: &352 value: total_count: 1 workflow_runs: @@ -43417,24 +43437,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *284 - - *285 - - &314 + - *300 + - *301 + - &330 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *312 + - *328 responses: '200': description: Response content: application/json: - schema: *313 + schema: *329 examples: - default: &317 + default: &333 value: id: 30433642 name: Build @@ -43675,9 +43695,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '204': description: Response @@ -43700,9 +43720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '200': description: Response @@ -43823,12 +43843,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 - *4 - *5 - - *315 + - *331 responses: '200': description: Response @@ -43844,9 +43864,9 @@ paths: type: integer artifacts: type: array - items: *299 + items: *315 examples: - default: *316 + default: *332 headers: Link: *6 x-github: @@ -43870,25 +43890,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *284 - - *285 - - *314 - - &318 + - *300 + - *301 + - *330 + - &334 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *312 + - *328 responses: '200': description: Response content: application/json: - schema: *313 + schema: *329 examples: - default: *317 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43911,10 +43931,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *284 - - *285 - - *314 - - *318 + - *300 + - *301 + - *330 + - *334 - *4 - *5 responses: @@ -43932,9 +43952,9 @@ paths: type: integer jobs: type: array - items: *319 + items: *335 examples: - default: &320 + default: &336 value: total_count: 1 jobs: @@ -44047,10 +44067,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *284 - - *285 - - *314 - - *318 + - *300 + - *301 + - *330 + - *334 responses: '302': description: Response @@ -44078,9 +44098,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '202': description: Response @@ -44113,9 +44133,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 requestBody: required: true content: @@ -44182,9 +44202,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '202': description: Response @@ -44217,9 +44237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -44249,9 +44269,9 @@ paths: type: integer jobs: type: array - items: *319 + items: *335 examples: - default: *320 + default: *336 headers: Link: *6 x-github: @@ -44276,9 +44296,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '302': description: Response @@ -44305,9 +44325,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '204': description: Response @@ -44334,9 +44354,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '200': description: Response @@ -44396,7 +44416,7 @@ paths: items: type: object properties: - type: &410 + type: &426 type: string description: The type of reviewer. enum: @@ -44406,7 +44426,7 @@ paths: reviewer: anyOf: - *19 - - *286 + - *302 required: - environment - wait_timer @@ -44481,9 +44501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 requestBody: required: true content: @@ -44530,7 +44550,7 @@ paths: application/json: schema: type: array - items: &405 + items: &421 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -44636,7 +44656,7 @@ paths: - created_at - updated_at examples: - default: &406 + default: &422 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -44692,9 +44712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 requestBody: required: false content: @@ -44738,9 +44758,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 requestBody: required: false content: @@ -44787,8 +44807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#list-repository-secrets parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -44806,9 +44826,9 @@ paths: type: integer secrets: type: array - items: *321 + items: *337 examples: - default: *322 + default: *338 headers: Link: *6 x-github: @@ -44833,16 +44853,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#get-a-repository-public-key parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *323 + schema: *339 examples: - default: *324 + default: *340 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44864,17 +44884,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#get-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 responses: '200': description: Response content: application/json: - schema: *321 + schema: *337 examples: - default: &423 + default: &439 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -44900,8 +44920,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 requestBody: required: true @@ -44959,8 +44979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#delete-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 responses: '204': @@ -44986,9 +45006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#list-repository-variables parameters: - - *284 - - *285 - - *308 + - *300 + - *301 + - *324 - *5 responses: '200': @@ -45005,9 +45025,9 @@ paths: type: integer variables: type: array - items: *325 + items: *341 examples: - default: *326 + default: *342 headers: Link: *6 x-github: @@ -45030,8 +45050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#create-a-repository-variable parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -45083,17 +45103,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#get-a-repository-variable parameters: - - *284 - - *285 + - *300 + - *301 - *166 responses: '200': description: Response content: application/json: - schema: *325 + schema: *341 examples: - default: &424 + default: &440 value: name: USERNAME value: octocat @@ -45119,8 +45139,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#update-a-repository-variable parameters: - - *284 - - *285 + - *300 + - *301 - *166 requestBody: required: true @@ -45163,8 +45183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#delete-a-repository-variable parameters: - - *284 - - *285 + - *300 + - *301 - *166 responses: '204': @@ -45190,8 +45210,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflows#list-repository-workflows parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -45209,7 +45229,7 @@ paths: type: integer workflows: type: array - items: &327 + items: &343 title: Workflow description: A GitHub Actions workflow type: object @@ -45316,9 +45336,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflows#get-a-workflow parameters: - - *284 - - *285 - - &328 + - *300 + - *301 + - &344 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -45333,7 +45353,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *343 examples: default: value: @@ -45366,9 +45386,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflows#disable-a-workflow parameters: - - *284 - - *285 - - *328 + - *300 + - *301 + - *344 responses: '204': description: Response @@ -45393,9 +45413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *284 - - *285 - - *328 + - *300 + - *301 + - *344 responses: '204': description: Response @@ -45446,9 +45466,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflows#enable-a-workflow parameters: - - *284 - - *285 - - *328 + - *300 + - *301 + - *344 responses: '204': description: Response @@ -45475,19 +45495,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *284 - - *285 - - *328 - - *329 - - *330 - - *331 - - *332 + - *300 + - *301 + - *344 + - *345 + - *346 + - *347 + - *348 - *4 - *5 - - *333 - - *312 - - *334 - - *335 + - *349 + - *328 + - *350 + - *351 responses: '200': description: Response @@ -45503,9 +45523,9 @@ paths: type: integer workflow_runs: type: array - items: *313 + items: *329 examples: - default: *336 + default: *352 headers: Link: *6 x-github: @@ -45528,8 +45548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-activities parameters: - - *284 - - *285 + - *300 + - *301 - *9 - *4 - *88 @@ -45693,8 +45713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/assignees#list-assignees parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -45731,8 +45751,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *284 - - *285 + - *300 + - *301 - name: assignee in: path required: true @@ -45766,8 +45786,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -45775,7 +45795,7 @@ paths: application/json: schema: type: array - items: &337 + items: &353 title: Autolink reference description: An autolink reference. type: object @@ -45825,8 +45845,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -45865,9 +45885,9 @@ paths: description: response content: application/json: - schema: *337 + schema: *353 examples: - default: &338 + default: &354 value: id: 1 key_prefix: TICKET- @@ -45898,9 +45918,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *284 - - *285 - - &339 + - *300 + - *301 + - &355 name: autolink_id description: The unique identifier of the autolink. in: path @@ -45912,9 +45932,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *353 examples: - default: *338 + default: *354 '404': *26 x-github: githubCloudOnly: false @@ -45934,9 +45954,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *284 - - *285 - - *339 + - *300 + - *301 + - *355 responses: '204': description: Response @@ -45960,8 +45980,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response if Dependabot is enabled @@ -46008,8 +46028,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branches#list-branches parameters: - - *284 - - *285 + - *300 + - *301 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -46047,7 +46067,7 @@ paths: - url protected: type: boolean - protection: &341 + protection: &357 title: Branch Protection description: Branch Protection type: object @@ -46089,7 +46109,7 @@ paths: required: - contexts - checks - enforce_admins: &344 + enforce_admins: &360 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -46104,7 +46124,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &346 + required_pull_request_reviews: &362 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -46125,7 +46145,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *286 + items: *302 apps: description: The list of apps with review dismissal access. @@ -46154,7 +46174,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *286 + items: *302 apps: description: The list of apps allowed to bypass pull request requirements. @@ -46180,7 +46200,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &343 + restrictions: &359 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -46487,9 +46507,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branches#get-a-branch parameters: - - *284 - - *285 - - &342 + - *300 + - *301 + - &358 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-server@3.14/graphql). @@ -46503,14 +46523,14 @@ paths: description: Response content: application/json: - schema: &352 + schema: &368 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &383 + commit: &399 title: Commit description: Commit type: object @@ -46544,7 +46564,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &340 + properties: &356 name: type: string example: '"Chris Wanstrath"' @@ -46559,7 +46579,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *340 + properties: *356 nullable: true message: type: string @@ -46580,7 +46600,7 @@ paths: required: - sha - url - verification: &430 + verification: &446 title: Verification type: object properties: @@ -46646,7 +46666,7 @@ paths: type: integer files: type: array - items: &394 + items: &410 title: Diff Entry description: Diff Entry type: object @@ -46729,7 +46749,7 @@ paths: - self protected: type: boolean - protection: *341 + protection: *357 protection_url: type: string format: uri @@ -46833,7 +46853,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *296 + '301': *312 '404': *26 x-github: githubCloudOnly: false @@ -46855,15 +46875,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *341 + schema: *357 examples: default: value: @@ -47057,9 +47077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#update-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -47314,7 +47334,7 @@ paths: url: type: string format: uri - required_status_checks: &349 + required_status_checks: &365 title: Status Check Policy description: Status Check Policy type: object @@ -47390,7 +47410,7 @@ paths: items: *19 teams: type: array - items: *286 + items: *302 apps: type: array items: *25 @@ -47408,7 +47428,7 @@ paths: items: *19 teams: type: array - items: *286 + items: *302 apps: type: array items: *25 @@ -47466,7 +47486,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *343 + restrictions: *359 required_conversation_resolution: type: object properties: @@ -47578,9 +47598,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#delete-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -47605,17 +47625,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *344 + schema: *360 examples: - default: &345 + default: &361 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -47637,17 +47657,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *344 + schema: *360 examples: - default: *345 + default: *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47666,9 +47686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -47693,17 +47713,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *346 + schema: *362 examples: - default: &347 + default: &363 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -47799,9 +47819,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -47899,9 +47919,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *362 examples: - default: *347 + default: *363 '422': *35 x-github: githubCloudOnly: false @@ -47922,9 +47942,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -47951,17 +47971,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *344 + schema: *360 examples: - default: &348 + default: &364 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -47984,17 +48004,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *344 + schema: *360 examples: - default: *348 + default: *364 '404': *26 x-github: githubCloudOnly: false @@ -48014,9 +48034,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -48041,17 +48061,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-status-checks-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *349 + schema: *365 examples: - default: &350 + default: &366 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -48077,9 +48097,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#update-status-check-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -48131,9 +48151,9 @@ paths: description: Response content: application/json: - schema: *349 + schema: *365 examples: - default: *350 + default: *366 '404': *26 '422': *35 x-github: @@ -48155,9 +48175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#remove-status-check-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -48181,9 +48201,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response @@ -48217,9 +48237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#add-status-check-contexts parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -48286,9 +48306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#set-status-check-contexts parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -48352,9 +48372,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: content: application/json: @@ -48420,15 +48440,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *343 + schema: *359 examples: default: value: @@ -48519,9 +48539,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#delete-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -48544,9 +48564,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response @@ -48556,7 +48576,7 @@ paths: type: array items: *25 examples: - default: &351 + default: &367 value: - id: 1 slug: octoapp @@ -48613,9 +48633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -48649,7 +48669,7 @@ paths: type: array items: *25 examples: - default: *351 + default: *367 '422': *35 x-github: githubCloudOnly: false @@ -48670,9 +48690,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -48706,7 +48726,7 @@ paths: type: array items: *25 examples: - default: *351 + default: *367 '422': *35 x-github: githubCloudOnly: false @@ -48727,9 +48747,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -48763,7 +48783,7 @@ paths: type: array items: *25 examples: - default: *351 + default: *367 '422': *35 x-github: githubCloudOnly: false @@ -48785,9 +48805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response @@ -48795,9 +48815,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - default: *262 + default: *278 '404': *26 x-github: githubCloudOnly: false @@ -48817,9 +48837,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -48855,9 +48875,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - default: *262 + default: *278 '422': *35 x-github: githubCloudOnly: false @@ -48878,9 +48898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -48916,9 +48936,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - default: *262 + default: *278 '422': *35 x-github: githubCloudOnly: false @@ -48939,9 +48959,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: content: application/json: @@ -48976,9 +48996,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - default: *262 + default: *278 '422': *35 x-github: githubCloudOnly: false @@ -49000,9 +49020,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response @@ -49036,9 +49056,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -49096,9 +49116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -49156,9 +49176,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -49218,9 +49238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branches#rename-a-branch parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -49242,7 +49262,7 @@ paths: description: Response content: application/json: - schema: *352 + schema: *368 examples: default: value: @@ -49355,8 +49375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#create-a-check-run parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -49635,7 +49655,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &370 title: CheckRun description: A check performed on the code of a given code change type: object @@ -49754,8 +49774,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *353 - deployment: &618 + items: *369 + deployment: &619 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -50035,9 +50055,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#get-a-check-run parameters: - - *284 - - *285 - - &355 + - *300 + - *301 + - &371 name: check_run_id description: The unique identifier of the check run. in: path @@ -50049,9 +50069,9 @@ paths: description: Response content: application/json: - schema: *354 + schema: *370 examples: - default: &356 + default: &372 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -50151,9 +50171,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#update-a-check-run parameters: - - *284 - - *285 - - *355 + - *300 + - *301 + - *371 requestBody: required: true content: @@ -50393,9 +50413,9 @@ paths: description: Response content: application/json: - schema: *354 + schema: *370 examples: - default: *356 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50415,9 +50435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#list-check-run-annotations parameters: - - *284 - - *285 - - *355 + - *300 + - *301 + - *371 - *4 - *5 responses: @@ -50512,9 +50532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#rerequest-a-check-run parameters: - - *284 - - *285 - - *355 + - *300 + - *301 + - *371 responses: '201': description: Response @@ -50558,8 +50578,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/suites#create-a-check-suite parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -50581,7 +50601,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &359 + schema: &375 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -50645,7 +50665,7 @@ paths: nullable: true pull_requests: type: array - items: *353 + items: *369 nullable: true app: title: GitHub app @@ -50671,8 +50691,8 @@ paths: title: Simple Commit description: A commit. type: object - properties: *357 - required: *358 + properties: *373 + required: *374 latest_check_runs_count: type: integer check_runs_url: @@ -50700,7 +50720,7 @@ paths: - check_runs_url - pull_requests examples: - default: &360 + default: &376 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -50991,9 +51011,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *359 + schema: *375 examples: - default: *360 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51012,8 +51032,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -51322,9 +51342,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/suites#get-a-check-suite parameters: - - *284 - - *285 - - &361 + - *300 + - *301 + - &377 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -51336,9 +51356,9 @@ paths: description: Response content: application/json: - schema: *359 + schema: *375 examples: - default: *360 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51361,17 +51381,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *284 - - *285 - - *361 - - &391 + - *300 + - *301 + - *377 + - &407 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &392 + - &408 name: status description: Returns check runs with the specified `status`. in: query @@ -51410,9 +51430,9 @@ paths: type: integer check_runs: type: array - items: *354 + items: *370 examples: - default: &393 + default: &409 value: total_count: 1 check_runs: @@ -51514,9 +51534,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/suites#rerequest-a-check-suite parameters: - - *284 - - *285 - - *361 + - *300 + - *301 + - *377 responses: '201': description: Response @@ -51549,20 +51569,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *178 - *179 - *5 - *4 - - &373 + - &389 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *362 + schema: *378 - *9 - name: sort description: The property by which to sort the results. @@ -51585,7 +51605,7 @@ paths: be returned. in: query required: false - schema: *363 + schema: *379 responses: '200': description: Response @@ -51601,7 +51621,7 @@ paths: updated_at: *100 url: *97 html_url: *98 - instances_url: *364 + instances_url: *380 state: *92 fixed_at: *102 dismissed_by: @@ -51612,11 +51632,11 @@ paths: required: *18 nullable: true dismissed_at: *101 - dismissed_reason: *365 - dismissed_comment: *366 - rule: *367 - tool: *368 - most_recent_instance: *369 + dismissed_reason: *381 + dismissed_comment: *382 + rule: *383 + tool: *384 + most_recent_instance: *385 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -51739,7 +51759,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *42 - '403': &370 + '403': &386 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -51766,9 +51786,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *284 - - *285 - - &371 + - *300 + - *301 + - &387 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -51782,7 +51802,7 @@ paths: description: Response content: application/json: - schema: &372 + schema: &388 type: object properties: number: *93 @@ -51790,7 +51810,7 @@ paths: updated_at: *100 url: *97 html_url: *98 - instances_url: *364 + instances_url: *380 state: *92 fixed_at: *102 dismissed_by: @@ -51801,8 +51821,8 @@ paths: required: *18 nullable: true dismissed_at: *101 - dismissed_reason: *365 - dismissed_comment: *366 + dismissed_reason: *381 + dismissed_comment: *382 rule: type: object properties: @@ -51856,8 +51876,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *368 - most_recent_instance: *369 + tool: *384 + most_recent_instance: *385 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -51953,7 +51973,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *42 - '403': *370 + '403': *386 '404': *26 '503': *104 x-github: @@ -51973,9 +51993,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *284 - - *285 - - *371 + - *300 + - *301 + - *387 requestBody: required: true content: @@ -51990,8 +52010,8 @@ paths: enum: - open - dismissed - dismissed_reason: *365 - dismissed_comment: *366 + dismissed_reason: *381 + dismissed_comment: *382 required: - state examples: @@ -52006,7 +52026,7 @@ paths: description: Response content: application/json: - schema: *372 + schema: *388 examples: default: value: @@ -52082,7 +52102,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *34 - '403': &378 + '403': &394 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -52109,12 +52129,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *284 - - *285 - - *371 + - *300 + - *301 + - *387 - *5 - *4 - - *373 + - *389 responses: '200': description: Response @@ -52122,7 +52142,7 @@ paths: application/json: schema: type: array - items: *369 + items: *385 examples: default: value: @@ -52161,7 +52181,7 @@ paths: end_column: 50 classifications: - source - '403': *370 + '403': *386 '404': *26 '503': *104 x-github: @@ -52195,8 +52215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *178 - *179 - *5 @@ -52207,12 +52227,12 @@ paths: for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *362 + schema: *378 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &376 + schema: &392 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -52233,23 +52253,23 @@ paths: application/json: schema: type: array - items: &377 + items: &393 type: object properties: - ref: *362 - commit_sha: &379 + ref: *378 + commit_sha: &395 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *374 + analysis_key: *390 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *375 + category: *391 error: type: string example: error reading field xyz @@ -52273,8 +52293,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *376 - tool: *368 + sarif_id: *392 + tool: *384 deletable: type: boolean warning: @@ -52335,7 +52355,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *370 + '403': *386 '404': *26 '503': *104 x-github: @@ -52371,8 +52391,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -52385,7 +52405,7 @@ paths: description: Response content: application/json: - schema: *377 + schema: *393 examples: response: summary: application/json response @@ -52439,7 +52459,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *370 + '403': *386 '404': *26 '503': *104 x-github: @@ -52521,8 +52541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -52575,7 +52595,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *34 - '403': *378 + '403': *394 '404': *26 '503': *104 x-github: @@ -52597,8 +52617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -52660,7 +52680,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *370 + '403': *386 '404': *26 '503': *104 x-github: @@ -52681,8 +52701,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -52753,7 +52773,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *378 + '403': *394 '404': *26 '409': description: Response if there is already a validation run in progress with @@ -52824,8 +52844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -52833,7 +52853,7 @@ paths: schema: type: object properties: - commit_sha: *379 + commit_sha: *395 ref: type: string description: |- @@ -52886,7 +52906,7 @@ paths: schema: type: object properties: - id: *376 + id: *392 url: type: string description: The REST API URL for checking the status of the upload. @@ -52900,7 +52920,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *378 + '403': *394 '404': *26 '413': description: Payload Too Large if the sarif field is too large @@ -52923,8 +52943,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *284 - - *285 + - *300 + - *301 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -52970,7 +52990,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *370 + '403': *386 '404': description: Not Found if the sarif id does not match any upload '503': *104 @@ -52995,8 +53015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-codeowners-errors parameters: - - *284 - - *285 + - *300 + - *301 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -53119,8 +53139,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *284 - - *285 + - *300 + - *301 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -53162,7 +53182,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &380 + properties: &396 login: type: string example: octocat @@ -53255,7 +53275,7 @@ paths: user_view_type: type: string example: public - required: &381 + required: &397 - avatar_url - events_url - followers_url @@ -53328,8 +53348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *284 - - *285 + - *300 + - *301 - *8 responses: '204': @@ -53366,8 +53386,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *284 - - *285 + - *300 + - *301 - *8 requestBody: required: false @@ -53437,8 +53457,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *284 - - *285 + - *300 + - *301 - *8 responses: '204': @@ -53470,8 +53490,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *284 - - *285 + - *300 + - *301 - *8 responses: '200': @@ -53492,8 +53512,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *380 - required: *381 + properties: *396 + required: *397 nullable: true required: - permission @@ -53548,8 +53568,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -53559,7 +53579,7 @@ paths: application/json: schema: type: array - items: &382 + items: &398 title: Commit Comment description: Commit Comment type: object @@ -53617,7 +53637,7 @@ paths: - created_at - updated_at examples: - default: &385 + default: &401 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -53676,17 +53696,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#get-a-commit-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '200': description: Response content: application/json: - schema: *382 + schema: *398 examples: - default: &386 + default: &402 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -53743,8 +53763,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#update-a-commit-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -53767,7 +53787,7 @@ paths: description: Response content: application/json: - schema: *382 + schema: *398 examples: default: value: @@ -53818,8 +53838,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#delete-a-commit-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '204': @@ -53841,8 +53861,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). @@ -53869,9 +53889,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 '404': *26 @@ -53892,8 +53912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -53926,16 +53946,16 @@ paths: description: Reaction exists content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Reaction created content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '422': *35 x-github: githubCloudOnly: false @@ -53957,10 +53977,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *284 - - *285 + - *300 + - *301 - *120 - - *276 + - *292 responses: '204': description: Response @@ -54009,8 +54029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/commits#list-commits parameters: - - *284 - - *285 + - *300 + - *301 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -54066,9 +54086,9 @@ paths: application/json: schema: type: array - items: *383 + items: *399 examples: - default: &491 + default: &507 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -54161,9 +54181,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/commits#list-branches-for-head-commit parameters: - - *284 - - *285 - - &384 + - *300 + - *301 + - &400 name: commit_sha description: The SHA of the commit. in: path @@ -54235,9 +54255,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#list-commit-comments parameters: - - *284 - - *285 - - *384 + - *300 + - *301 + - *400 - *4 - *5 responses: @@ -54247,9 +54267,9 @@ paths: application/json: schema: type: array - items: *382 + items: *398 examples: - default: *385 + default: *401 headers: Link: *6 x-github: @@ -54277,9 +54297,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#create-a-commit-comment parameters: - - *284 - - *285 - - *384 + - *300 + - *301 + - *400 requestBody: required: true content: @@ -54314,9 +54334,9 @@ paths: description: Response content: application/json: - schema: *382 + schema: *398 examples: - default: *386 + default: *402 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -54344,9 +54364,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *284 - - *285 - - *384 + - *300 + - *301 + - *400 - *4 - *5 responses: @@ -54356,7 +54376,7 @@ paths: application/json: schema: type: array - items: &481 + items: &497 title: Pull Request Simple description: Pull Request Simple type: object @@ -54462,8 +54482,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *387 - required: *388 + properties: *403 + required: *404 nullable: true active_lock_reason: type: string @@ -54508,7 +54528,7 @@ paths: nullable: true requested_teams: type: array - items: *286 + items: *302 nullable: true head: type: object @@ -54559,7 +54579,7 @@ paths: _links: type: object properties: - comments: &389 + comments: &405 title: Link description: Hypermedia Link type: object @@ -54568,13 +54588,13 @@ paths: type: string required: - href - commits: *389 - statuses: *389 - html: *389 - issue: *389 - review_comments: *389 - review_comment: *389 - self: *389 + commits: *405 + statuses: *405 + html: *405 + issue: *405 + review_comments: *405 + review_comment: *405 + self: *405 required: - comments - commits @@ -54585,7 +54605,7 @@ paths: - review_comment - self author_association: *108 - auto_merge: &483 + auto_merge: &499 title: Auto merge description: The status of auto merging a pull request. type: object @@ -54648,7 +54668,7 @@ paths: - author_association - auto_merge examples: - default: &482 + default: &498 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -55185,11 +55205,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/commits#get-a-commit parameters: - - *284 - - *285 + - *300 + - *301 - *5 - *4 - - &390 + - &406 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -55204,9 +55224,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *399 examples: - default: &466 + default: &482 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -55316,11 +55336,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *284 - - *285 - - *390 - - *391 - - *392 + - *300 + - *301 + - *406 + - *407 + - *408 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -55354,9 +55374,9 @@ paths: type: integer check_runs: type: array - items: *354 + items: *370 examples: - default: *393 + default: *409 headers: Link: *6 x-github: @@ -55381,9 +55401,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *284 - - *285 - - *390 + - *300 + - *301 + - *406 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -55391,7 +55411,7 @@ paths: schema: type: integer example: 1 - - *391 + - *407 - *4 - *5 responses: @@ -55409,7 +55429,7 @@ paths: type: integer check_suites: type: array - items: *359 + items: *375 examples: default: value: @@ -55609,9 +55629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *284 - - *285 - - *390 + - *300 + - *301 + - *406 - *4 - *5 responses: @@ -55809,9 +55829,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *284 - - *285 - - *390 + - *300 + - *301 + - *406 - *4 - *5 responses: @@ -55821,7 +55841,7 @@ paths: application/json: schema: type: array - items: &539 + items: &540 title: Status description: The status of a commit. type: object @@ -55902,7 +55922,7 @@ paths: site_admin: false headers: Link: *6 - '301': *296 + '301': *312 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55970,8 +55990,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/commits#compare-two-commits parameters: - - *284 - - *285 + - *300 + - *301 - *5 - *4 - name: basehead @@ -56014,8 +56034,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *383 - merge_base_commit: *383 + base_commit: *399 + merge_base_commit: *399 status: type: string enum: @@ -56035,10 +56055,10 @@ paths: example: 6 commits: type: array - items: *383 + items: *399 files: type: array - items: *394 + items: *410 required: - url - html_url @@ -56317,8 +56337,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#get-repository-content parameters: - - *284 - - *285 + - *300 + - *301 - name: path description: path parameter in: path @@ -56461,7 +56481,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &395 + response-if-content-is-a-file: &411 summary: Response if content is a file value: type: file @@ -56593,7 +56613,7 @@ paths: - size - type - url - - &496 + - &512 title: Content File description: Content File type: object @@ -56794,7 +56814,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *395 + response-if-content-is-a-file: *411 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -56863,7 +56883,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *26 '403': *43 - '302': &500 + '302': &516 description: Found '304': *42 x-github: @@ -56887,8 +56907,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#create-or-update-file-contents parameters: - - *284 - - *285 + - *300 + - *301 - name: path description: path parameter in: path @@ -56981,7 +57001,7 @@ paths: description: Response content: application/json: - schema: &396 + schema: &412 title: File Commit description: File Commit type: object @@ -57127,7 +57147,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *412 examples: example-for-creating-a-file: value: @@ -57178,7 +57198,7 @@ paths: schema: oneOf: - *24 - - &425 + - &441 description: Repository rule violation was detected type: object properties: @@ -57231,8 +57251,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#delete-a-file parameters: - - *284 - - *285 + - *300 + - *301 - name: path description: path parameter in: path @@ -57293,7 +57313,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *412 examples: default: value: @@ -57344,8 +57364,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-contributors parameters: - - *284 - - *285 + - *300 + - *301 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -57468,8 +57488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *186 - *187 - *188 @@ -57491,7 +57511,7 @@ paths: application/json: schema: type: array - items: &399 + items: &415 type: object description: A Dependabot alert. properties: @@ -57524,7 +57544,7 @@ paths: enum: - development - runtime - security_advisory: *397 + security_advisory: *413 security_vulnerability: *96 url: *97 html_url: *98 @@ -57555,7 +57575,7 @@ paths: nullable: true maxLength: 280 fixed_at: *102 - auto_dismissed_at: *398 + auto_dismissed_at: *414 required: - number - state @@ -57782,9 +57802,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *284 - - *285 - - &400 + - *300 + - *301 + - &416 name: alert_number in: path description: |- @@ -57799,7 +57819,7 @@ paths: description: Response content: application/json: - schema: *399 + schema: *415 examples: default: value: @@ -57903,9 +57923,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *284 - - *285 - - *400 + - *300 + - *301 + - *416 requestBody: required: true content: @@ -57950,7 +57970,7 @@ paths: description: Response content: application/json: - schema: *399 + schema: *415 examples: default: value: @@ -58079,8 +58099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/secrets#list-repository-secrets parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -58098,7 +58118,7 @@ paths: type: integer secrets: type: array - items: &403 + items: &419 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -58151,16 +58171,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *401 + schema: *417 examples: - default: *402 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58180,15 +58200,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/secrets#get-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 responses: '200': description: Response content: application/json: - schema: *403 + schema: *419 examples: default: value: @@ -58214,8 +58234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 requestBody: required: true @@ -58268,8 +58288,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 responses: '204': @@ -58292,8 +58312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *284 - - *285 + - *300 + - *301 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -58453,8 +58473,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -58679,8 +58699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -58755,7 +58775,7 @@ paths: - version - url additionalProperties: false - metadata: &404 + metadata: &420 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -58788,7 +58808,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *404 + metadata: *420 resolved: type: object description: A collection of resolved package dependencies. @@ -58801,7 +58821,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *404 + metadata: *420 relationship: type: string description: A notation of whether a dependency is requested @@ -58930,8 +58950,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/deployments#list-deployments parameters: - - *284 - - *285 + - *300 + - *301 - name: sha description: The SHA recorded at creation time. in: query @@ -58971,9 +58991,9 @@ paths: application/json: schema: type: array - items: *405 + items: *421 examples: - default: *406 + default: *422 headers: Link: *6 x-github: @@ -59039,8 +59059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/deployments#create-a-deployment parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -59121,7 +59141,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *421 examples: simple-example: summary: Simple example @@ -59194,9 +59214,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/deployments#get-a-deployment parameters: - - *284 - - *285 - - &407 + - *300 + - *301 + - &423 name: deployment_id description: deployment_id parameter in: path @@ -59208,7 +59228,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *421 examples: default: value: @@ -59273,9 +59293,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/deployments#delete-a-deployment parameters: - - *284 - - *285 - - *407 + - *300 + - *301 + - *423 responses: '204': description: Response @@ -59297,9 +59317,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/statuses#list-deployment-statuses parameters: - - *284 - - *285 - - *407 + - *300 + - *301 + - *423 - *4 - *5 responses: @@ -59309,7 +59329,7 @@ paths: application/json: schema: type: array - items: &408 + items: &424 title: Deployment Status description: The status of a deployment. type: object @@ -59470,9 +59490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/statuses#create-a-deployment-status parameters: - - *284 - - *285 - - *407 + - *300 + - *301 + - *423 requestBody: required: true content: @@ -59547,9 +59567,9 @@ paths: description: Response content: application/json: - schema: *408 + schema: *424 examples: - default: &409 + default: &425 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -59605,9 +59625,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/statuses#get-a-deployment-status parameters: - - *284 - - *285 - - *407 + - *300 + - *301 + - *423 - name: status_id in: path required: true @@ -59618,9 +59638,9 @@ paths: description: Response content: application/json: - schema: *408 + schema: *424 examples: - default: *409 + default: *425 '404': *26 x-github: githubCloudOnly: false @@ -59645,8 +59665,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -59703,8 +59723,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/environments#list-environments parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -59721,7 +59741,7 @@ paths: type: integer environments: type: array - items: &411 + items: &427 title: Environment description: Details of a deployment environment type: object @@ -59773,7 +59793,7 @@ paths: type: type: string example: wait_timer - wait_timer: &413 + wait_timer: &429 type: integer example: 30 description: The amount of time to delay a job after @@ -59810,11 +59830,11 @@ paths: items: type: object properties: - type: *410 + type: *426 reviewer: anyOf: - *19 - - *286 + - *302 required: - id - node_id @@ -59834,7 +59854,7 @@ paths: - id - node_id - type - deployment_branch_policy: &414 + deployment_branch_policy: &430 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -59949,9 +59969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/environments#get-an-environment parameters: - - *284 - - *285 - - &412 + - *300 + - *301 + - &428 name: environment_name in: path required: true @@ -59964,9 +59984,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *427 examples: - default: &415 + default: &431 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -60049,9 +60069,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/environments#create-or-update-an-environment parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 requestBody: required: false content: @@ -60060,7 +60080,7 @@ paths: type: object nullable: true properties: - wait_timer: *413 + wait_timer: *429 prevent_self_review: type: boolean example: false @@ -60077,13 +60097,13 @@ paths: items: type: object properties: - type: *410 + type: *426 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *414 + deployment_branch_policy: *430 additionalProperties: false examples: default: @@ -60103,9 +60123,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *427 examples: - default: *415 + default: *431 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -60129,9 +60149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/environments#delete-an-environment parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 responses: '204': description: Default response @@ -60156,9 +60176,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *4 - *5 responses: @@ -60176,7 +60196,7 @@ paths: example: 2 branch_policies: type: array - items: &416 + items: &432 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -60233,9 +60253,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 requestBody: required: true content: @@ -60281,9 +60301,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *432 examples: - example-wildcard: &417 + example-wildcard: &433 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -60325,10 +60345,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *284 - - *285 - - *412 - - &418 + - *300 + - *301 + - *428 + - &434 name: branch_policy_id in: path required: true @@ -60340,9 +60360,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *432 examples: - default: *417 + default: *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60361,10 +60381,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *284 - - *285 - - *412 - - *418 + - *300 + - *301 + - *428 + - *434 requestBody: required: true content: @@ -60392,9 +60412,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *432 examples: - default: *417 + default: *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60413,10 +60433,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *284 - - *285 - - *412 - - *418 + - *300 + - *301 + - *428 + - *434 responses: '204': description: Response @@ -60441,9 +60461,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *412 - - *285 - - *284 + - *428 + - *301 + - *300 responses: '200': description: List of deployment protection rules @@ -60459,7 +60479,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &419 + items: &435 title: Deployment protection rule description: Deployment protection rule type: object @@ -60478,7 +60498,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &420 + app: &436 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -60577,9 +60597,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *412 - - *285 - - *284 + - *428 + - *301 + - *300 requestBody: content: application/json: @@ -60600,9 +60620,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *419 + schema: *435 examples: - default: &421 + default: &437 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -60637,9 +60657,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *412 - - *285 - - *284 + - *428 + - *301 + - *300 - *5 - *4 responses: @@ -60658,7 +60678,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *420 + items: *436 examples: default: value: @@ -60693,10 +60713,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *284 - - *285 - - *412 - - &422 + - *300 + - *301 + - *428 + - &438 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -60708,9 +60728,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *435 examples: - default: *421 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60731,10 +60751,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *412 - - *285 - - *284 - - *422 + - *428 + - *301 + - *300 + - *438 responses: '204': description: Response @@ -60760,9 +60780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#list-environment-secrets parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *4 - *5 responses: @@ -60780,9 +60800,9 @@ paths: type: integer secrets: type: array - items: *321 + items: *337 examples: - default: *322 + default: *338 headers: Link: *6 x-github: @@ -60807,17 +60827,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#get-an-environment-public-key parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 responses: '200': description: Response content: application/json: - schema: *323 + schema: *339 examples: - default: *324 + default: *340 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60839,18 +60859,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#get-an-environment-secret parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *163 responses: '200': description: Response content: application/json: - schema: *321 + schema: *337 examples: - default: *423 + default: *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60872,9 +60892,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *163 requestBody: required: true @@ -60932,9 +60952,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#delete-an-environment-secret parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *163 responses: '204': @@ -60960,10 +60980,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#list-environment-variables parameters: - - *284 - - *285 - - *412 - - *308 + - *300 + - *301 + - *428 + - *324 - *5 responses: '200': @@ -60980,9 +61000,9 @@ paths: type: integer variables: type: array - items: *325 + items: *341 examples: - default: *326 + default: *342 headers: Link: *6 x-github: @@ -61005,9 +61025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#create-an-environment-variable parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 requestBody: required: true content: @@ -61059,18 +61079,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#get-an-environment-variable parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *166 responses: '200': description: Response content: application/json: - schema: *325 + schema: *341 examples: - default: *424 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61091,10 +61111,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#update-an-environment-variable parameters: - - *284 - - *285 + - *300 + - *301 - *166 - - *412 + - *428 requestBody: required: true content: @@ -61136,10 +61156,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#delete-an-environment-variable parameters: - - *284 - - *285 + - *300 + - *301 - *166 - - *412 + - *428 responses: '204': description: Response @@ -61161,8 +61181,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/events#list-repository-events parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -61239,8 +61259,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/forks#list-forks parameters: - - *284 - - *285 + - *300 + - *301 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -61399,8 +61419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/forks#create-a-fork parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -61432,9 +61452,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *311 examples: - default: *297 + default: *313 '400': *34 '422': *35 '403': *43 @@ -61455,8 +61475,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/blobs#create-a-blob parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -61516,7 +61536,7 @@ paths: schema: oneOf: - *138 - - *425 + - *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61541,8 +61561,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/blobs#get-a-blob parameters: - - *284 - - *285 + - *300 + - *301 - name: file_sha in: path required: true @@ -61641,8 +61661,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/commits#create-a-commit parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -61751,7 +61771,7 @@ paths: description: Response content: application/json: - schema: &426 + schema: &442 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -61958,15 +61978,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/commits#get-a-commit-object parameters: - - *284 - - *285 - - *384 + - *300 + - *301 + - *400 responses: '200': description: Response content: application/json: - schema: *426 + schema: *442 examples: default: value: @@ -62019,9 +62039,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/refs#list-matching-references parameters: - - *284 - - *285 - - &427 + - *300 + - *301 + - &443 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -62038,7 +62058,7 @@ paths: application/json: schema: type: array - items: &428 + items: &444 title: Git Reference description: Git references within a repository type: object @@ -62113,17 +62133,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/refs#get-a-reference parameters: - - *284 - - *285 - - *427 + - *300 + - *301 + - *443 responses: '200': description: Response content: application/json: - schema: *428 + schema: *444 examples: - default: &429 + default: &445 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -62152,8 +62172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/refs#create-a-reference parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -62182,9 +62202,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *444 examples: - default: *429 + default: *445 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -62210,9 +62230,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/refs#update-a-reference parameters: - - *284 - - *285 - - *427 + - *300 + - *301 + - *443 requestBody: required: true content: @@ -62241,9 +62261,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *444 examples: - default: *429 + default: *445 '422': *35 '409': *140 x-github: @@ -62261,9 +62281,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/refs#delete-a-reference parameters: - - *284 - - *285 - - *427 + - *300 + - *301 + - *443 responses: '204': description: Response @@ -62318,8 +62338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/tags#create-a-tag-object parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -62386,7 +62406,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &447 title: Git Tag description: Metadata for a Git tag type: object @@ -62437,7 +62457,7 @@ paths: - sha - type - url - verification: *430 + verification: *446 required: - sha - url @@ -62447,7 +62467,7 @@ paths: - tag - message examples: - default: &432 + default: &448 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -62517,8 +62537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/tags#get-a-tag parameters: - - *284 - - *285 + - *300 + - *301 - name: tag_sha in: path required: true @@ -62529,9 +62549,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *447 examples: - default: *432 + default: *448 '404': *26 '409': *140 x-github: @@ -62555,8 +62575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/trees#create-a-tree parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -62629,7 +62649,7 @@ paths: description: Response content: application/json: - schema: &433 + schema: &449 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -62725,8 +62745,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/trees#get-a-tree parameters: - - *284 - - *285 + - *300 + - *301 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -62749,7 +62769,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *449 examples: default-response: summary: Default response @@ -62808,8 +62828,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#list-repository-webhooks parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -62819,7 +62839,7 @@ paths: application/json: schema: type: array - items: &434 + items: &450 title: Webhook description: Webhooks for repositories. type: object @@ -62873,7 +62893,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &648 + last_response: &649 title: Hook Response type: object properties: @@ -62947,8 +62967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#create-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -63000,9 +63020,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *450 examples: - default: &435 + default: &451 value: type: Repository id: 12345678 @@ -63050,17 +63070,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#get-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 responses: '200': description: Response content: application/json: - schema: *434 + schema: *450 examples: - default: *435 + default: *451 '404': *26 x-github: githubCloudOnly: false @@ -63080,8 +63100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#update-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 requestBody: required: true @@ -63127,9 +63147,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *450 examples: - default: *435 + default: *451 '422': *35 '404': *26 x-github: @@ -63150,8 +63170,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 responses: '204': @@ -63176,8 +63196,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *3 responses: '200': @@ -63205,8 +63225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *3 requestBody: required: false @@ -63251,8 +63271,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 - *4 - *202 @@ -63284,8 +63304,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 - *36 responses: @@ -63314,8 +63334,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 - *36 responses: @@ -63339,8 +63359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 responses: '204': @@ -63366,8 +63386,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 responses: '204': @@ -63392,8 +63412,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -63401,8 +63421,8 @@ paths: application/json: schema: *39 examples: - default: *436 - '301': *296 + default: *452 + '301': *312 '404': *26 x-github: githubCloudOnly: false @@ -63421,8 +63441,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/invitations#list-repository-invitations parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -63432,7 +63452,7 @@ paths: application/json: schema: type: array - items: &437 + items: &453 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -63495,7 +63515,7 @@ paths: - html_url - created_at examples: - default: &597 + default: &598 value: - id: 1 repository: @@ -63626,9 +63646,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *284 - - *285 - - &438 + - *300 + - *301 + - &454 name: invitation_id description: The unique identifier of the invitation. in: path @@ -63663,7 +63683,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *453 examples: default: value: @@ -63794,9 +63814,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *284 - - *285 - - *438 + - *300 + - *301 + - *454 responses: '204': description: Response @@ -63827,8 +63847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#list-repository-issues parameters: - - *284 - - *285 + - *300 + - *301 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -64049,7 +64069,7 @@ paths: state_reason: completed headers: Link: *6 - '301': *296 + '301': *312 '422': *35 '404': *26 x-github: @@ -64078,8 +64098,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#create-an-issue parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -64163,7 +64183,7 @@ paths: application/json: schema: *121 examples: - default: &444 + default: &460 value: id: 1 node_id: MDU6SXNzdWUx @@ -64347,9 +64367,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *284 - - *285 - - &489 + - *300 + - *301 + - &505 name: sort description: The property to sort the results by. in: query @@ -64379,9 +64399,9 @@ paths: application/json: schema: type: array - items: *439 + items: *455 examples: - default: &446 + default: &462 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -64439,17 +64459,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#get-an-issue-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '200': description: Response content: application/json: - schema: *439 + schema: *455 examples: - default: &440 + default: &456 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -64503,8 +64523,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#update-an-issue-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -64527,9 +64547,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *455 examples: - default: *440 + default: *456 '422': *35 x-github: githubCloudOnly: false @@ -64547,8 +64567,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#delete-an-issue-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '204': @@ -64569,8 +64589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). @@ -64597,9 +64617,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 '404': *26 @@ -64620,8 +64640,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -64654,16 +64674,16 @@ paths: description: Reaction exists content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Reaction created content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '422': *35 x-github: githubCloudOnly: false @@ -64685,10 +64705,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *284 - - *285 + - *300 + - *301 - *120 - - *276 + - *292 responses: '204': description: Response @@ -64708,8 +64728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/events#list-issue-events-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -64719,7 +64739,7 @@ paths: application/json: schema: type: array - items: &443 + items: &459 title: Issue Event description: Issue Event type: object @@ -64762,8 +64782,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *441 - required: *442 + properties: *457 + required: *458 nullable: true label: title: Issue Event Label @@ -64807,7 +64827,7 @@ paths: properties: *17 required: *18 nullable: true - requested_team: *286 + requested_team: *302 dismissed_review: title: Issue Event Dismissed Review type: object @@ -65070,8 +65090,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/events#get-an-issue-event parameters: - - *284 - - *285 + - *300 + - *301 - name: event_id in: path required: true @@ -65082,7 +65102,7 @@ paths: description: Response content: application/json: - schema: *443 + schema: *459 examples: default: value: @@ -65309,9 +65329,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue parameters: - - *284 - - *285 - - &445 + - *300 + - *301 + - &461 name: issue_number description: The number that identifies the issue. in: path @@ -65325,8 +65345,8 @@ paths: application/json: schema: *121 examples: - default: *444 - '301': *296 + default: *460 + '301': *312 '404': *26 '410': *237 '304': *42 @@ -65353,9 +65373,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#update-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: false content: @@ -65461,11 +65481,11 @@ paths: application/json: schema: *121 examples: - default: *444 + default: *460 '422': *35 '503': *104 '403': *43 - '301': *296 + '301': *312 '404': *26 '410': *237 x-github: @@ -65485,9 +65505,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: false content: @@ -65515,7 +65535,7 @@ paths: application/json: schema: *121 examples: - default: *444 + default: *460 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65531,9 +65551,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: content: application/json: @@ -65560,7 +65580,7 @@ paths: application/json: schema: *121 examples: - default: *444 + default: *460 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65582,9 +65602,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - name: assignee in: path required: true @@ -65624,9 +65644,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#list-issue-comments parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - *111 - *4 - *5 @@ -65637,9 +65657,9 @@ paths: application/json: schema: type: array - items: *439 + items: *455 examples: - default: *446 + default: *462 headers: Link: *6 '404': *26 @@ -65672,9 +65692,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#create-an-issue-comment parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: true content: @@ -65696,9 +65716,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *455 examples: - default: *440 + default: *456 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -65725,9 +65745,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/events#list-issue-events parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - *4 - *5 responses: @@ -65741,7 +65761,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &449 + - &465 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -65795,7 +65815,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &450 + - &466 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -65931,7 +65951,7 @@ paths: - performed_via_github_app - assignee - assigner - - &451 + - &467 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -65982,7 +66002,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &452 + - &468 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -66033,7 +66053,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &453 + - &469 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -66087,7 +66107,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &454 + - &470 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -66121,7 +66141,7 @@ paths: properties: *106 required: *107 review_requester: *19 - requested_team: *286 + requested_team: *302 requested_reviewer: *19 required: - review_requester @@ -66134,7 +66154,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &455 + - &471 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -66168,7 +66188,7 @@ paths: properties: *106 required: *107 review_requester: *19 - requested_team: *286 + requested_team: *302 requested_reviewer: *19 required: - review_requester @@ -66181,7 +66201,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &456 + - &472 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -66241,7 +66261,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &457 + - &473 title: Locked Issue Event description: Locked Issue Event type: object @@ -66289,7 +66309,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &458 + - &474 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -66355,7 +66375,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &459 + - &475 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -66421,7 +66441,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &460 + - &476 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -66487,7 +66507,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &461 + - &477 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -66595,9 +66615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#list-labels-for-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - *4 - *5 responses: @@ -66607,7 +66627,7 @@ paths: application/json: schema: type: array - items: &447 + items: &463 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -66654,7 +66674,7 @@ paths: - color - default examples: - default: &448 + default: &464 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -66672,7 +66692,7 @@ paths: default: false headers: Link: *6 - '301': *296 + '301': *312 '404': *26 '410': *237 x-github: @@ -66691,9 +66711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#add-labels-to-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: false content: @@ -66752,10 +66772,10 @@ paths: application/json: schema: type: array - items: *447 + items: *463 examples: - default: *448 - '301': *296 + default: *464 + '301': *312 '404': *26 '410': *237 '422': *35 @@ -66774,9 +66794,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#set-labels-for-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: false content: @@ -66836,10 +66856,10 @@ paths: application/json: schema: type: array - items: *447 + items: *463 examples: - default: *448 - '301': *296 + default: *464 + '301': *312 '404': *26 '410': *237 '422': *35 @@ -66858,13 +66878,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 responses: '204': description: Response - '301': *296 + '301': *312 '404': *26 '410': *237 x-github: @@ -66885,9 +66905,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - name: name in: path required: true @@ -66900,7 +66920,7 @@ paths: application/json: schema: type: array - items: *447 + items: *463 examples: default: value: @@ -66911,7 +66931,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *296 + '301': *312 '404': *26 '410': *237 x-github: @@ -66933,9 +66953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#lock-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: false content: @@ -66981,9 +67001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#unlock-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 responses: '204': description: Response @@ -67005,9 +67025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -67033,9 +67053,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 '404': *26 @@ -67057,9 +67077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: true content: @@ -67091,16 +67111,16 @@ paths: description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '422': *35 x-github: githubCloudOnly: false @@ -67122,10 +67142,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *284 - - *285 - - *445 - - *276 + - *300 + - *301 + - *461 + - *292 responses: '204': description: Response @@ -67145,9 +67165,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - *4 - *5 responses: @@ -67162,19 +67182,19 @@ paths: description: Timeline Event type: object anyOf: - - *449 - - *450 - - *451 - - *452 - - *453 - - *454 - - *455 - - *456 - - *457 - - *458 - - *459 - - *460 - - *461 + - *465 + - *466 + - *467 + - *468 + - *469 + - *470 + - *471 + - *472 + - *473 + - *474 + - *475 + - *476 + - *477 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -67475,7 +67495,7 @@ paths: type: string comments: type: array - items: &484 + items: &500 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -67684,7 +67704,7 @@ paths: type: string comments: type: array - items: *382 + items: *398 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -67990,8 +68010,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -68001,7 +68021,7 @@ paths: application/json: schema: type: array - items: &462 + items: &478 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -68064,8 +68084,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -68101,9 +68121,9 @@ paths: description: Response content: application/json: - schema: *462 + schema: *478 examples: - default: &463 + default: &479 value: id: 1 key: ssh-rsa AAA... @@ -68136,9 +68156,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *284 - - *285 - - &464 + - *300 + - *301 + - &480 name: key_id description: The unique identifier of the key. in: path @@ -68150,9 +68170,9 @@ paths: description: Response content: application/json: - schema: *462 + schema: *478 examples: - default: *463 + default: *479 '404': *26 x-github: githubCloudOnly: false @@ -68170,9 +68190,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *284 - - *285 - - *464 + - *300 + - *301 + - *480 responses: '204': description: Response @@ -68192,8 +68212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#list-labels-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -68203,9 +68223,9 @@ paths: application/json: schema: type: array - items: *447 + items: *463 examples: - default: *448 + default: *464 headers: Link: *6 '404': *26 @@ -68226,8 +68246,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#create-a-label parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -68263,9 +68283,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *463 examples: - default: &465 + default: &481 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -68297,8 +68317,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#get-a-label parameters: - - *284 - - *285 + - *300 + - *301 - name: name in: path required: true @@ -68309,9 +68329,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *463 examples: - default: *465 + default: *481 '404': *26 x-github: githubCloudOnly: false @@ -68328,8 +68348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#update-a-label parameters: - - *284 - - *285 + - *300 + - *301 - name: name in: path required: true @@ -68368,7 +68388,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *463 examples: default: value: @@ -68394,8 +68414,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#delete-a-label parameters: - - *284 - - *285 + - *300 + - *301 - name: name in: path required: true @@ -68421,8 +68441,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-languages parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -68458,8 +68478,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '202': *141 '403': @@ -68487,8 +68507,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -68514,9 +68534,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *284 - - *285 - - *373 + - *300 + - *301 + - *389 responses: '200': description: Response @@ -68661,8 +68681,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -68727,8 +68747,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branches#merge-a-branch parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -68762,9 +68782,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *383 + schema: *399 examples: - default: *466 + default: *482 '204': description: Response when already merged '404': @@ -68789,8 +68809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/milestones#list-milestones parameters: - - *284 - - *285 + - *300 + - *301 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -68831,12 +68851,12 @@ paths: application/json: schema: type: array - items: &467 + items: &483 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *387 - required: *388 + properties: *403 + required: *404 examples: default: value: @@ -68892,8 +68912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/milestones#create-a-milestone parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -68933,9 +68953,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *483 examples: - default: &468 + default: &484 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -68994,9 +69014,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/milestones#get-a-milestone parameters: - - *284 - - *285 - - &469 + - *300 + - *301 + - &485 name: milestone_number description: The number that identifies the milestone. in: path @@ -69008,9 +69028,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *483 examples: - default: *468 + default: *484 '404': *26 x-github: githubCloudOnly: false @@ -69027,9 +69047,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/milestones#update-a-milestone parameters: - - *284 - - *285 - - *469 + - *300 + - *301 + - *485 requestBody: required: false content: @@ -69067,9 +69087,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *483 examples: - default: *468 + default: *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69085,9 +69105,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/milestones#delete-a-milestone parameters: - - *284 - - *285 - - *469 + - *300 + - *301 + - *485 responses: '204': description: Response @@ -69108,9 +69128,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *284 - - *285 - - *469 + - *300 + - *301 + - *485 - *4 - *5 responses: @@ -69120,9 +69140,9 @@ paths: application/json: schema: type: array - items: *447 + items: *463 examples: - default: *448 + default: *464 headers: Link: *6 x-github: @@ -69141,12 +69161,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *284 - - *285 - - *470 - - *471 + - *300 + - *301 + - *486 + - *487 - *111 - - *472 + - *488 - *4 - *5 responses: @@ -69158,7 +69178,7 @@ paths: type: array items: *131 examples: - default: *473 + default: *489 headers: Link: *6 x-github: @@ -69182,8 +69202,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -69241,14 +69261,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#get-a-apiname-pages-site parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: &474 + schema: &490 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -69373,7 +69393,7 @@ paths: - custom_404 - public examples: - default: &475 + default: &491 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -69414,8 +69434,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#create-a-apiname-pages-site parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -69469,9 +69489,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *490 examples: - default: *475 + default: *491 '422': *35 '409': *140 x-github: @@ -69494,8 +69514,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -69594,8 +69614,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -69621,8 +69641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#list-apiname-pages-builds parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -69632,7 +69652,7 @@ paths: application/json: schema: type: array - items: &476 + items: &492 title: Page Build description: Page Build type: object @@ -69726,8 +69746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#request-a-apiname-pages-build parameters: - - *284 - - *285 + - *300 + - *301 responses: '201': description: Response @@ -69772,16 +69792,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#get-latest-pages-build parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *476 + schema: *492 examples: - default: &477 + default: &493 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -69829,8 +69849,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#get-apiname-pages-build parameters: - - *284 - - *285 + - *300 + - *301 - name: build_id in: path required: true @@ -69841,9 +69861,9 @@ paths: description: Response content: application/json: - schema: *476 + schema: *492 examples: - default: *477 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69863,8 +69883,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#create-a-github-pages-deployment parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -69964,9 +69984,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *284 - - *285 - - &478 + - *300 + - *301 + - &494 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -70024,9 +70044,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *284 - - *285 - - *478 + - *300 + - *301 + - *494 responses: '204': *233 '404': *26 @@ -70049,8 +70069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/repo-pre-receive-hooks#list-pre-receive-hooks-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 - *9 @@ -70071,7 +70091,7 @@ paths: application/json: schema: type: array - items: &479 + items: &495 type: object properties: id: @@ -70105,17 +70125,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/repo-pre-receive-hooks#get-a-pre-receive-hook-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *16 responses: '200': description: Response content: application/json: - schema: *479 + schema: *495 examples: - default: &480 + default: &496 value: id: 42 name: Check Commits @@ -70137,15 +70157,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/repo-pre-receive-hooks#update-pre-receive-hook-enforcement-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *16 responses: '200': description: Response content: application/json: - schema: *479 + schema: *495 examples: default: value: @@ -70189,8 +70209,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/repo-pre-receive-hooks#remove-pre-receive-hook-enforcement-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *16 responses: '200': @@ -70198,9 +70218,9 @@ paths: global level. content: application/json: - schema: *479 + schema: *495 examples: - default: *480 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70220,8 +70240,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/projects#list-repository-projects parameters: - - *284 - - *285 + - *300 + - *301 - name: state description: Indicates the state of the projects to return. in: query @@ -70302,8 +70322,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/projects#create-a-repository-project parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -70331,7 +70351,7 @@ paths: application/json: schema: *236 examples: - default: *293 + default: *309 '401': *41 '403': *43 '404': *26 @@ -70355,8 +70375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -70395,8 +70415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -70458,8 +70478,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#list-pull-requests parameters: - - *284 - - *285 + - *300 + - *301 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -70519,9 +70539,9 @@ paths: application/json: schema: type: array - items: *481 + items: *497 examples: - default: *482 + default: *498 headers: Link: *6 '304': *42 @@ -70553,8 +70573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#create-a-pull-request parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -70619,7 +70639,7 @@ paths: description: Response content: application/json: - schema: &486 + schema: &502 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -70730,8 +70750,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *387 - required: *388 + properties: *403 + required: *404 nullable: true active_lock_reason: type: string @@ -70776,7 +70796,7 @@ paths: nullable: true requested_teams: type: array - items: *261 + items: *277 nullable: true head: type: object @@ -70815,14 +70835,14 @@ paths: _links: type: object properties: - comments: *389 - commits: *389 - statuses: *389 - html: *389 - issue: *389 - review_comments: *389 - review_comment: *389 - self: *389 + comments: *405 + commits: *405 + statuses: *405 + html: *405 + issue: *405 + review_comments: *405 + review_comment: *405 + self: *405 required: - comments - commits @@ -70833,7 +70853,7 @@ paths: - review_comment - self author_association: *108 - auto_merge: *483 + auto_merge: *499 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -70925,7 +70945,7 @@ paths: - merged_by - review_comments examples: - default: &487 + default: &503 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -71452,8 +71472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - name: sort in: query required: false @@ -71482,9 +71502,9 @@ paths: application/json: schema: type: array - items: *484 + items: *500 examples: - default: &490 + default: &506 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -71561,17 +71581,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '200': description: Response content: application/json: - schema: *484 + schema: *500 examples: - default: &485 + default: &501 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -71646,8 +71666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -71670,9 +71690,9 @@ paths: description: Response content: application/json: - schema: *484 + schema: *500 examples: - default: *485 + default: *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71688,8 +71708,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '204': @@ -71711,8 +71731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). @@ -71739,9 +71759,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 '404': *26 @@ -71762,8 +71782,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -71796,16 +71816,16 @@ paths: description: Reaction exists content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Reaction created content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '422': *35 x-github: githubCloudOnly: false @@ -71827,10 +71847,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *284 - - *285 + - *300 + - *301 - *120 - - *276 + - *292 responses: '204': description: Response @@ -71873,9 +71893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#get-a-pull-request parameters: - - *284 - - *285 - - &488 + - *300 + - *301 + - &504 name: pull_number description: The number that identifies the pull request. in: path @@ -71888,9 +71908,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *486 + schema: *502 examples: - default: *487 + default: *503 '304': *42 '404': *26 '406': @@ -71925,9 +71945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#update-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: false content: @@ -71969,9 +71989,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *502 examples: - default: *487 + default: *503 '422': *35 '403': *43 x-github: @@ -71999,10 +72019,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *284 - - *285 - - *488 - - *489 + - *300 + - *301 + - *504 + - *505 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -72022,9 +72042,9 @@ paths: application/json: schema: type: array - items: *484 + items: *500 examples: - default: *490 + default: *506 headers: Link: *6 x-github: @@ -72057,9 +72077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: true content: @@ -72164,7 +72184,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *500 examples: example-for-a-multi-line-comment: value: @@ -72252,9 +72272,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 - *120 requestBody: required: true @@ -72277,7 +72297,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *500 examples: default: value: @@ -72363,9 +72383,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 - *4 - *5 responses: @@ -72375,9 +72395,9 @@ paths: application/json: schema: type: array - items: *383 + items: *399 examples: - default: *491 + default: *507 headers: Link: *6 x-github: @@ -72407,9 +72427,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#list-pull-requests-files parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 - *4 - *5 responses: @@ -72419,7 +72439,7 @@ paths: application/json: schema: type: array - items: *394 + items: *410 examples: default: value: @@ -72457,9 +72477,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 responses: '204': description: Response if pull request has been merged @@ -72482,9 +72502,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#merge-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: false content: @@ -72595,9 +72615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 responses: '200': description: Response @@ -72613,7 +72633,7 @@ paths: items: *19 teams: type: array - items: *286 + items: *302 required: - users - teams @@ -72672,9 +72692,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: false content: @@ -72711,7 +72731,7 @@ paths: description: Response content: application/json: - schema: *481 + schema: *497 examples: default: value: @@ -73247,9 +73267,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: true content: @@ -73283,7 +73303,7 @@ paths: description: Response content: application/json: - schema: *481 + schema: *497 examples: default: value: @@ -73788,9 +73808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 - *4 - *5 responses: @@ -73800,7 +73820,7 @@ paths: application/json: schema: type: array - items: &492 + items: &508 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -73951,9 +73971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: false content: @@ -74039,9 +74059,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *508 examples: - default: &494 + default: &510 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -74104,10 +74124,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 - - &493 + - *300 + - *301 + - *504 + - &509 name: review_id description: The unique identifier of the review. in: path @@ -74119,9 +74139,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *508 examples: - default: &495 + default: &511 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -74180,10 +74200,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 - - *493 + - *300 + - *301 + - *504 + - *509 requestBody: required: true content: @@ -74206,7 +74226,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *508 examples: default: value: @@ -74268,18 +74288,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 - - *493 + - *300 + - *301 + - *504 + - *509 responses: '200': description: Response content: application/json: - schema: *492 + schema: *508 examples: - default: *494 + default: *510 '422': *27 '404': *26 x-github: @@ -74306,10 +74326,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *284 - - *285 - - *488 - - *493 + - *300 + - *301 + - *504 + - *509 - *4 - *5 responses: @@ -74392,9 +74412,9 @@ paths: _links: type: object properties: - self: *389 - html: *389 - pull_request: *389 + self: *405 + html: *405 + pull_request: *405 required: - self - html @@ -74544,10 +74564,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 - - *493 + - *300 + - *301 + - *504 + - *509 requestBody: required: true content: @@ -74575,7 +74595,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *508 examples: default: value: @@ -74638,10 +74658,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 - - *493 + - *300 + - *301 + - *504 + - *509 requestBody: required: true content: @@ -74676,9 +74696,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *508 examples: - default: *495 + default: *511 '404': *26 '422': *27 '403': *43 @@ -74700,9 +74720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: false content: @@ -74765,8 +74785,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#get-a-repository-readme parameters: - - *284 - - *285 + - *300 + - *301 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -74779,9 +74799,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *512 examples: - default: &497 + default: &513 value: type: file encoding: base64 @@ -74823,8 +74843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *284 - - *285 + - *300 + - *301 - name: dir description: The alternate path to look for a README file in: path @@ -74844,9 +74864,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *512 examples: - default: *497 + default: *513 '404': *26 '422': *35 x-github: @@ -74868,8 +74888,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#list-releases parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -74879,7 +74899,7 @@ paths: application/json: schema: type: array - items: &498 + items: &514 title: Release description: A release. type: object @@ -74946,7 +74966,7 @@ paths: author: *19 assets: type: array - items: &499 + items: &515 title: Release Asset description: Data related to a release. type: object @@ -75129,8 +75149,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#create-a-release parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -75200,9 +75220,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *514 examples: - default: &503 + default: &519 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -75302,9 +75322,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/assets#get-a-release-asset parameters: - - *284 - - *285 - - &501 + - *300 + - *301 + - &517 name: asset_id description: The unique identifier of the asset. in: path @@ -75316,9 +75336,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *515 examples: - default: &502 + default: &518 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -75353,7 +75373,7 @@ paths: type: User site_admin: false '404': *26 - '302': *500 + '302': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75369,9 +75389,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/assets#update-a-release-asset parameters: - - *284 - - *285 - - *501 + - *300 + - *301 + - *517 requestBody: required: false content: @@ -75399,9 +75419,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *515 examples: - default: *502 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75417,9 +75437,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/assets#delete-a-release-asset parameters: - - *284 - - *285 - - *501 + - *300 + - *301 + - *517 responses: '204': description: Response @@ -75443,8 +75463,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -75529,16 +75549,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#get-the-latest-release parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *498 + schema: *514 examples: - default: *503 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75555,8 +75575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#get-a-release-by-tag-name parameters: - - *284 - - *285 + - *300 + - *301 - name: tag description: tag parameter in: path @@ -75569,9 +75589,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *514 examples: - default: *503 + default: *519 '404': *26 x-github: githubCloudOnly: false @@ -75593,9 +75613,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#get-a-release parameters: - - *284 - - *285 - - &504 + - *300 + - *301 + - &520 name: release_id description: The unique identifier of the release. in: path @@ -75609,9 +75629,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-server@3.14/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *498 + schema: *514 examples: - default: *503 + default: *519 '401': description: Unauthorized x-github: @@ -75629,9 +75649,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#update-a-release parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 requestBody: required: false content: @@ -75688,9 +75708,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *514 examples: - default: *503 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75706,9 +75726,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#delete-a-release parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 responses: '204': description: Response @@ -75728,9 +75748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/assets#list-release-assets parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 - *4 - *5 responses: @@ -75740,7 +75760,7 @@ paths: application/json: schema: type: array - items: *499 + items: *515 examples: default: value: @@ -75822,9 +75842,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 - name: name in: query required: true @@ -75850,7 +75870,7 @@ paths: description: Response for successful upload content: application/json: - schema: *499 + schema: *515 examples: response-for-successful-upload: value: @@ -75905,9 +75925,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -75931,9 +75951,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 '404': *26 @@ -75954,9 +75974,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 requestBody: required: true content: @@ -75986,16 +76006,16 @@ paths: description: Reaction exists content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Reaction created content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '422': *35 x-github: githubCloudOnly: false @@ -76017,10 +76037,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#delete-a-release-reaction parameters: - - *284 - - *285 - - *504 - - *276 + - *300 + - *301 + - *520 + - *292 responses: '204': description: Response @@ -76040,8 +76060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-cache-replication-status parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -76116,9 +76136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/rules#get-rules-for-a-branch parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 - *4 - *5 responses: @@ -76134,8 +76154,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *505 - - &507 + - *251 + - &521 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -76155,50 +76175,50 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *506 - - *507 + - *252 + - *521 - allOf: - - *508 - - *507 + - *253 + - *521 - allOf: - - *509 - - *507 + - *254 + - *521 - allOf: - - *510 - - *507 + - *255 + - *521 - allOf: - - *511 - - *507 + - *256 + - *521 - allOf: - - *512 - - *507 + - *257 + - *521 - allOf: - - *513 - - *507 + - *258 + - *521 - allOf: - - *514 - - *507 + - *259 + - *521 - allOf: - - *515 - - *507 + - *260 + - *521 - allOf: - - *516 - - *507 + - *261 + - *521 - allOf: - - *517 - - *507 + - *262 + - *521 - allOf: - - *518 - - *507 + - *263 + - *521 - allOf: - - *519 - - *507 + - *264 + - *521 - allOf: - - *520 - - *507 + - *265 + - *521 - allOf: + - *266 - *521 - - *507 examples: default: value: @@ -76237,8 +76257,8 @@ paths: category: repos subcategory: rules parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 - name: includes_parents @@ -76257,7 +76277,7 @@ paths: application/json: schema: type: array - items: *252 + items: *267 examples: default: value: @@ -76304,8 +76324,8 @@ paths: category: repos subcategory: rules parameters: - - *284 - - *285 + - *300 + - *301 requestBody: description: Request body required: true @@ -76334,7 +76354,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *251 + items: *523 required: - name - enforcement @@ -76365,9 +76385,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: &532 + default: &533 value: id: 42 name: super cool ruleset @@ -76414,12 +76434,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *284 - - *285 - - *523 + - *300 + - *301 - *524 - *525 - *526 + - *527 - *4 - *5 responses: @@ -76427,9 +76447,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 '404': *26 '500': *224 x-github: @@ -76450,17 +76470,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *284 - - *285 - - *529 + - *300 + - *301 + - *530 responses: '200': description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *531 + default: *532 '404': *26 '500': *224 x-github: @@ -76488,8 +76508,8 @@ paths: category: repos subcategory: rules parameters: - - *284 - - *285 + - *300 + - *301 - name: ruleset_id description: The ID of the ruleset. in: path @@ -76509,9 +76529,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: *532 + default: *533 '404': *26 '500': *224 put: @@ -76529,8 +76549,8 @@ paths: category: repos subcategory: rules parameters: - - *284 - - *285 + - *300 + - *301 - name: ruleset_id description: The ID of the ruleset. in: path @@ -76564,7 +76584,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *251 + items: *523 examples: default: value: @@ -76592,9 +76612,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: *532 + default: *533 '404': *26 '500': *224 delete: @@ -76612,8 +76632,8 @@ paths: category: repos subcategory: rules parameters: - - *284 - - *285 + - *300 + - *301 - name: ruleset_id description: The ID of the ruleset. in: path @@ -76641,18 +76661,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *284 - - *285 - - *254 - - *255 - - *256 - - *257 + - *300 + - *301 + - *270 + - *271 + - *272 + - *273 - *9 - *5 - *4 - - *533 - *534 - - *258 + - *535 + - *274 responses: '200': description: Response @@ -76660,7 +76680,7 @@ paths: application/json: schema: type: array - items: &537 + items: &538 type: object properties: number: *93 @@ -76679,8 +76699,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *535 - resolution: *536 + state: *536 + resolution: *537 resolved_at: type: string format: date-time @@ -76858,15 +76878,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *284 - - *285 - - *371 + - *300 + - *301 + - *387 responses: '200': description: Response content: application/json: - schema: *537 + schema: *538 examples: default: value: @@ -76906,9 +76926,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *284 - - *285 - - *371 + - *300 + - *301 + - *387 requestBody: required: true content: @@ -76916,8 +76936,8 @@ paths: schema: type: object properties: - state: *535 - resolution: *536 + state: *536 + resolution: *537 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -76935,7 +76955,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: default: value: @@ -77002,9 +77022,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *284 - - *285 - - *371 + - *300 + - *301 + - *387 - *5 - *4 responses: @@ -77015,7 +77035,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &668 + items: &669 type: object properties: type: @@ -77374,8 +77394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#list-stargazers parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -77471,8 +77491,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -77481,7 +77501,7 @@ paths: application/json: schema: type: array - items: &538 + items: &539 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -77512,8 +77532,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -77586,8 +77606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -77683,8 +77703,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -77838,8 +77858,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -77849,7 +77869,7 @@ paths: application/json: schema: type: array - items: *538 + items: *539 examples: default: value: @@ -77882,8 +77902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/statuses#create-a-commit-status parameters: - - *284 - - *285 + - *300 + - *301 - name: sha in: path required: true @@ -77937,7 +77957,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *540 examples: default: value: @@ -77991,8 +78011,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/watching#list-watchers parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -78024,14 +78044,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/watching#get-a-repository-subscription parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &540 + schema: &541 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -78099,8 +78119,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/watching#set-a-repository-subscription parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -78126,7 +78146,7 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: default: value: @@ -78153,8 +78173,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/watching#delete-a-repository-subscription parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -78174,8 +78194,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-tags parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -78254,8 +78274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -78263,7 +78283,7 @@ paths: application/json: schema: type: array - items: &541 + items: &542 title: Tag protection description: Tag protection type: object @@ -78315,8 +78335,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -78339,7 +78359,7 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: default: value: @@ -78370,8 +78390,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -78408,8 +78428,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *284 - - *285 + - *300 + - *301 - name: ref in: path required: true @@ -78445,8 +78465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-teams parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -78456,9 +78476,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - default: *262 + default: *278 headers: Link: *6 '404': *26 @@ -78478,8 +78498,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#get-all-repository-topics parameters: - - *284 - - *285 + - *300 + - *301 - *5 - *4 responses: @@ -78487,7 +78507,7 @@ paths: description: Response content: application/json: - schema: &542 + schema: &543 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -78499,7 +78519,7 @@ paths: required: - names examples: - default: &543 + default: &544 value: names: - octocat @@ -78522,8 +78542,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#replace-all-repository-topics parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -78554,9 +78574,9 @@ paths: description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *543 + default: *544 '404': *26 '422': *27 x-github: @@ -78579,8 +78599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#transfer-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -78854,8 +78874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -78878,8 +78898,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#enable-vulnerability-alerts parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -78901,8 +78921,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#disable-vulnerability-alerts parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -78928,8 +78948,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *284 - - *285 + - *300 + - *301 - name: ref in: path required: true @@ -79021,9 +79041,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *311 examples: - default: *297 + default: *313 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -79197,7 +79217,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &551 + - &552 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -79206,7 +79226,7 @@ paths: schema: type: string example: members - - &556 + - &557 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -79217,7 +79237,7 @@ paths: default: 1 format: int32 example: 1 - - &557 + - &558 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -79259,7 +79279,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &545 + items: &546 allOf: - type: object required: @@ -79334,7 +79354,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: &558 + meta: &559 type: object description: The metadata associated with the creation/updates to the user. @@ -79394,31 +79414,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &546 + '400': &547 description: Bad request content: application/json: - schema: *544 + schema: *545 application/scim+json: - schema: *544 - '401': &547 + schema: *545 + '401': &548 description: Authorization failure - '403': &548 + '403': &549 description: Permission denied - '429': &549 + '429': &550 description: Too many requests content: application/json: - schema: *544 + schema: *545 application/scim+json: - schema: *544 - '500': &550 + schema: *545 + '500': &551 description: Internal server error content: application/json: - schema: *544 + schema: *545 application/scim+json: - schema: *544 + schema: *545 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79445,7 +79465,7 @@ paths: required: true content: application/json: - schema: &554 + schema: &555 type: object required: - schemas @@ -79501,9 +79521,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *545 + schema: *546 examples: - group: &552 + group: &553 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -79522,13 +79542,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': *546 - '401': *547 - '403': *548 - '409': &555 + '400': *547 + '401': *548 + '403': *549 + '409': &556 description: Duplicate record detected - '429': *549 - '500': *550 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79549,7 +79569,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &553 + - &554 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -79557,22 +79577,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *551 + - *552 - *65 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *545 + schema: *546 examples: - default: *552 - '400': *546 - '401': *547 - '403': *548 + default: *553 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '429': *549 - '500': *550 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79594,13 +79614,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *553 + - *554 - *65 requestBody: required: true content: application/json: - schema: *554 + schema: *555 examples: group: summary: Group @@ -79626,17 +79646,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *545 + schema: *546 examples: - group: *552 - groupWithMembers: *552 - '400': *546 - '401': *547 - '403': *548 + group: *553 + groupWithMembers: *553 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '409': *555 - '429': *549 - '500': *550 + '409': *556 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79660,13 +79680,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *553 + - *554 - *65 requestBody: required: true content: application/json: - schema: &565 + schema: &566 type: object required: - Operations @@ -79726,17 +79746,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *545 + schema: *546 examples: - updateGroup: *552 - addMembers: *552 - '400': *546 - '401': *547 - '403': *548 + updateGroup: *553 + addMembers: *553 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '409': *555 - '429': *549 - '500': *550 + '409': *556 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79756,17 +79776,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *553 + - *554 - *65 responses: '204': description: Group was deleted, no content - '400': *546 - '401': *547 - '403': *548 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '429': *549 - '500': *550 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79803,8 +79823,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *556 - *557 + - *558 - *65 responses: '200': @@ -79837,7 +79857,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &560 + items: &561 allOf: - type: object required: @@ -79916,7 +79936,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &559 + roles: &560 type: array description: The roles assigned to the user. items: @@ -79972,7 +79992,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *558 + meta: *559 startIndex: type: integer description: A starting index for the returned page @@ -80009,11 +80029,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *546 - '401': *547 - '403': *548 - '429': *549 - '500': *550 + '400': *547 + '401': *548 + '403': *549 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80042,7 +80062,7 @@ paths: required: true content: application/json: - schema: &563 + schema: &564 type: object required: - schemas @@ -80124,9 +80144,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *559 + roles: *560 examples: - user: &564 + user: &565 summary: User value: schemas: @@ -80173,9 +80193,9 @@ paths: description: User has been created content: application/scim+json: - schema: *560 + schema: *561 examples: - user: &561 + user: &562 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -80201,13 +80221,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: *561 - '400': *546 - '401': *547 - '403': *548 - '409': *555 - '429': *549 - '500': *550 + enterpriseOwner: *562 + '400': *547 + '401': *548 + '403': *549 + '409': *556 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80228,7 +80248,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &562 + - &563 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -80241,15 +80261,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *560 + schema: *561 examples: - default: *561 - '400': *546 - '401': *547 - '403': *548 + default: *562 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '429': *549 - '500': *550 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80274,30 +80294,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *562 + - *563 - *65 requestBody: required: true content: application/json: - schema: *563 + schema: *564 examples: - user: *564 + user: *565 responses: '200': description: User was updated content: application/scim+json: - schema: *560 + schema: *561 examples: - user: *561 - '400': *546 - '401': *547 - '403': *548 + user: *562 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '409': *555 - '429': *549 - '500': *550 + '409': *556 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80335,13 +80355,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *562 + - *563 - *65 requestBody: required: true content: application/json: - schema: *565 + schema: *566 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -80381,18 +80401,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *560 - examples: - userMultiValuedProperties: *561 - userSingleValuedProperties: *561 - disableUser: *561 - '400': *546 - '401': *547 - '403': *548 + schema: *561 + examples: + userMultiValuedProperties: *562 + userSingleValuedProperties: *562 + disableUser: *562 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '409': *555 - '429': *549 - '500': *550 + '409': *556 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80412,17 +80432,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *562 + - *563 - *65 responses: '204': description: User was deleted, no content - '400': *546 - '401': *547 - '403': *548 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '429': *549 - '500': *550 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80549,7 +80569,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &566 + text_matches: &567 title: Search Result Text Matches type: array items: @@ -80712,7 +80732,7 @@ paths: enum: - author-date - committer-date - - &567 + - &568 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 @@ -80783,7 +80803,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *340 + properties: *356 nullable: true comment_count: type: integer @@ -80803,7 +80823,7 @@ paths: url: type: string format: uri - verification: *430 + verification: *446 required: - author - committer @@ -80822,7 +80842,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *340 + properties: *356 nullable: true parents: type: array @@ -80840,7 +80860,7 @@ paths: type: number node_id: type: string - text_matches: *566 + text_matches: *567 required: - sha - node_id @@ -81033,7 +81053,7 @@ paths: - interactions - created - updated - - *567 + - *568 - *4 - *5 - name: advanced_search @@ -81160,8 +81180,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *387 - required: *388 + properties: *403 + required: *404 nullable: true comments: type: integer @@ -81175,7 +81195,7 @@ paths: type: string format: date-time nullable: true - text_matches: *566 + text_matches: *567 pull_request: type: object properties: @@ -81219,7 +81239,7 @@ paths: timeline_url: type: string format: uri - type: *568 + type: *569 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -81400,7 +81420,7 @@ paths: enum: - created - updated - - *567 + - *568 - *4 - *5 responses: @@ -81444,7 +81464,7 @@ paths: nullable: true score: type: number - text_matches: *566 + text_matches: *567 required: - id - node_id @@ -81530,7 +81550,7 @@ paths: - forks - help-wanted-issues - updated - - *567 + - *568 - *4 - *5 responses: @@ -81769,7 +81789,7 @@ paths: - admin - pull - push - text_matches: *566 + text_matches: *567 temp_clone_token: type: string allow_merge_commit: @@ -82070,7 +82090,7 @@ paths: type: string format: uri nullable: true - text_matches: *566 + text_matches: *567 related: type: array nullable: true @@ -82263,7 +82283,7 @@ paths: - followers - repositories - joined - - *567 + - *568 - *4 - *5 responses: @@ -82367,7 +82387,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *566 + text_matches: *567 blog: type: string nullable: true @@ -82562,7 +82582,7 @@ paths: description: Response content: application/json: - schema: &569 + schema: &570 type: object properties: status: @@ -82582,7 +82602,7 @@ paths: - name - number examples: - default: &570 + default: &571 value: status: scheduled scheduled_time: Tuesday, January 22 at 15:34 -0800 @@ -82627,9 +82647,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *570 + default: *571 '401': description: Unauthorized requestBody: @@ -83193,7 +83213,7 @@ paths: application/json: schema: type: array - items: &571 + items: &572 type: object properties: key: @@ -83201,7 +83221,7 @@ paths: pretty-print: type: string examples: - default: &572 + default: &573 value: - key: ssh-rsa AAAAB3NzaC1yc2EAAAAB... pretty-print: ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64 @@ -83244,9 +83264,9 @@ paths: application/json: schema: type: array - items: *571 + items: *572 examples: - default: *572 + default: *573 '401': description: Unauthorized requestBody: @@ -83298,9 +83318,9 @@ paths: application/json: schema: type: array - items: *571 + items: *572 examples: - default: *572 + default: *573 '401': description: Unauthorized requestBody: @@ -83457,9 +83477,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '404': *26 x-github: githubCloudOnly: false @@ -83549,16 +83569,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '201': description: Response content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '404': *26 '422': *35 '403': *43 @@ -83628,9 +83648,9 @@ paths: application/json: schema: type: array - items: *267 + items: *283 examples: - default: *573 + default: *574 headers: Link: *6 x-github: @@ -83693,9 +83713,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: *268 + default: *284 x-github: triggersNotification: true githubCloudOnly: false @@ -83723,15 +83743,15 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussions#get-a-discussion-legacy parameters: - *7 - - *269 + - *285 responses: '200': description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: *268 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83757,7 +83777,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussions#update-a-discussion-legacy parameters: - *7 - - *269 + - *285 requestBody: required: false content: @@ -83780,9 +83800,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: *574 + default: *575 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83808,7 +83828,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussions#delete-a-discussion-legacy parameters: - *7 - - *269 + - *285 responses: '204': description: Response @@ -83838,7 +83858,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - *7 - - *269 + - *285 - *9 - *4 - *5 @@ -83849,9 +83869,9 @@ paths: application/json: schema: type: array - items: *270 + items: *286 examples: - default: *575 + default: *576 headers: Link: *6 x-github: @@ -83881,7 +83901,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - *7 - - *269 + - *285 requestBody: required: true content: @@ -83903,9 +83923,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: *271 + default: *287 x-github: triggersNotification: true githubCloudOnly: false @@ -83933,16 +83953,16 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - *7 - - *269 - - *272 + - *285 + - *288 responses: '200': description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: *271 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83968,8 +83988,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - *7 - - *269 - - *272 + - *285 + - *288 requestBody: required: true content: @@ -83991,9 +84011,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: *576 + default: *577 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84019,8 +84039,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - *7 - - *269 - - *272 + - *285 + - *288 responses: '204': description: Response @@ -84050,8 +84070,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - *7 - - *269 - - *272 + - *285 + - *288 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -84077,9 +84097,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 x-github: @@ -84109,8 +84129,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - *7 - - *269 - - *272 + - *285 + - *288 requestBody: required: true content: @@ -84142,9 +84162,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84171,7 +84191,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - *7 - - *269 + - *285 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -84197,9 +84217,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 x-github: @@ -84229,7 +84249,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - *7 - - *269 + - *285 requestBody: required: true content: @@ -84261,9 +84281,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -84459,9 +84479,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *297 examples: - response-if-user-is-a-team-maintainer: *577 + response-if-user-is-a-team-maintainer: *578 '404': *26 x-github: githubCloudOnly: false @@ -84520,9 +84540,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *297 examples: - response-if-users-membership-with-team-is-now-pending: *578 + response-if-users-membership-with-team-is-now-pending: *579 '403': description: Forbidden if team synchronization is set up '422': @@ -84596,9 +84616,9 @@ paths: application/json: schema: type: array - items: *282 + items: *298 examples: - default: *579 + default: *580 headers: Link: *6 '404': *26 @@ -84626,15 +84646,15 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - *7 - - *283 + - *299 responses: '200': description: Response content: application/json: - schema: *282 + schema: *298 examples: - default: *580 + default: *581 '404': description: Not Found if project is not managed by this team x-github: @@ -84660,7 +84680,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - *7 - - *283 + - *299 requestBody: required: false content: @@ -84729,7 +84749,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - *7 - - *283 + - *299 responses: '204': description: Response @@ -84799,14 +84819,14 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - *7 - - *284 - - *285 + - *300 + - *301 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *581 + schema: *582 examples: alternative-response-with-extra-repository-information: value: @@ -84958,8 +84978,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - *7 - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -85010,8 +85030,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - *7 - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -85046,9 +85066,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - response-if-child-teams-exist: *582 + response-if-child-teams-exist: *583 headers: Link: *6 '404': *26 @@ -85081,7 +85101,7 @@ paths: application/json: schema: oneOf: - - &584 + - &585 title: Private User description: Private User type: object @@ -85284,7 +85304,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *583 + - *584 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -85435,7 +85455,7 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: default: value: @@ -85513,7 +85533,7 @@ paths: type: array items: *218 examples: - default: &594 + default: &595 value: - id: 197 name: hello_docker @@ -85600,7 +85620,7 @@ paths: application/json: schema: type: array - items: &585 + items: &586 title: Email description: Email type: object @@ -85625,7 +85645,7 @@ paths: - verified - visibility examples: - default: &596 + default: &597 value: - email: octocat@github.com verified: true @@ -85700,7 +85720,7 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: default: value: @@ -85956,7 +85976,7 @@ paths: application/json: schema: type: array - items: &586 + items: &587 title: GPG Key description: A unique encryption key type: object @@ -86087,7 +86107,7 @@ paths: - subkeys - revoked examples: - default: &606 + default: &607 value: - id: 3 name: Octocat's GPG Key @@ -86172,9 +86192,9 @@ paths: description: Response content: application/json: - schema: *586 + schema: *587 examples: - default: &587 + default: &588 value: id: 3 name: Octocat's GPG Key @@ -86231,7 +86251,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &588 + - &589 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -86243,9 +86263,9 @@ paths: description: Response content: application/json: - schema: *586 + schema: *587 examples: - default: *587 + default: *588 '404': *26 '304': *42 '403': *43 @@ -86268,7 +86288,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *588 + - *589 responses: '204': description: Response @@ -86459,7 +86479,7 @@ paths: type: array items: *84 examples: - default: *589 + default: *590 headers: Link: *6 '404': *26 @@ -86635,7 +86655,7 @@ paths: application/json: schema: type: array - items: &590 + items: &591 title: Key description: Key type: object @@ -86732,9 +86752,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *591 examples: - default: &591 + default: &592 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -86767,15 +86787,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *464 + - *480 responses: '200': description: Response content: application/json: - schema: *590 + schema: *591 examples: - default: *591 + default: *592 '404': *26 '304': *42 '403': *43 @@ -86798,7 +86818,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *464 + - *480 responses: '204': description: Response @@ -87618,7 +87638,7 @@ paths: type: array items: *70 examples: - default: *592 + default: *593 headers: Link: *6 '304': *42 @@ -87660,7 +87680,7 @@ paths: - docker - nuget - container - - *593 + - *594 - *5 - *4 responses: @@ -87672,8 +87692,8 @@ paths: type: array items: *218 examples: - default: *594 - '400': *595 + default: *595 + '400': *596 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -87702,7 +87722,7 @@ paths: application/json: schema: *218 examples: - default: &607 + default: &608 value: id: 40201 name: octo-name @@ -88152,9 +88172,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *596 + default: *597 headers: Link: *6 '304': *42 @@ -88267,7 +88287,7 @@ paths: type: array items: *84 examples: - default: &603 + default: &604 summary: Default response value: - id: 1296269 @@ -88571,9 +88591,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *311 examples: - default: *297 + default: *313 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -88611,9 +88631,9 @@ paths: application/json: schema: type: array - items: *437 + items: *453 examples: - default: *597 + default: *598 headers: Link: *6 '304': *42 @@ -88636,7 +88656,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *438 + - *454 responses: '204': description: Response @@ -88659,7 +88679,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *438 + - *454 responses: '204': description: Response @@ -88692,7 +88712,7 @@ paths: application/json: schema: type: array - items: &598 + items: &599 title: Social account description: Social media account type: object @@ -88707,7 +88727,7 @@ paths: - provider - url examples: - default: &599 + default: &600 value: - provider: twitter url: https://twitter.com/github @@ -88769,9 +88789,9 @@ paths: application/json: schema: type: array - items: *598 + items: *599 examples: - default: *599 + default: *600 '422': *35 '304': *42 '404': *26 @@ -88858,7 +88878,7 @@ paths: application/json: schema: type: array - items: &600 + items: &601 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -88878,7 +88898,7 @@ paths: - title - created_at examples: - default: &608 + default: &609 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -88944,9 +88964,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: &601 + default: &602 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -88977,7 +88997,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &602 + - &603 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -88989,9 +89009,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: *601 + default: *602 '404': *26 '304': *42 '403': *43 @@ -89014,7 +89034,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *602 + - *603 responses: '204': description: Response @@ -89043,7 +89063,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &609 + - &610 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 @@ -89068,11 +89088,11 @@ paths: type: array items: *84 examples: - default-response: *603 + default-response: *604 application/vnd.github.v3.star+json: schema: type: array - items: &610 + items: &611 title: Starred Repository description: Starred Repository type: object @@ -89228,8 +89248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response if this repository is starred by you @@ -89257,8 +89277,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -89282,8 +89302,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -89355,7 +89375,7 @@ paths: application/json: schema: type: array - items: *265 + items: *281 examples: default: value: @@ -89442,10 +89462,10 @@ paths: application/json: schema: oneOf: + - *585 - *584 - - *583 examples: - default-response: &604 + default-response: &605 summary: Default response value: login: octocat @@ -89480,7 +89500,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &605 + response-with-git-hub-plan-information: &606 summary: Response with GitHub plan information value: login: octocat @@ -89592,11 +89612,11 @@ paths: application/json: schema: oneOf: + - *585 - *584 - - *583 examples: - default-response: *604 - response-with-git-hub-plan-information: *605 + default-response: *605 + response-with-git-hub-plan-information: *606 '404': *26 x-github: githubCloudOnly: false @@ -89627,7 +89647,7 @@ paths: type: array items: *218 examples: - default: *594 + default: *595 '403': *43 '401': *41 x-github: @@ -90031,9 +90051,9 @@ paths: application/json: schema: type: array - items: *586 + items: *587 examples: - default: *606 + default: *607 headers: Link: *6 x-github: @@ -90137,7 +90157,7 @@ paths: application/json: schema: *39 examples: - default: *436 + default: *452 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90218,7 +90238,7 @@ paths: type: array items: *70 examples: - default: *592 + default: *593 headers: Link: *6 x-github: @@ -90257,7 +90277,7 @@ paths: - docker - nuget - container - - *593 + - *594 - *8 - *5 - *4 @@ -90270,10 +90290,10 @@ paths: type: array items: *218 examples: - default: *594 + default: *595 '403': *43 '401': *41 - '400': *595 + '400': *596 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90303,7 +90323,7 @@ paths: application/json: schema: *218 examples: - default: *607 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90936,9 +90956,9 @@ paths: application/json: schema: type: array - items: *598 + items: *599 examples: - default: *599 + default: *600 headers: Link: *6 x-github: @@ -90968,9 +90988,9 @@ paths: application/json: schema: type: array - items: *600 + items: *601 examples: - default: *608 + default: *609 headers: Link: *6 x-github: @@ -90995,7 +91015,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *8 - - *609 + - *610 - *9 - *4 - *5 @@ -91007,11 +91027,11 @@ paths: schema: anyOf: - type: array - items: *610 + items: *611 - type: array items: *84 examples: - default-response: *603 + default-response: *604 headers: Link: *6 x-github: @@ -91221,7 +91241,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &611 + enterprise: &612 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -91279,7 +91299,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &612 + installation: &613 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -91298,7 +91318,7 @@ x-webhooks: required: - id - node_id - organization: &613 + organization: &614 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -91358,13 +91378,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &614 + repository: &615 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: &642 + properties: &643 id: description: Unique identifier of the repository example: 42 @@ -92047,7 +92067,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &643 + required: &644 - archive_url - assignees_url - blobs_url @@ -92198,10 +92218,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -92287,11 +92307,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: &615 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + rule: &616 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-server@3.14/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -92508,11 +92528,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: *615 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + rule: *616 sender: *19 required: - action @@ -92686,11 +92706,11 @@ x-webhooks: - everyone required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: *615 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + rule: *616 sender: *19 required: - action @@ -92771,11 +92791,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - exemption_request: &616 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + exemption_request: &617 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -93008,7 +93028,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &617 + items: &618 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -93126,11 +93146,11 @@ x-webhooks: type: string enum: - completed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - exemption_request: *616 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + exemption_request: *617 sender: *19 required: - action @@ -93210,11 +93230,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - exemption_request: *616 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + exemption_request: *617 sender: *19 required: - action @@ -93294,12 +93314,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - exemption_request: *616 - exemption_response: *617 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + exemption_request: *617 + exemption_response: *618 sender: *19 required: - action @@ -93381,12 +93401,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - exemption_request: *616 - exemption_response: *617 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + exemption_request: *617 + exemption_response: *618 sender: *19 required: - action @@ -93471,12 +93491,12 @@ x-webhooks: type: string cache_location: type: string - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 ref: type: string - repository: *614 + repository: *615 sender: *19 required: - cache_location @@ -93570,7 +93590,7 @@ x-webhooks: type: string enum: - completed - check_run: &619 + check_run: &620 title: CheckRun description: A check performed on the code of a given code change type: object @@ -93623,7 +93643,7 @@ x-webhooks: type: string pull_requests: type: array - items: *353 + items: *369 repository: *153 status: example: completed @@ -93661,7 +93681,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *618 + deployment: *619 details_url: example: https://example.com type: string @@ -93711,7 +93731,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *353 + items: *369 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -93746,9 +93766,9 @@ x-webhooks: - output - app - pull_requests - installation: *612 - organization: *613 - repository: *614 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - check_run @@ -94151,10 +94171,10 @@ x-webhooks: type: string enum: - created - check_run: *619 - installation: *612 - organization: *613 - repository: *614 + check_run: *620 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - check_run @@ -94560,10 +94580,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *619 - installation: *612 - organization: *613 - repository: *614 + check_run: *620 + installation: *613 + organization: *614 + repository: *615 requested_action: description: The action requested by the user. type: object @@ -94978,10 +94998,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *619 - installation: *612 - organization: *613 - repository: *614 + check_run: *620 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - check_run @@ -95968,10 +95988,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -96651,10 +96671,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -97328,10 +97348,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -97504,7 +97524,7 @@ x-webhooks: required: - login - id - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -97649,20 +97669,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &620 + commit_oid: &621 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: *611 - installation: *612 - organization: *613 - ref: &621 + enterprise: *612 + installation: *613 + organization: *614 + ref: &622 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: *614 + repository: *615 sender: *19 required: - action @@ -97834,7 +97854,7 @@ x-webhooks: required: - login - id - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -98064,12 +98084,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *620 - enterprise: *611 - installation: *612 - organization: *613 - ref: *621 - repository: *614 + commit_oid: *621 + enterprise: *612 + installation: *613 + organization: *614 + ref: *622 + repository: *615 sender: *19 required: - action @@ -98174,7 +98194,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -98342,12 +98362,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *620 - enterprise: *611 - installation: *612 - organization: *613 - ref: *621 - repository: *614 + commit_oid: *621 + enterprise: *612 + installation: *613 + organization: *614 + ref: *622 + repository: *615 sender: *19 required: - action @@ -98520,7 +98540,7 @@ x-webhooks: required: - login - id - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -98686,12 +98706,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *620 - enterprise: *611 - installation: *612 - organization: *613 - ref: *621 - repository: *614 + commit_oid: *621 + enterprise: *612 + installation: *613 + organization: *614 + ref: *622 + repository: *615 sender: *19 required: - action @@ -98798,7 +98818,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -98966,16 +98986,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 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: *614 + repository: *615 sender: *19 required: - action @@ -99079,7 +99099,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -99219,12 +99239,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *620 - enterprise: *611 - installation: *612 - organization: *613 - ref: *621 - repository: *614 + commit_oid: *621 + enterprise: *612 + installation: *613 + organization: *614 + ref: *622 + repository: *615 sender: *19 required: - action @@ -99491,10 +99511,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -99584,18 +99604,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *613 - pusher_type: &622 + organization: *614 + pusher_type: &623 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &623 + ref: &624 description: The [`git ref`](https://docs.github.com/enterprise-server@3.14/rest/git/refs#get-a-reference) resource. type: string @@ -99605,7 +99625,7 @@ x-webhooks: enum: - tag - branch - repository: *614 + repository: *615 sender: *19 required: - ref @@ -99694,18 +99714,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - pusher_type: *622 - ref: *623 + enterprise: *612 + installation: *613 + organization: *614 + pusher_type: *623 + ref: *624 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *614 + repository: *615 sender: *19 required: - ref @@ -99799,11 +99819,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -99897,11 +99917,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -99995,11 +100015,11 @@ x-webhooks: type: string enum: - created - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -100091,11 +100111,11 @@ x-webhooks: type: string enum: - dismissed - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -100187,11 +100207,11 @@ x-webhooks: type: string enum: - fixed - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -100284,11 +100304,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -100380,11 +100400,11 @@ x-webhooks: type: string enum: - reopened - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -100471,9 +100491,9 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - key: &624 + enterprise: *612 + installation: *613 + key: &625 description: The [`deploy key`](https://docs.github.com/enterprise-server@3.14/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -100507,8 +100527,8 @@ x-webhooks: - verified - created_at - read_only - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -100595,11 +100615,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - key: *624 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + key: *625 + organization: *614 + repository: *615 sender: *19 required: - action @@ -101170,12 +101190,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - workflow: &628 + workflow: &629 title: Workflow type: object nullable: true @@ -101911,13 +101931,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *405 + deployment: *421 pull_requests: type: array - items: *486 - repository: *614 - organization: *613 - installation: *612 + items: *502 + repository: *615 + organization: *614 + installation: *613 sender: *19 responses: '200': @@ -101998,7 +102018,7 @@ x-webhooks: type: string enum: - approved - approver: &625 + approver: &626 type: object properties: avatar_url: @@ -102041,11 +102061,11 @@ x-webhooks: type: string comment: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - reviewers: &626 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + reviewers: &627 type: array items: type: object @@ -102124,7 +102144,7 @@ x-webhooks: sender: *19 since: type: string - workflow_job_run: &627 + workflow_job_run: &628 type: object properties: conclusion: @@ -102865,18 +102885,18 @@ x-webhooks: type: string enum: - rejected - approver: *625 + approver: *626 comment: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - reviewers: *626 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + reviewers: *627 sender: *19 since: type: string - workflow_job_run: *627 + workflow_job_run: *628 workflow_job_runs: type: array items: @@ -103590,13 +103610,13 @@ x-webhooks: type: string enum: - requested - enterprise: *611 + enterprise: *612 environment: type: string - installation: *612 - organization: *613 - repository: *614 - requestor: &633 + installation: *613 + organization: *614 + repository: *615 + requestor: &634 title: User type: object nullable: true @@ -105505,12 +105525,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - workflow: *628 + workflow: *629 workflow_run: title: Deployment Workflow Run type: object @@ -106200,7 +106220,7 @@ x-webhooks: type: string enum: - answered - answer: &631 + answer: &632 type: object properties: author_association: @@ -106357,7 +106377,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &629 + discussion: &630 title: Discussion description: A Discussion in a repository. type: object @@ -106643,7 +106663,7 @@ x-webhooks: - id labels: type: array - items: *447 + items: *463 required: - repository_url - category @@ -106665,10 +106685,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -106805,11 +106825,11 @@ x-webhooks: - from required: - category - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -106902,11 +106922,11 @@ x-webhooks: type: string enum: - closed - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -106998,7 +107018,7 @@ x-webhooks: type: string enum: - created - comment: &630 + comment: &631 type: object properties: author_association: @@ -107155,11 +107175,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107252,12 +107272,12 @@ x-webhooks: type: string enum: - deleted - comment: *630 - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + comment: *631 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107362,12 +107382,12 @@ x-webhooks: - from required: - body - comment: *630 - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + comment: *631 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107461,11 +107481,11 @@ x-webhooks: type: string enum: - created - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107557,11 +107577,11 @@ x-webhooks: type: string enum: - deleted - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107671,11 +107691,11 @@ x-webhooks: type: string required: - from - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107767,10 +107787,10 @@ x-webhooks: type: string enum: - labeled - discussion: *629 - enterprise: *611 - installation: *612 - label: &632 + discussion: *630 + enterprise: *612 + installation: *613 + label: &633 title: Label type: object properties: @@ -107802,8 +107822,8 @@ x-webhooks: - color - default - description - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107896,11 +107916,11 @@ x-webhooks: type: string enum: - locked - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107992,11 +108012,11 @@ x-webhooks: type: string enum: - pinned - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108088,11 +108108,11 @@ x-webhooks: type: string enum: - reopened - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108187,16 +108207,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *629 - new_repository: *614 + new_discussion: *630 + new_repository: *615 required: - new_discussion - new_repository - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108289,10 +108309,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *629 - old_answer: *631 - organization: *613 - repository: *614 + discussion: *630 + old_answer: *632 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108384,12 +108404,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *629 - enterprise: *611 - installation: *612 - label: *632 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108482,11 +108502,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108578,11 +108598,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108823,7 +108843,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *611 + enterprise: *612 forkee: description: The created [`repository`](https://docs.github.com/enterprise-server@3.14/rest/repos/repos#get-a-repository) resource. @@ -109483,9 +109503,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *612 - organization: *613 - repository: *614 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - forkee @@ -109651,9 +109671,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pages: description: The pages that were updated. type: array @@ -109690,7 +109710,7 @@ x-webhooks: - action - sha - html_url - repository: *614 + repository: *615 sender: *19 required: - pages @@ -109776,10 +109796,10 @@ x-webhooks: type: string enum: - created - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories: &634 + organization: *614 + repositories: &635 description: An array of repository objects that the installation can access. type: array @@ -109805,8 +109825,8 @@ x-webhooks: - name - full_name - private - repository: *614 - requester: *633 + repository: *615 + requester: *634 sender: *19 required: - action @@ -109891,11 +109911,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories: *634 - repository: *614 + organization: *614 + repositories: *635 + repository: *615 requester: nullable: true sender: *19 @@ -109981,11 +110001,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories: *634 - repository: *614 + organization: *614 + repositories: *635 + repository: *615 requester: nullable: true sender: *19 @@ -110071,10 +110091,10 @@ x-webhooks: type: string enum: - added - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories_added: &635 + organization: *614 + repositories_added: &636 description: An array of repository objects, which were added to the installation. type: array @@ -110120,15 +110140,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *614 - repository_selection: &636 + repository: *615 + repository_selection: &637 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *633 + requester: *634 sender: *19 required: - action @@ -110217,10 +110237,10 @@ x-webhooks: type: string enum: - removed - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories_added: *635 + organization: *614 + repositories_added: *636 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -110247,9 +110267,9 @@ x-webhooks: - name - full_name - private - repository: *614 - repository_selection: *636 - requester: *633 + repository: *615 + repository_selection: *637 + requester: *634 sender: *19 required: - action @@ -110338,11 +110358,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories: *634 - repository: *614 + organization: *614 + repositories: *635 + repository: *615 requester: nullable: true sender: *19 @@ -110531,10 +110551,10 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 target_type: type: string @@ -110623,11 +110643,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories: *634 - repository: *614 + organization: *614 + repositories: *635 + repository: *615 requester: nullable: true sender: *19 @@ -110889,8 +110909,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) the comment belongs to. @@ -111713,7 +111733,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -112046,8 +112066,8 @@ x-webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -112137,7 +112157,7 @@ x-webhooks: type: string enum: - deleted - comment: &637 + comment: &638 title: issue comment description: The [comment](https://docs.github.com/enterprise-server@3.14/rest/issues/comments#get-an-issue-comment) itself. @@ -112302,8 +112322,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) the comment belongs to. @@ -113122,7 +113142,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -113457,8 +113477,8 @@ x-webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -113548,7 +113568,7 @@ x-webhooks: type: string enum: - edited - changes: &660 + changes: &661 description: The changes to the comment. type: object properties: @@ -113560,9 +113580,9 @@ x-webhooks: type: string required: - from - comment: *637 - enterprise: *611 - installation: *612 + comment: *638 + enterprise: *612 + installation: *613 issue: description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) the comment belongs to. @@ -114384,7 +114404,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -114717,8 +114737,8 @@ x-webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -114810,10 +114830,10 @@ x-webhooks: type: string enum: - assigned - assignee: *633 - enterprise: *611 - installation: *612 - issue: &640 + assignee: *634 + enterprise: *612 + installation: *613 + issue: &641 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) itself. @@ -115631,7 +115651,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -115732,8 +115752,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -115823,8 +115843,8 @@ x-webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) itself. @@ -116647,7 +116667,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -116883,8 +116903,8 @@ x-webhooks: required: - state - closed_at - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -116973,8 +116993,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -117788,7 +117808,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -117888,8 +117908,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -117978,8 +117998,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -118815,7 +118835,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -118894,7 +118914,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &638 + milestone: &639 title: Milestone description: A collection of related issues and pull requests. type: object @@ -119032,8 +119052,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -119142,8 +119162,8 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -119958,7 +119978,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *568 + type: *569 title: description: Title of the issue type: string @@ -120062,9 +120082,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *632 - organization: *613 - repository: *614 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -120154,8 +120174,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -120969,7 +120989,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *568 + type: *569 title: description: Title of the issue type: string @@ -121073,9 +121093,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *632 - organization: *613 - repository: *614 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -121165,8 +121185,8 @@ x-webhooks: type: string enum: - locked - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -122004,7 +122024,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *568 + type: *569 title: description: Title of the issue type: string @@ -122085,8 +122105,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -122175,8 +122195,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -123011,7 +123031,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -123089,9 +123109,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *638 - organization: *613 - repository: *614 + milestone: *639 + organization: *614 + repository: *615 sender: *19 required: - action @@ -124075,7 +124095,7 @@ x-webhooks: required: - login - id - type: *568 + type: *569 required: - id - number @@ -124544,8 +124564,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -125363,7 +125383,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -125463,8 +125483,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -125554,9 +125574,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *611 - installation: *612 - issue: &639 + enterprise: *612 + installation: *613 + issue: &640 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) itself. @@ -126368,7 +126388,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -126468,8 +126488,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -126558,8 +126578,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -127476,9 +127496,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *568 - organization: *613 - repository: *614 + type: *569 + organization: *614 + repository: *615 sender: *19 required: - action @@ -128383,7 +128403,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -128951,11 +128971,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *611 - installation: *612 - issue: *639 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + issue: *640 + organization: *614 + repository: *615 sender: *19 required: - action @@ -129046,7 +129066,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &663 + assignee: &664 title: User type: object nullable: true @@ -129116,11 +129136,11 @@ x-webhooks: required: - login - id - enterprise: *611 - installation: *612 - issue: *640 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + issue: *641 + organization: *614 + repository: *615 sender: *19 required: - action @@ -129209,12 +129229,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *611 - installation: *612 - issue: *640 - label: *632 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + issue: *641 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -129304,8 +129324,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -130144,7 +130164,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -130222,8 +130242,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130313,11 +130333,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *611 - installation: *612 - issue: *639 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + issue: *640 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130406,11 +130426,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - label: *632 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130498,11 +130518,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - label: *632 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130622,11 +130642,11 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - label: *632 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130740,11 +130760,11 @@ x-webhooks: type: string required: - to - enterprise: *611 - installation: *612 - member: *633 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + member: *634 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130854,11 +130874,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *611 - installation: *612 - member: *633 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + member: *634 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130947,11 +130967,11 @@ x-webhooks: type: string enum: - removed - enterprise: *611 - installation: *612 - member: *633 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + member: *634 + organization: *614 + repository: *615 sender: *19 required: - action @@ -131039,11 +131059,11 @@ x-webhooks: type: string enum: - added - enterprise: *611 - installation: *612 - member: *633 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + member: *634 + organization: *614 + repository: *615 scope: description: The scope of the membership. Currently, can only be `team`. @@ -131119,7 +131139,7 @@ x-webhooks: required: - login - id - team: &641 + team: &642 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -131319,11 +131339,11 @@ x-webhooks: type: string enum: - removed - enterprise: *611 - installation: *612 - member: *633 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + member: *634 + organization: *614 + repository: *615 scope: description: The scope of the membership. Currently, can only be `team`. @@ -131400,7 +131420,7 @@ x-webhooks: required: - login - id - team: *641 + team: *642 required: - action - scope @@ -131488,7 +131508,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 + enterprise: *612 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -131597,16 +131617,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *612 - organization: *613 + installation: *613 + organization: *614 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: *642 - required: *643 + properties: *643 + required: *644 nullable: true sender: *19 required: @@ -131697,11 +131717,11 @@ x-webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - milestone: *638 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + milestone: *639 + organization: *614 + repository: *615 sender: *19 required: - action @@ -131790,9 +131810,9 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - milestone: &644 + enterprise: *612 + installation: *613 + milestone: &645 title: Milestone description: A collection of related issues and pull requests. type: object @@ -131929,8 +131949,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132019,11 +132039,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - milestone: *638 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + milestone: *639 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132143,11 +132163,11 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - milestone: *638 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + milestone: *639 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132237,11 +132257,11 @@ x-webhooks: type: string enum: - opened - enterprise: *611 - installation: *612 - milestone: *644 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + milestone: *645 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132330,9 +132350,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - membership: &645 + enterprise: *612 + installation: *613 + membership: &646 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -132439,8 +132459,8 @@ x-webhooks: - role - organization_url - user - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132528,11 +132548,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *611 - installation: *612 - membership: *645 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + membership: *646 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132621,8 +132641,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -132738,10 +132758,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 - user: *633 + user: *634 required: - action - invitation @@ -132829,11 +132849,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *611 - installation: *612 - membership: *645 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + membership: *646 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132930,11 +132950,11 @@ x-webhooks: properties: from: type: string - enterprise: *611 - installation: *612 - membership: *645 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + membership: *646 + organization: *614 + repository: *615 sender: *19 required: - action @@ -133020,9 +133040,9 @@ x-webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 package: description: Information about the package. type: object @@ -133521,7 +133541,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &646 + items: &647 title: Ruby Gems metadata type: object properties: @@ -133616,7 +133636,7 @@ x-webhooks: - owner - package_version - registry - repository: *614 + repository: *615 sender: *19 required: - action @@ -133702,9 +133722,9 @@ x-webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 package: description: Information about the package. type: object @@ -134057,7 +134077,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *646 + items: *647 source_url: type: string format: uri @@ -134127,7 +134147,7 @@ x-webhooks: - owner - package_version - registry - repository: *614 + repository: *615 sender: *19 required: - action @@ -134314,12 +134334,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *611 + enterprise: *612 id: type: integer - installation: *612 - organization: *613 - repository: *614 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - id @@ -134396,7 +134416,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &647 + personal_access_token_request: &648 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -134542,10 +134562,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *611 - organization: *613 + enterprise: *612 + organization: *614 sender: *19 - installation: *612 + installation: *613 required: - action - personal_access_token_request @@ -134622,11 +134642,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *647 - enterprise: *611 - organization: *613 + personal_access_token_request: *648 + enterprise: *612 + organization: *614 sender: *19 - installation: *612 + installation: *613 required: - action - personal_access_token_request @@ -134702,11 +134722,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *647 - enterprise: *611 - organization: *613 + personal_access_token_request: *648 + enterprise: *612 + organization: *614 sender: *19 - installation: *612 + installation: *613 required: - action - personal_access_token_request @@ -134781,11 +134801,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *647 - organization: *613 - enterprise: *611 + personal_access_token_request: *648 + organization: *614 + enterprise: *612 sender: *19 - installation: *612 + installation: *613 required: - action - personal_access_token_request @@ -134900,7 +134920,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *648 + last_response: *649 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -134932,8 +134952,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 zen: description: Random string of GitHub zen. @@ -135188,10 +135208,10 @@ x-webhooks: - from required: - note - enterprise: *611 - installation: *612 - organization: *613 - project_card: &649 + enterprise: *612 + installation: *613 + organization: *614 + project_card: &650 title: Project Card type: object properties: @@ -135310,7 +135330,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *614 + repository: *615 sender: *19 required: - action @@ -135401,11 +135421,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project_card: *649 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project_card: *650 + repository: *615 sender: *19 required: - action @@ -135495,9 +135515,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 project_card: title: Project Card type: object @@ -135625,8 +135645,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: *642 - required: *643 + properties: *643 + required: *644 nullable: true sender: *19 required: @@ -135730,11 +135750,11 @@ x-webhooks: - from required: - note - enterprise: *611 - installation: *612 - organization: *613 - project_card: *649 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project_card: *650 + repository: *615 sender: *19 required: - action @@ -135838,9 +135858,9 @@ x-webhooks: - from required: - column_id - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 project_card: allOf: - title: Project Card @@ -136030,7 +136050,7 @@ x-webhooks: type: string required: - after_id - repository: *614 + repository: *615 sender: *19 required: - action @@ -136120,10 +136140,10 @@ x-webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - organization: *613 - project: &651 + enterprise: *612 + installation: *613 + organization: *614 + project: &652 title: Project type: object properties: @@ -136247,7 +136267,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *614 + repository: *615 sender: *19 required: - action @@ -136337,10 +136357,10 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project_column: &650 + enterprise: *612 + installation: *613 + organization: *614 + project_column: &651 title: Project Column type: object properties: @@ -136379,7 +136399,7 @@ x-webhooks: - name - created_at - updated_at - repository: *614 + repository: *615 sender: *19 required: - action @@ -136468,18 +136488,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - project_column: *650 + enterprise: *612 + installation: *613 + organization: *614 + project_column: *651 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: *642 - required: *643 + properties: *643 + required: *644 nullable: true sender: *19 required: @@ -136579,11 +136599,11 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - project_column: *650 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project_column: *651 + repository: *615 sender: *19 required: - action @@ -136673,11 +136693,11 @@ x-webhooks: type: string enum: - moved - enterprise: *611 - installation: *612 - organization: *613 - project_column: *650 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project_column: *651 + repository: *615 sender: *19 required: - action @@ -136767,11 +136787,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project: *651 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project: *652 + repository: *615 sender: *19 required: - action @@ -136861,18 +136881,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - project: *651 + enterprise: *612 + installation: *613 + organization: *614 + project: *652 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: *642 - required: *643 + properties: *643 + required: *644 nullable: true sender: *19 required: @@ -136984,11 +137004,11 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - project: *651 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project: *652 + repository: *615 sender: *19 required: - action @@ -137077,11 +137097,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 - organization: *613 - project: *651 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project: *652 + repository: *615 sender: *19 required: - action @@ -137172,9 +137192,9 @@ x-webhooks: type: string enum: - closed - installation: *612 - organization: *613 - projects_v2: &652 + installation: *613 + organization: *614 + projects_v2: &653 title: Projects v2 Project description: A projects v2 project type: object @@ -137327,9 +137347,9 @@ x-webhooks: type: string enum: - created - installation: *612 - organization: *613 - projects_v2: *652 + installation: *613 + organization: *614 + projects_v2: *653 sender: *19 required: - action @@ -137420,9 +137440,9 @@ x-webhooks: type: string enum: - deleted - installation: *612 - organization: *613 - projects_v2: *652 + installation: *613 + organization: *614 + projects_v2: *653 sender: *19 required: - action @@ -137549,9 +137569,9 @@ x-webhooks: type: string to: type: string - installation: *612 - organization: *613 - projects_v2: *652 + installation: *613 + organization: *614 + projects_v2: *653 sender: *19 required: - action @@ -137644,7 +137664,7 @@ x-webhooks: type: string enum: - archived - changes: &656 + changes: &657 type: object properties: archived_at: @@ -137658,9 +137678,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *612 - organization: *613 - projects_v2_item: &653 + installation: *613 + organization: *614 + projects_v2_item: &654 title: Projects v2 Item description: An item belonging to a project type: object @@ -137804,9 +137824,9 @@ x-webhooks: nullable: true to: type: string - installation: *612 - organization: *613 - projects_v2_item: *653 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -137898,9 +137918,9 @@ x-webhooks: type: string enum: - created - installation: *612 - organization: *613 - projects_v2_item: *653 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -137991,9 +138011,9 @@ x-webhooks: type: string enum: - deleted - installation: *612 - organization: *613 - projects_v2_item: *653 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -138109,7 +138129,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &654 + - &655 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -138127,7 +138147,7 @@ x-webhooks: required: - id - name - - &655 + - &656 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -138150,8 +138170,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *654 - *655 + - *656 required: - field_value - type: object @@ -138167,9 +138187,9 @@ x-webhooks: nullable: true required: - body - installation: *612 - organization: *613 - projects_v2_item: *653 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -138274,9 +138294,9 @@ x-webhooks: to: type: string nullable: true - installation: *612 - organization: *613 - projects_v2_item: *653 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -138369,10 +138389,10 @@ x-webhooks: type: string enum: - restored - changes: *656 - installation: *612 - organization: *613 - projects_v2_item: *653 + changes: *657 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -138464,9 +138484,9 @@ x-webhooks: type: string enum: - reopened - installation: *612 - organization: *613 - projects_v2: *652 + installation: *613 + organization: *614 + projects_v2: *653 sender: *19 required: - action @@ -138547,10 +138567,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - repository @@ -138637,13 +138657,13 @@ x-webhooks: type: string enum: - assigned - assignee: *633 - enterprise: *611 - installation: *612 - number: &657 + assignee: *634 + enterprise: *612 + installation: *613 + number: &658 description: The pull request number. type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -140926,7 +140946,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -141018,11 +141038,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -143300,7 +143320,7 @@ x-webhooks: - draft reason: type: string - repository: *614 + repository: *615 sender: *19 required: - action @@ -143392,11 +143412,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -145674,7 +145694,7 @@ x-webhooks: - draft reason: type: string - repository: *614 + repository: *615 sender: *19 required: - action @@ -145766,13 +145786,13 @@ x-webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: &658 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: &659 allOf: - - *486 + - *502 - type: object properties: allow_auto_merge: @@ -145834,7 +145854,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *614 + repository: *615 sender: *19 required: - action @@ -145925,12 +145945,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: *659 + repository: *615 sender: *19 required: - action @@ -146020,11 +146040,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *611 - milestone: *467 - number: *657 - organization: *613 - pull_request: &659 + enterprise: *612 + milestone: *483 + number: *658 + organization: *614 + pull_request: &660 title: Pull Request type: object properties: @@ -148287,7 +148307,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -148419,12 +148439,12 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: *659 + repository: *615 sender: *19 required: - action @@ -148514,11 +148534,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *611 - installation: *612 - label: *632 - number: *657 - organization: *613 + enterprise: *612 + installation: *613 + label: *633 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -150800,7 +150820,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -150891,10 +150911,10 @@ x-webhooks: type: string enum: - locked - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -153174,7 +153194,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -153264,12 +153284,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *611 - milestone: *467 - number: *657 - organization: *613 - pull_request: *659 - repository: *614 + enterprise: *612 + milestone: *483 + number: *658 + organization: *614 + pull_request: *660 + repository: *615 sender: *19 required: - action @@ -153358,12 +153378,12 @@ x-webhooks: type: string enum: - opened - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: *659 + repository: *615 sender: *19 required: - action @@ -153454,12 +153474,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: *659 + repository: *615 sender: *19 required: - action @@ -153549,12 +153569,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: *659 + repository: *615 sender: *19 required: - action @@ -153930,9 +153950,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: type: object properties: @@ -156102,7 +156122,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *615 sender: *19 required: - action @@ -156192,7 +156212,7 @@ x-webhooks: type: string enum: - deleted - comment: &661 + comment: &662 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -156477,9 +156497,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: type: object properties: @@ -158637,7 +158657,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *615 sender: *19 required: - action @@ -158727,11 +158747,11 @@ x-webhooks: type: string enum: - edited - changes: *660 - comment: *661 - enterprise: *611 - installation: *612 - organization: *613 + changes: *661 + comment: *662 + enterprise: *612 + installation: *613 + organization: *614 pull_request: type: object properties: @@ -160892,7 +160912,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *615 sender: *19 required: - action @@ -160983,9 +161003,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: title: Simple Pull Request type: object @@ -163158,7 +163178,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *615 review: description: The review that was affected. type: object @@ -163411,9 +163431,9 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: title: Simple Pull Request type: object @@ -165467,8 +165487,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 - review: &662 + repository: *615 + review: &663 description: The review that was affected. type: object properties: @@ -165707,12 +165727,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: description: The pull request number. type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -167995,7 +168015,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 requested_reviewer: title: User type: object @@ -168079,12 +168099,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: description: The pull request number. type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -170374,7 +170394,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 requested_team: title: Team description: Groups of organization members that gives permissions @@ -170576,12 +170596,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: description: The pull request number. type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -172866,7 +172886,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 requested_reviewer: title: User type: object @@ -172951,12 +172971,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: description: The pull request number. type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -175232,7 +175252,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 requested_team: title: Team description: Groups of organization members that gives permissions @@ -175423,9 +175443,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: title: Simple Pull Request type: object @@ -177600,8 +177620,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 - review: *662 + repository: *615 + review: *663 sender: *19 required: - action @@ -177691,9 +177711,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: title: Simple Pull Request type: object @@ -179763,7 +179783,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *615 sender: *19 thread: type: object @@ -180156,9 +180176,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: title: Simple Pull Request type: object @@ -182214,7 +182234,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *615 sender: *19 thread: type: object @@ -182610,10 +182630,10 @@ x-webhooks: type: string before: type: string - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -184884,7 +184904,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -184976,11 +184996,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *663 - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + assignee: *664 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -187263,7 +187283,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -187352,11 +187372,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *611 - installation: *612 - label: *632 - number: *657 - organization: *613 + enterprise: *612 + installation: *613 + label: *633 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -189629,7 +189649,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -189720,10 +189740,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -191988,7 +192008,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -192198,7 +192218,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *611 + enterprise: *612 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -192290,8 +192310,8 @@ x-webhooks: - url - author - committer - installation: *612 - organization: *613 + installation: *613 + organization: *614 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -192876,9 +192896,9 @@ x-webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 registry_package: type: object properties: @@ -193324,7 +193344,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *646 + items: *647 summary: type: string tag_name: @@ -193378,7 +193398,7 @@ x-webhooks: - owner - package_version - registry - repository: *614 + repository: *615 sender: *19 required: - action @@ -193466,9 +193486,9 @@ x-webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 registry_package: type: object properties: @@ -193776,7 +193796,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *646 + items: *647 summary: type: string tag_name: @@ -193825,7 +193845,7 @@ x-webhooks: - owner - package_version - registry - repository: *614 + repository: *615 sender: *19 required: - action @@ -193912,10 +193932,10 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - release: &664 + enterprise: *612 + installation: *613 + organization: *614 + release: &665 title: Release description: The [release](https://docs.github.com/enterprise-server@3.14/rest/releases/releases/#get-a-release) object. @@ -194228,7 +194248,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *614 + repository: *615 sender: *19 required: - action @@ -194315,11 +194335,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + release: *665 + repository: *615 sender: *19 required: - action @@ -194446,11 +194466,11 @@ x-webhooks: type: boolean required: - to - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + release: *665 + repository: *615 sender: *19 required: - action @@ -194538,9 +194558,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 release: title: Release description: The [release](https://docs.github.com/enterprise-server@3.14/rest/releases/releases/#get-a-release) @@ -194857,7 +194877,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *614 + repository: *615 sender: *19 required: - action @@ -194943,10 +194963,10 @@ x-webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 - release: &665 + enterprise: *612 + installation: *613 + organization: *614 + release: &666 title: Release description: The [release](https://docs.github.com/enterprise-server@3.14/rest/releases/releases/#get-a-release) object. @@ -195260,7 +195280,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *614 + repository: *615 sender: *19 required: - action @@ -195346,11 +195366,11 @@ x-webhooks: type: string enum: - released - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + release: *665 + repository: *615 sender: *19 required: - action @@ -195436,11 +195456,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *611 - installation: *612 - organization: *613 - release: *665 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + release: *666 + repository: *615 sender: *19 required: - action @@ -195526,10 +195546,10 @@ x-webhooks: type: string enum: - anonymous_access_disabled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -195614,10 +195634,10 @@ x-webhooks: type: string enum: - anonymous_access_enabled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -195702,10 +195722,10 @@ x-webhooks: type: string enum: - archived - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -195792,10 +195812,10 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -195883,10 +195903,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -195980,10 +196000,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -196105,10 +196125,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -196196,10 +196216,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -196286,10 +196306,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -196393,10 +196413,10 @@ x-webhooks: - name required: - repository - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -196476,11 +196496,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *252 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + repository_ruleset: *267 sender: *19 required: - action @@ -196558,11 +196578,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *252 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + repository_ruleset: *267 sender: *19 required: - action @@ -196640,11 +196660,11 @@ x-webhooks: type: string enum: - edited - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *252 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + repository_ruleset: *267 changes: type: object properties: @@ -196705,16 +196725,16 @@ x-webhooks: properties: added: type: array - items: *251 + items: *523 deleted: type: array - items: *251 + items: *523 updated: type: array items: type: object properties: - rule: *251 + rule: *523 changes: type: object properties: @@ -196958,10 +196978,10 @@ x-webhooks: - from required: - owner - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197049,10 +197069,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197140,7 +197160,7 @@ x-webhooks: type: string enum: - create - alert: &666 + alert: &667 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -197261,10 +197281,10 @@ x-webhooks: type: string enum: - open - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197480,10 +197500,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197571,11 +197591,11 @@ x-webhooks: type: string enum: - reopen - alert: *666 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *667 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197784,10 +197804,10 @@ x-webhooks: enum: - fixed - open - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197875,7 +197895,7 @@ x-webhooks: type: string enum: - created - alert: &667 + alert: &668 type: object properties: number: *93 @@ -197955,10 +197975,10 @@ x-webhooks: description: 'The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' nullable: true - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -198049,11 +198069,11 @@ x-webhooks: type: string enum: - created - alert: *667 - installation: *612 - location: *668 - organization: *613 - repository: *614 + alert: *668 + installation: *613 + location: *669 + organization: *614 + repository: *615 sender: *19 required: - location @@ -198296,11 +198316,11 @@ x-webhooks: type: string enum: - reopened - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *668 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -198388,11 +198408,11 @@ x-webhooks: type: string enum: - resolved - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *668 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -198480,11 +198500,11 @@ x-webhooks: type: string enum: - validated - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *668 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -198570,11 +198590,11 @@ x-webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - security_advisory: &669 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + security_advisory: &670 description: The details of the security advisory, including summary, description, and severity. type: object @@ -198767,11 +198787,11 @@ x-webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - security_advisory: *669 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + security_advisory: *670 sender: *19 required: - action @@ -198854,10 +198874,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -199052,10 +199072,10 @@ x-webhooks: type: object properties: security_and_analysis: *245 - enterprise: *611 - installation: *612 - organization: *613 - repository: *295 + enterprise: *612 + installation: *613 + organization: *614 + repository: *311 sender: *19 required: - changes @@ -199143,12 +199163,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: &670 + sponsorship: &671 type: object properties: created_at: @@ -199459,12 +199479,12 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: *670 + sponsorship: *671 required: - action - sponsorship @@ -199562,12 +199582,12 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: *670 + sponsorship: *671 required: - action - changes @@ -199654,17 +199674,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &671 + effective_date: &672 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: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: *670 + sponsorship: *671 required: - action - sponsorship @@ -199748,7 +199768,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &672 + changes: &673 type: object properties: tier: @@ -199792,13 +199812,13 @@ x-webhooks: - from required: - tier - effective_date: *671 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + effective_date: *672 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: *670 + sponsorship: *671 required: - action - changes @@ -199885,13 +199905,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *672 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + changes: *673 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: *670 + sponsorship: *671 required: - action - changes @@ -199975,10 +199995,10 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -200071,10 +200091,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -200500,15 +200520,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *611 + enterprise: *612 id: description: The unique identifier of the status. type: integer - installation: *612 + installation: *613 name: type: string - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 sha: description: The Commit SHA. @@ -200620,12 +200640,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - team: &673 + team: &674 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -200825,9 +200845,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 repository: title: Repository description: A git repository @@ -201285,7 +201305,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *673 + team: *674 required: - action - team @@ -201371,9 +201391,9 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 repository: title: Repository description: A git repository @@ -201831,7 +201851,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *673 + team: *674 required: - action - team @@ -201918,9 +201938,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 repository: title: Repository description: A git repository @@ -202378,7 +202398,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *673 + team: *674 required: - action - team @@ -202532,9 +202552,9 @@ x-webhooks: - from required: - permissions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 repository: title: Repository description: A git repository @@ -202992,7 +203012,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *673 + team: *674 required: - action - changes @@ -203080,9 +203100,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 repository: title: Repository description: A git repository @@ -203540,7 +203560,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *673 + team: *674 required: - action - team @@ -203623,12 +203643,12 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - user: *633 + user: *634 required: - action responses: @@ -203706,12 +203726,12 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - user: *633 + user: *634 required: - action responses: @@ -203792,10 +203812,10 @@ x-webhooks: type: string enum: - started - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -203878,16 +203898,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *611 + enterprise: *612 inputs: type: object nullable: true additionalProperties: true - installation: *612 - organization: *613 + installation: *613 + organization: *614 ref: type: string - repository: *614 + repository: *615 sender: *19 workflow: type: string @@ -203979,10 +203999,10 @@ x-webhooks: type: string enum: - completed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 workflow_job: allOf: @@ -204219,7 +204239,7 @@ x-webhooks: type: string required: - conclusion - deployment: *405 + deployment: *421 required: - action - repository @@ -204308,10 +204328,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 workflow_job: allOf: @@ -204571,7 +204591,7 @@ x-webhooks: required: - status - steps - deployment: *405 + deployment: *421 required: - action - repository @@ -204660,10 +204680,10 @@ x-webhooks: type: string enum: - queued - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 workflow_job: type: object @@ -204798,7 +204818,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *405 + deployment: *421 required: - action - repository @@ -204887,10 +204907,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 workflow_job: type: object @@ -205026,7 +205046,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *405 + deployment: *421 required: - action - repository @@ -205116,12 +205136,12 @@ x-webhooks: type: string enum: - completed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - workflow: *628 + workflow: *629 workflow_run: title: Workflow Run type: object @@ -206130,12 +206150,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - workflow: *628 + workflow: *629 workflow_run: title: Workflow Run type: object @@ -207129,12 +207149,12 @@ x-webhooks: type: string enum: - requested - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - workflow: *628 + workflow: *629 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.yaml b/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.yaml index 5d467b3a04..ffb3f5d832 100644 --- a/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.yaml +++ b/descriptions/ghes-3.14/dereferenced/ghes-3.14.deref.yaml @@ -4442,7 +4442,7 @@ paths: application/json: schema: *24 application/scim+json: - schema: &544 + schema: &545 title: Scim Error description: Scim Error type: object @@ -12321,7 +12321,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &364 + instances_url: &380 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -12356,7 +12356,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &365 + dismissed_reason: &381 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -12365,13 +12365,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &366 + dismissed_comment: &382 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &367 + rule: &383 type: object properties: id: @@ -12410,7 +12410,7 @@ paths: description: A set of tags applicable for the rule. items: type: string - tool: &368 + tool: &384 type: object properties: name: *90 @@ -12420,15 +12420,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *91 - most_recent_instance: &369 + most_recent_instance: &385 type: object properties: - ref: &362 + ref: &378 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &374 + analysis_key: &390 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -12439,7 +12439,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &375 + category: &391 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -13364,7 +13364,7 @@ paths: enum: - development - runtime - security_advisory: &397 + security_advisory: &413 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -13595,7 +13595,7 @@ paths: nullable: true maxLength: 280 fixed_at: *102 - auto_dismissed_at: &398 + auto_dismissed_at: &414 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -13960,7 +13960,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *65 - - &254 + - &270 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -13971,7 +13971,7 @@ paths: enum: - open - resolved - - &255 + - &271 name: secret_type in: query description: A comma-separated list of secret types to return. By default @@ -13980,7 +13980,7 @@ paths: required: false schema: type: string - - &256 + - &272 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -13989,7 +13989,7 @@ paths: required: false schema: type: string - - &257 + - &273 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -14005,7 +14005,7 @@ paths: - *4 - *88 - *89 - - &258 + - &274 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -14021,7 +14021,7 @@ paths: application/json: schema: type: array - items: &259 + items: &275 type: object properties: number: *93 @@ -14040,14 +14040,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &535 + state: &536 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &536 + resolution: &537 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -14113,7 +14113,7 @@ paths: - inactive - unknown examples: - default: &260 + default: &276 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -14374,7 +14374,7 @@ paths: description: Success content: application/json: - schema: &263 + schema: &279 type: object properties: total_advanced_security_committers: @@ -14429,7 +14429,7 @@ paths: required: - repositories examples: - default: &264 + default: &280 value: total_advanced_security_committers: 2 total_count: 2 @@ -14593,7 +14593,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &441 + properties: &457 id: type: integer format: int64 @@ -14705,7 +14705,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &387 + properties: &403 url: type: string format: uri @@ -14775,7 +14775,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &388 + required: &404 - closed_issues - creator - description @@ -14854,7 +14854,7 @@ paths: timeline_url: type: string format: uri - type: &568 + type: &569 title: Issue Type description: The type of issue. type: object @@ -14979,7 +14979,7 @@ paths: - total - completed - percent_completed - required: &442 + required: &458 - assignee - closed_at - comments @@ -15001,7 +15001,7 @@ paths: - author_association - created_at - updated_at - comment: &439 + comment: &455 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15563,7 +15563,7 @@ paths: url: type: string format: uri - user: &583 + user: &584 title: Public User description: Public User type: object @@ -20184,14 +20184,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &284 + - &300 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &285 + - &301 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20262,7 +20262,7 @@ paths: '404': *26 '403': *43 '304': *42 - '301': &296 + '301': &312 description: Moved permanently content: application/json: @@ -20284,7 +20284,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &470 + - &486 name: all description: If `true`, show notifications marked as read. in: query @@ -20292,7 +20292,7 @@ paths: schema: type: boolean default: false - - &471 + - &487 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20302,7 +20302,7 @@ paths: type: boolean default: false - *111 - - &472 + - &488 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -20746,7 +20746,7 @@ paths: - url - subscription_url examples: - default: &473 + default: &489 value: - id: '1' repository: @@ -21292,7 +21292,7 @@ paths: type: array items: *70 examples: - default: &592 + default: &593 value: - login: github id: 1 @@ -22183,7 +22183,7 @@ paths: type: integer repository_cache_usages: type: array - items: &301 + items: &317 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -22434,7 +22434,7 @@ paths: type: array items: *84 examples: - default: &589 + default: &590 value: total_count: 1 repositories: @@ -24235,7 +24235,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &339 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -24264,7 +24264,7 @@ paths: - key_id - key examples: - default: &324 + default: &340 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -24677,7 +24677,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#list-organization-variables parameters: - *135 - - &308 + - &324 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-server@3.14/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -25326,7 +25326,7 @@ paths: be returned. in: query required: false - schema: &363 + schema: &379 type: string description: Severity of a code scanning alert. enum: @@ -25823,7 +25823,7 @@ paths: description: Response content: application/json: - schema: &401 + schema: &417 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -25840,7 +25840,7 @@ paths: - key_id - key examples: - default: &402 + default: &418 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26421,7 +26421,7 @@ paths: description: Response content: application/json: - schema: &279 + schema: &295 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -26502,7 +26502,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &280 + default: &296 value: group_id: '123' group_name: Octocat admins @@ -26557,7 +26557,7 @@ paths: description: Response content: application/json: - schema: &277 + schema: &293 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -26594,7 +26594,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &278 + default: &294 value: groups: - group_id: '123' @@ -27230,7 +27230,7 @@ paths: application/json: schema: *39 examples: - default: &436 + default: &452 value: id: 1 account: @@ -29604,7 +29604,7 @@ paths: - slug - parent examples: - default: &262 + default: &278 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -29676,7 +29676,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &261 + items: &277 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -29970,7 +29970,7 @@ paths: - nuget - container - *135 - - &593 + - &594 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -30011,7 +30011,7 @@ paths: default: *219 '403': *43 '401': *41 - '400': &595 + '400': &596 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -32464,7 +32464,7 @@ paths: description: Response content: application/json: - schema: &295 + schema: &311 title: Full Repository description: Full Repository type: object @@ -32962,7 +32962,7 @@ paths: - network_count - subscribers_count examples: - default: &297 + default: &313 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -33552,7 +33552,7 @@ paths: application/json: schema: type: array - items: &252 + items: &267 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -33807,12 +33807,12 @@ paths: - repository_property rules: type: array - items: &251 + items: &523 title: Repository Rule type: object description: A repository rule. oneOf: - - &505 + - &251 title: creation description: Only allow users with bypass permission to create matching refs. @@ -33824,7 +33824,7 @@ paths: type: string enum: - creation - - &506 + - &252 title: update description: Only allow users with bypass permission to update matching refs. @@ -33845,7 +33845,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &508 + - &253 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -33857,7 +33857,7 @@ paths: type: string enum: - deletion - - &509 + - &254 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -33869,7 +33869,7 @@ paths: type: string enum: - required_linear_history - - &510 + - &255 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -33893,7 +33893,7 @@ paths: type: string required: - required_deployment_environments - - &511 + - &256 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -33905,7 +33905,7 @@ paths: type: string enum: - required_signatures - - &512 + - &257 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -33956,7 +33956,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &513 + - &258 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -34004,7 +34004,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &514 + - &259 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -34016,7 +34016,7 @@ paths: type: string enum: - non_fast_forward - - &515 + - &260 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -34052,7 +34052,7 @@ paths: required: - operator - pattern - - &516 + - &261 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -34088,7 +34088,7 @@ paths: required: - operator - pattern - - &517 + - &262 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -34124,7 +34124,7 @@ paths: required: - operator - pattern - - &518 + - &263 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -34160,7 +34160,7 @@ paths: required: - operator - pattern - - &519 + - &264 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -34196,7 +34196,7 @@ paths: required: - operator - pattern - - &520 + - &265 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -34246,7 +34246,7 @@ paths: - repository_id required: - workflows - - &521 + - &266 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -34388,7 +34388,27 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *251 + items: &269 + title: Repository Rule + type: object + description: A repository rule. + oneOf: + - *251 + - *252 + - *253 + - *254 + - *255 + - *256 + - *257 + - *258 + - *259 + - *260 + - *261 + - *262 + - *263 + - *264 + - *265 + - *266 source_type: type: string description: The type of the source of the ruleset @@ -34432,9 +34452,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: &253 + default: &268 value: id: 21 name: super cool ruleset @@ -34489,7 +34509,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *135 - - &523 + - &524 name: ref description: The name of the ref. Cannot contain wildcard characters. When specified, only rule evaluations triggered for this ref will be returned. @@ -34502,7 +34522,7 @@ paths: in: query schema: type: string - - &524 + - &525 name: time_period description: |- The time period to filter by. @@ -34518,14 +34538,14 @@ paths: - week - month default: day - - &525 + - &526 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &526 + - &527 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -34545,7 +34565,7 @@ paths: description: Response content: application/json: - schema: &527 + schema: &528 title: Rule Suites description: Response type: array @@ -34599,7 +34619,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &528 + default: &529 value: - id: 21 actor_id: 12 @@ -34643,7 +34663,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *135 - - &529 + - &530 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -34659,7 +34679,7 @@ paths: description: Response content: application/json: - schema: &530 + schema: &531 title: Rule Suite description: Response type: object @@ -34757,7 +34777,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &531 + default: &532 value: id: 21 actor_id: 12 @@ -34830,9 +34850,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: *253 + default: *268 '404': *26 '500': *224 put: @@ -34884,7 +34904,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *251 + items: *269 examples: default: value: @@ -34919,9 +34939,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: *253 + default: *268 '404': *26 '500': *224 delete: @@ -34968,14 +34988,14 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *135 - - *254 - - *255 - - *256 - - *257 + - *270 + - *271 + - *272 + - *273 - *9 - *5 - *4 - - &533 + - &534 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.14/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -34985,7 +35005,7 @@ paths: required: false schema: type: string - - &534 + - &535 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-server@3.14/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -34995,7 +35015,7 @@ paths: required: false schema: type: string - - *258 + - *274 responses: '200': description: Response @@ -35003,9 +35023,9 @@ paths: application/json: schema: type: array - items: *259 + items: *275 examples: - default: *260 + default: *276 headers: Link: *6 '404': *26 @@ -35039,9 +35059,9 @@ paths: application/json: schema: type: array - items: *261 + items: *277 examples: - default: *262 + default: *278 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -35127,9 +35147,9 @@ paths: description: Success content: application/json: - schema: *263 + schema: *279 examples: - default: *264 + default: *280 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -35157,7 +35177,7 @@ paths: application/json: schema: type: array - items: &286 + items: &302 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -35232,7 +35252,7 @@ paths: - slug - parent examples: - default: *262 + default: *278 headers: Link: *6 '403': *43 @@ -35334,7 +35354,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &281 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -35644,7 +35664,7 @@ paths: - repos_count - organization examples: - default: &266 + default: &282 value: id: 1 node_id: MDQ6VGVhbTE= @@ -35720,9 +35740,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '404': *26 x-github: githubCloudOnly: false @@ -35806,16 +35826,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '201': description: Response content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '404': *26 '422': *35 '403': *43 @@ -35885,7 +35905,7 @@ paths: application/json: schema: type: array - items: &267 + items: &283 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -35984,7 +36004,7 @@ paths: - updated_at - url examples: - default: &573 + default: &574 value: - author: login: octocat @@ -36093,9 +36113,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: &268 + default: &284 value: author: login: octocat @@ -36169,7 +36189,7 @@ paths: parameters: - *135 - *214 - - &269 + - &285 name: discussion_number description: The number that identifies the discussion. in: path @@ -36181,9 +36201,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: *268 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36207,7 +36227,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 requestBody: required: false content: @@ -36230,9 +36250,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: &574 + default: &575 value: author: login: octocat @@ -36304,7 +36324,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 responses: '204': description: Response @@ -36332,7 +36352,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 - *9 - *4 - *5 @@ -36343,7 +36363,7 @@ paths: application/json: schema: type: array - items: &270 + items: &286 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -36415,7 +36435,7 @@ paths: - updated_at - url examples: - default: &575 + default: &576 value: - author: login: octocat @@ -36485,7 +36505,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 requestBody: required: true content: @@ -36507,9 +36527,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: &271 + default: &287 value: author: login: octocat @@ -36577,8 +36597,8 @@ paths: parameters: - *135 - *214 - - *269 - - &272 + - *285 + - &288 name: comment_number description: The number that identifies the comment. in: path @@ -36590,9 +36610,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: *271 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36616,8 +36636,8 @@ paths: parameters: - *135 - *214 - - *269 - - *272 + - *285 + - *288 requestBody: required: true content: @@ -36639,9 +36659,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: &576 + default: &577 value: author: login: octocat @@ -36707,8 +36727,8 @@ paths: parameters: - *135 - *214 - - *269 - - *272 + - *285 + - *288 responses: '204': description: Response @@ -36736,8 +36756,8 @@ paths: parameters: - *135 - *214 - - *269 - - *272 + - *285 + - *288 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -36763,7 +36783,7 @@ paths: application/json: schema: type: array - items: &273 + items: &289 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -36806,7 +36826,7 @@ paths: - content - created_at examples: - default: &275 + default: &291 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -36858,8 +36878,8 @@ paths: parameters: - *135 - *214 - - *269 - - *272 + - *285 + - *288 requestBody: required: true content: @@ -36892,9 +36912,9 @@ paths: team discussion comment content: application/json: - schema: *273 + schema: *289 examples: - default: &274 + default: &290 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -36923,9 +36943,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -36950,9 +36970,9 @@ paths: parameters: - *135 - *214 - - *269 - - *272 - - &276 + - *285 + - *288 + - &292 name: reaction_id description: The unique identifier of the reaction. in: path @@ -36986,7 +37006,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -37012,9 +37032,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 x-github: @@ -37042,7 +37062,7 @@ paths: parameters: - *135 - *214 - - *269 + - *285 requestBody: required: true content: @@ -37074,16 +37094,16 @@ paths: description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -37108,8 +37128,8 @@ paths: parameters: - *135 - *214 - - *269 - - *276 + - *285 + - *292 responses: '204': description: Response @@ -37139,9 +37159,9 @@ paths: description: Response content: application/json: - schema: *277 + schema: *293 examples: - default: *278 + default: *294 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -37184,9 +37204,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *295 examples: - default: *280 + default: *296 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -37291,7 +37311,7 @@ paths: description: Response content: application/json: - schema: &281 + schema: &297 title: Team Membership description: Team Membership type: object @@ -37318,7 +37338,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &577 + response-if-user-is-a-team-maintainer: &578 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -37381,9 +37401,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *297 examples: - response-if-users-membership-with-team-is-now-pending: &578 + response-if-users-membership-with-team-is-now-pending: &579 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -37457,7 +37477,7 @@ paths: application/json: schema: type: array - items: &282 + items: &298 title: Team Project description: A team's access to a project. type: object @@ -37525,7 +37545,7 @@ paths: - updated_at - permissions examples: - default: &579 + default: &580 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -37588,7 +37608,7 @@ paths: parameters: - *135 - *214 - - &283 + - &299 name: project_id description: The unique identifier of the project. in: path @@ -37600,9 +37620,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *298 examples: - default: &580 + default: &581 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -37664,7 +37684,7 @@ paths: parameters: - *135 - *214 - - *283 + - *299 requestBody: required: false content: @@ -37730,7 +37750,7 @@ paths: parameters: - *135 - *214 - - *283 + - *299 responses: '204': description: Response @@ -37798,14 +37818,14 @@ paths: parameters: - *135 - *214 - - *284 - - *285 + - *300 + - *301 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &581 + schema: &582 title: Team Repository description: A team's access to a repository. type: object @@ -38376,8 +38396,8 @@ paths: parameters: - *135 - *214 - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -38424,8 +38444,8 @@ paths: parameters: - *135 - *214 - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -38460,9 +38480,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - response-if-child-teams-exist: &582 + response-if-child-teams-exist: &583 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -38586,7 +38606,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#get-a-project-card parameters: - - &287 + - &303 name: card_id description: The unique identifier of the card. in: path @@ -38598,7 +38618,7 @@ paths: description: Response content: application/json: - schema: &288 + schema: &304 title: Project Card description: Project cards represent a scope of work. type: object @@ -38665,7 +38685,7 @@ paths: - created_at - updated_at examples: - default: &289 + default: &305 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -38715,7 +38735,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#update-an-existing-project-card parameters: - - *287 + - *303 requestBody: required: false content: @@ -38742,9 +38762,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *304 examples: - default: *289 + default: *305 '304': *42 '403': *43 '401': *41 @@ -38765,7 +38785,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#delete-a-project-card parameters: - - *287 + - *303 responses: '204': description: Response @@ -38803,7 +38823,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#move-a-project-card parameters: - - *287 + - *303 requestBody: required: true content: @@ -38908,7 +38928,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#get-a-project-column parameters: - - &290 + - &306 name: column_id description: The unique identifier of the column. in: path @@ -38920,7 +38940,7 @@ paths: description: Response content: application/json: - schema: &291 + schema: &307 title: Project Column description: Project columns contain cards of work. type: object @@ -38966,7 +38986,7 @@ paths: - created_at - updated_at examples: - default: &292 + default: &308 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -38995,7 +39015,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#update-an-existing-project-column parameters: - - *290 + - *306 requestBody: required: true content: @@ -39019,9 +39039,9 @@ paths: description: Response content: application/json: - schema: *291 + schema: *307 examples: - default: *292 + default: *308 '304': *42 '403': *43 '401': *41 @@ -39040,7 +39060,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#delete-a-project-column parameters: - - *290 + - *306 responses: '204': description: Response @@ -39063,7 +39083,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#list-project-cards parameters: - - *290 + - *306 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -39084,7 +39104,7 @@ paths: application/json: schema: type: array - items: *288 + items: *304 examples: default: value: @@ -39137,7 +39157,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/cards#create-a-project-card parameters: - - *290 + - *306 requestBody: required: true content: @@ -39177,9 +39197,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *304 examples: - default: *289 + default: *305 '304': *42 '403': *43 '401': *41 @@ -39229,7 +39249,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#move-a-project-column parameters: - - *290 + - *306 requestBody: required: true content: @@ -39285,7 +39305,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/projects#get-a-project parameters: - - *283 + - *299 responses: '200': description: Response @@ -39293,7 +39313,7 @@ paths: application/json: schema: *236 examples: - default: &293 + default: &309 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -39346,7 +39366,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/projects#update-a-project parameters: - - *283 + - *299 requestBody: required: false content: @@ -39394,7 +39414,7 @@ paths: application/json: schema: *236 examples: - default: *293 + default: *309 '404': description: Not Found if the authenticated user does not have access to the project @@ -39433,7 +39453,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/projects#delete-a-project parameters: - - *283 + - *299 responses: '204': description: Delete Success @@ -39477,7 +39497,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/collaborators#list-project-collaborators parameters: - - *283 + - *299 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -39529,7 +39549,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/collaborators#add-project-collaborator parameters: - - *283 + - *299 - *8 requestBody: required: false @@ -39577,7 +39597,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *283 + - *299 - *8 responses: '204': @@ -39606,7 +39626,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *283 + - *299 - *8 responses: '200': @@ -39674,7 +39694,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#list-project-columns parameters: - - *283 + - *299 - *4 - *5 responses: @@ -39684,7 +39704,7 @@ paths: application/json: schema: type: array - items: *291 + items: *307 examples: default: value: @@ -39716,7 +39736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/columns#create-a-project-column parameters: - - *283 + - *299 requestBody: required: true content: @@ -39739,7 +39759,7 @@ paths: description: Response content: application/json: - schema: *291 + schema: *307 examples: default: value: @@ -39801,7 +39821,7 @@ paths: resources: type: object properties: - core: &294 + core: &310 title: Rate Limit type: object properties: @@ -39818,20 +39838,20 @@ paths: - remaining - reset - used - graphql: *294 - search: *294 - code_search: *294 - source_import: *294 - integration_manifest: *294 - code_scanning_upload: *294 - actions_runner_registration: *294 - scim: *294 - dependency_sbom: *294 - code_scanning_autofix: *294 + graphql: *310 + search: *310 + code_search: *310 + source_import: *310 + integration_manifest: *310 + code_scanning_upload: *310 + actions_runner_registration: *310 + scim: *310 + dependency_sbom: *310 + code_scanning_autofix: *310 required: - core - search - rate: *294 + rate: *310 required: - rate - resources @@ -39935,14 +39955,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#get-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *295 + schema: *311 examples: default-response: summary: Default response @@ -40441,7 +40461,7 @@ paths: status: disabled '403': *43 '404': *26 - '301': *296 + '301': *312 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40459,8 +40479,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#update-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -40676,10 +40696,10 @@ paths: description: Response content: application/json: - schema: *295 + schema: *311 examples: - default: *297 - '307': &298 + default: *313 + '307': &314 description: Temporary Redirect content: application/json: @@ -40724,8 +40744,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#delete-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -40747,7 +40767,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#delete-a-repository - '307': *298 + '307': *314 '404': *26 '409': *140 x-github: @@ -40771,11 +40791,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 - - &315 + - &331 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -40798,7 +40818,7 @@ paths: type: integer artifacts: type: array - items: &299 + items: &315 title: Artifact description: An artifact type: object @@ -40869,7 +40889,7 @@ paths: - expires_at - updated_at examples: - default: &316 + default: &332 value: total_count: 2 artifacts: @@ -40928,9 +40948,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/artifacts#get-an-artifact parameters: - - *284 - - *285 - - &300 + - *300 + - *301 + - &316 name: artifact_id description: The unique identifier of the artifact. in: path @@ -40942,7 +40962,7 @@ paths: description: Response content: application/json: - schema: *299 + schema: *315 examples: default: value: @@ -40979,9 +40999,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/artifacts#delete-an-artifact parameters: - - *284 - - *285 - *300 + - *301 + - *316 responses: '204': description: Response @@ -41005,9 +41025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/artifacts#download-an-artifact parameters: - - *284 - - *285 - *300 + - *301 + - *316 - name: archive_format in: path required: true @@ -41044,14 +41064,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *301 + schema: *317 examples: default: value: @@ -41077,14 +41097,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#get-github-actions-cache-usage-policy-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: &302 + schema: &318 title: Actions cache usage policy for repository description: GitHub Actions cache usage policy for repository. type: object @@ -41096,7 +41116,7 @@ paths: required: - repo_cache_size_limit_in_gb examples: - default: &303 + default: &319 value: repo_cache_size_limit_in_gb: 14 x-github: @@ -41117,8 +41137,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#set-github-actions-cache-usage-policy-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -41126,9 +41146,9 @@ paths: required: true content: application/json: - schema: *302 + schema: *318 examples: - selected_actions: *303 + selected_actions: *319 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41148,11 +41168,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 - - &304 + - &320 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -41186,7 +41206,7 @@ paths: description: Response content: application/json: - schema: &305 + schema: &321 title: Repository actions caches description: Repository actions caches type: object @@ -41228,7 +41248,7 @@ paths: - total_count - actions_caches examples: - default: &306 + default: &322 value: total_count: 1 actions_caches: @@ -41260,23 +41280,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *284 - - *285 + - *300 + - *301 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *304 + - *320 responses: '200': description: Response content: application/json: - schema: *305 + schema: *321 examples: - default: *306 + default: *322 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -41296,8 +41316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *284 - - *285 + - *300 + - *301 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -41328,9 +41348,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *284 - - *285 - - &307 + - *300 + - *301 + - &323 name: job_id description: The unique identifier of the job. in: path @@ -41342,7 +41362,7 @@ paths: description: Response content: application/json: - schema: &319 + schema: &335 title: Job description: Information of a job execution in a workflow run type: object @@ -41649,9 +41669,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *284 - - *285 - - *307 + - *300 + - *301 + - *323 responses: '302': description: Response @@ -41679,9 +41699,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *284 - - *285 - - *307 + - *300 + - *301 + - *323 requestBody: required: false content: @@ -41726,8 +41746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Status response @@ -41777,8 +41797,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -41841,8 +41861,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#list-repository-organization-secrets parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -41860,7 +41880,7 @@ paths: type: integer secrets: type: array - items: &321 + items: &337 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -41880,7 +41900,7 @@ paths: - created_at - updated_at examples: - default: &322 + default: &338 value: total_count: 2 secrets: @@ -41913,9 +41933,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#list-repository-organization-variables parameters: - - *284 - - *285 - - *308 + - *300 + - *301 + - *324 - *5 responses: '200': @@ -41932,7 +41952,7 @@ paths: type: integer variables: type: array - items: &325 + items: &341 title: Actions Variable type: object properties: @@ -41962,7 +41982,7 @@ paths: - created_at - updated_at examples: - default: &326 + default: &342 value: total_count: 2 variables: @@ -41995,8 +42015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -42005,7 +42025,7 @@ paths: schema: type: object properties: - enabled: &309 + enabled: &325 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *69 @@ -42038,8 +42058,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -42050,7 +42070,7 @@ paths: schema: type: object properties: - enabled: *309 + enabled: *325 allowed_actions: *69 required: - enabled @@ -42081,14 +42101,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: &310 + schema: &326 type: object properties: access_level: @@ -42106,7 +42126,7 @@ paths: required: - access_level examples: - default: &311 + default: &327 value: access_level: organization x-github: @@ -42131,15 +42151,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: application/json: - schema: *310 + schema: *326 examples: - default: *311 + default: *327 responses: '204': description: Response @@ -42163,8 +42183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -42195,8 +42215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -42228,8 +42248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -42258,8 +42278,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Success response @@ -42299,8 +42319,8 @@ paths: in: query schema: type: string - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -42344,8 +42364,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -42377,8 +42397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -42452,8 +42472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '201': description: Response @@ -42489,8 +42509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '201': description: Response @@ -42520,8 +42540,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 responses: '200': @@ -42551,8 +42571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 responses: '204': @@ -42579,8 +42599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 responses: '200': *87 @@ -42605,8 +42625,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 requestBody: required: true @@ -42655,8 +42675,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 requestBody: required: true @@ -42706,8 +42726,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 responses: '200': *160 @@ -42737,8 +42757,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *81 - *161 responses: @@ -42768,9 +42788,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *284 - - *285 - - &329 + - *300 + - *301 + - &345 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -42778,7 +42798,7 @@ paths: required: false schema: type: string - - &330 + - &346 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -42786,7 +42806,7 @@ paths: required: false schema: type: string - - &331 + - &347 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -42795,7 +42815,7 @@ paths: required: false schema: type: string - - &332 + - &348 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -42822,7 +42842,7 @@ paths: - pending - *4 - *5 - - &333 + - &349 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-server@3.14/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -42831,7 +42851,7 @@ paths: schema: type: string format: date-time - - &312 + - &328 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -42840,13 +42860,13 @@ paths: schema: type: boolean default: false - - &334 + - &350 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &335 + - &351 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -42869,7 +42889,7 @@ paths: type: integer workflow_runs: type: array - items: &313 + items: &329 title: Workflow Run description: An invocation of a workflow type: object @@ -42964,7 +42984,7 @@ paths: that triggered the run. type: array nullable: true - items: &353 + items: &369 title: Pull Request Minimal type: object properties: @@ -43083,7 +43103,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &357 + properties: &373 id: type: string description: SHA for the commit @@ -43134,7 +43154,7 @@ paths: - name - email nullable: true - required: &358 + required: &374 - id - tree_id - message @@ -43181,7 +43201,7 @@ paths: - workflow_url - pull_requests examples: - default: &336 + default: &352 value: total_count: 1 workflow_runs: @@ -43417,24 +43437,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *284 - - *285 - - &314 + - *300 + - *301 + - &330 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *312 + - *328 responses: '200': description: Response content: application/json: - schema: *313 + schema: *329 examples: - default: &317 + default: &333 value: id: 30433642 name: Build @@ -43675,9 +43695,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '204': description: Response @@ -43700,9 +43720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '200': description: Response @@ -43823,12 +43843,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 - *4 - *5 - - *315 + - *331 responses: '200': description: Response @@ -43844,9 +43864,9 @@ paths: type: integer artifacts: type: array - items: *299 + items: *315 examples: - default: *316 + default: *332 headers: Link: *6 x-github: @@ -43870,25 +43890,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *284 - - *285 - - *314 - - &318 + - *300 + - *301 + - *330 + - &334 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *312 + - *328 responses: '200': description: Response content: application/json: - schema: *313 + schema: *329 examples: - default: *317 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43911,10 +43931,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *284 - - *285 - - *314 - - *318 + - *300 + - *301 + - *330 + - *334 - *4 - *5 responses: @@ -43932,9 +43952,9 @@ paths: type: integer jobs: type: array - items: *319 + items: *335 examples: - default: &320 + default: &336 value: total_count: 1 jobs: @@ -44047,10 +44067,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *284 - - *285 - - *314 - - *318 + - *300 + - *301 + - *330 + - *334 responses: '302': description: Response @@ -44078,9 +44098,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '202': description: Response @@ -44113,9 +44133,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 requestBody: required: true content: @@ -44182,9 +44202,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '202': description: Response @@ -44217,9 +44237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -44249,9 +44269,9 @@ paths: type: integer jobs: type: array - items: *319 + items: *335 examples: - default: *320 + default: *336 headers: Link: *6 x-github: @@ -44276,9 +44296,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '302': description: Response @@ -44305,9 +44325,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '204': description: Response @@ -44334,9 +44354,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 responses: '200': description: Response @@ -44396,7 +44416,7 @@ paths: items: type: object properties: - type: &410 + type: &426 type: string description: The type of reviewer. enum: @@ -44406,7 +44426,7 @@ paths: reviewer: anyOf: - *19 - - *286 + - *302 required: - environment - wait_timer @@ -44481,9 +44501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 requestBody: required: true content: @@ -44530,7 +44550,7 @@ paths: application/json: schema: type: array - items: &405 + items: &421 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -44636,7 +44656,7 @@ paths: - created_at - updated_at examples: - default: &406 + default: &422 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -44692,9 +44712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 requestBody: required: false content: @@ -44738,9 +44758,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *284 - - *285 - - *314 + - *300 + - *301 + - *330 requestBody: required: false content: @@ -44787,8 +44807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#list-repository-secrets parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -44806,9 +44826,9 @@ paths: type: integer secrets: type: array - items: *321 + items: *337 examples: - default: *322 + default: *338 headers: Link: *6 x-github: @@ -44833,16 +44853,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#get-a-repository-public-key parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *323 + schema: *339 examples: - default: *324 + default: *340 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44864,17 +44884,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#get-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 responses: '200': description: Response content: application/json: - schema: *321 + schema: *337 examples: - default: &423 + default: &439 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -44900,8 +44920,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 requestBody: required: true @@ -44959,8 +44979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#delete-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 responses: '204': @@ -44986,9 +45006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#list-repository-variables parameters: - - *284 - - *285 - - *308 + - *300 + - *301 + - *324 - *5 responses: '200': @@ -45005,9 +45025,9 @@ paths: type: integer variables: type: array - items: *325 + items: *341 examples: - default: *326 + default: *342 headers: Link: *6 x-github: @@ -45030,8 +45050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#create-a-repository-variable parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -45083,17 +45103,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#get-a-repository-variable parameters: - - *284 - - *285 + - *300 + - *301 - *166 responses: '200': description: Response content: application/json: - schema: *325 + schema: *341 examples: - default: &424 + default: &440 value: name: USERNAME value: octocat @@ -45119,8 +45139,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#update-a-repository-variable parameters: - - *284 - - *285 + - *300 + - *301 - *166 requestBody: required: true @@ -45163,8 +45183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#delete-a-repository-variable parameters: - - *284 - - *285 + - *300 + - *301 - *166 responses: '204': @@ -45190,8 +45210,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflows#list-repository-workflows parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -45209,7 +45229,7 @@ paths: type: integer workflows: type: array - items: &327 + items: &343 title: Workflow description: A GitHub Actions workflow type: object @@ -45316,9 +45336,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflows#get-a-workflow parameters: - - *284 - - *285 - - &328 + - *300 + - *301 + - &344 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -45333,7 +45353,7 @@ paths: description: Response content: application/json: - schema: *327 + schema: *343 examples: default: value: @@ -45366,9 +45386,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflows#disable-a-workflow parameters: - - *284 - - *285 - - *328 + - *300 + - *301 + - *344 responses: '204': description: Response @@ -45393,9 +45413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *284 - - *285 - - *328 + - *300 + - *301 + - *344 responses: '204': description: Response @@ -45446,9 +45466,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflows#enable-a-workflow parameters: - - *284 - - *285 - - *328 + - *300 + - *301 + - *344 responses: '204': description: Response @@ -45475,19 +45495,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *284 - - *285 - - *328 - - *329 - - *330 - - *331 - - *332 + - *300 + - *301 + - *344 + - *345 + - *346 + - *347 + - *348 - *4 - *5 - - *333 - - *312 - - *334 - - *335 + - *349 + - *328 + - *350 + - *351 responses: '200': description: Response @@ -45503,9 +45523,9 @@ paths: type: integer workflow_runs: type: array - items: *313 + items: *329 examples: - default: *336 + default: *352 headers: Link: *6 x-github: @@ -45528,8 +45548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-activities parameters: - - *284 - - *285 + - *300 + - *301 - *9 - *4 - *88 @@ -45693,8 +45713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/assignees#list-assignees parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -45731,8 +45751,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *284 - - *285 + - *300 + - *301 - name: assignee in: path required: true @@ -45766,8 +45786,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -45775,7 +45795,7 @@ paths: application/json: schema: type: array - items: &337 + items: &353 title: Autolink reference description: An autolink reference. type: object @@ -45825,8 +45845,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -45865,9 +45885,9 @@ paths: description: response content: application/json: - schema: *337 + schema: *353 examples: - default: &338 + default: &354 value: id: 1 key_prefix: TICKET- @@ -45898,9 +45918,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *284 - - *285 - - &339 + - *300 + - *301 + - &355 name: autolink_id description: The unique identifier of the autolink. in: path @@ -45912,9 +45932,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *353 examples: - default: *338 + default: *354 '404': *26 x-github: githubCloudOnly: false @@ -45934,9 +45954,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *284 - - *285 - - *339 + - *300 + - *301 + - *355 responses: '204': description: Response @@ -45960,8 +45980,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response if Dependabot is enabled @@ -46008,8 +46028,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branches#list-branches parameters: - - *284 - - *285 + - *300 + - *301 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -46047,7 +46067,7 @@ paths: - url protected: type: boolean - protection: &341 + protection: &357 title: Branch Protection description: Branch Protection type: object @@ -46089,7 +46109,7 @@ paths: required: - contexts - checks - enforce_admins: &344 + enforce_admins: &360 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -46104,7 +46124,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &346 + required_pull_request_reviews: &362 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -46125,7 +46145,7 @@ paths: description: The list of teams with review dismissal access. type: array - items: *286 + items: *302 apps: description: The list of apps with review dismissal access. @@ -46154,7 +46174,7 @@ paths: description: The list of teams allowed to bypass pull request requirements. type: array - items: *286 + items: *302 apps: description: The list of apps allowed to bypass pull request requirements. @@ -46180,7 +46200,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &343 + restrictions: &359 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -46487,9 +46507,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branches#get-a-branch parameters: - - *284 - - *285 - - &342 + - *300 + - *301 + - &358 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-server@3.14/graphql). @@ -46503,14 +46523,14 @@ paths: description: Response content: application/json: - schema: &352 + schema: &368 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &383 + commit: &399 title: Commit description: Commit type: object @@ -46544,7 +46564,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &340 + properties: &356 name: type: string example: '"Chris Wanstrath"' @@ -46559,7 +46579,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *340 + properties: *356 nullable: true message: type: string @@ -46580,7 +46600,7 @@ paths: required: - sha - url - verification: &430 + verification: &446 title: Verification type: object properties: @@ -46646,7 +46666,7 @@ paths: type: integer files: type: array - items: &394 + items: &410 title: Diff Entry description: Diff Entry type: object @@ -46729,7 +46749,7 @@ paths: - self protected: type: boolean - protection: *341 + protection: *357 protection_url: type: string format: uri @@ -46833,7 +46853,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *296 + '301': *312 '404': *26 x-github: githubCloudOnly: false @@ -46855,15 +46875,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *341 + schema: *357 examples: default: value: @@ -47057,9 +47077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#update-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -47314,7 +47334,7 @@ paths: url: type: string format: uri - required_status_checks: &349 + required_status_checks: &365 title: Status Check Policy description: Status Check Policy type: object @@ -47390,7 +47410,7 @@ paths: items: *19 teams: type: array - items: *286 + items: *302 apps: type: array items: *25 @@ -47408,7 +47428,7 @@ paths: items: *19 teams: type: array - items: *286 + items: *302 apps: type: array items: *25 @@ -47466,7 +47486,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *343 + restrictions: *359 required_conversation_resolution: type: object properties: @@ -47578,9 +47598,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#delete-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -47605,17 +47625,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *344 + schema: *360 examples: - default: &345 + default: &361 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -47637,17 +47657,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *344 + schema: *360 examples: - default: *345 + default: *361 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47666,9 +47686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -47693,17 +47713,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *346 + schema: *362 examples: - default: &347 + default: &363 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -47799,9 +47819,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -47899,9 +47919,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *362 examples: - default: *347 + default: *363 '422': *35 x-github: githubCloudOnly: false @@ -47922,9 +47942,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -47951,17 +47971,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *344 + schema: *360 examples: - default: &348 + default: &364 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -47984,17 +48004,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *344 + schema: *360 examples: - default: *348 + default: *364 '404': *26 x-github: githubCloudOnly: false @@ -48014,9 +48034,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -48041,17 +48061,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-status-checks-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *349 + schema: *365 examples: - default: &350 + default: &366 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -48077,9 +48097,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#update-status-check-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -48131,9 +48151,9 @@ paths: description: Response content: application/json: - schema: *349 + schema: *365 examples: - default: *350 + default: *366 '404': *26 '422': *35 x-github: @@ -48155,9 +48175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#remove-status-check-protection parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -48181,9 +48201,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response @@ -48217,9 +48237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#add-status-check-contexts parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -48286,9 +48306,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#set-status-check-contexts parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -48352,9 +48372,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: content: application/json: @@ -48420,15 +48440,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response content: application/json: - schema: *343 + schema: *359 examples: default: value: @@ -48519,9 +48539,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#delete-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '204': description: Response @@ -48544,9 +48564,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response @@ -48556,7 +48576,7 @@ paths: type: array items: *25 examples: - default: &351 + default: &367 value: - id: 1 slug: octoapp @@ -48613,9 +48633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -48649,7 +48669,7 @@ paths: type: array items: *25 examples: - default: *351 + default: *367 '422': *35 x-github: githubCloudOnly: false @@ -48670,9 +48690,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -48706,7 +48726,7 @@ paths: type: array items: *25 examples: - default: *351 + default: *367 '422': *35 x-github: githubCloudOnly: false @@ -48727,9 +48747,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -48763,7 +48783,7 @@ paths: type: array items: *25 examples: - default: *351 + default: *367 '422': *35 x-github: githubCloudOnly: false @@ -48785,9 +48805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response @@ -48795,9 +48815,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - default: *262 + default: *278 '404': *26 x-github: githubCloudOnly: false @@ -48817,9 +48837,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -48855,9 +48875,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - default: *262 + default: *278 '422': *35 x-github: githubCloudOnly: false @@ -48878,9 +48898,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: false content: @@ -48916,9 +48936,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - default: *262 + default: *278 '422': *35 x-github: githubCloudOnly: false @@ -48939,9 +48959,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: content: application/json: @@ -48976,9 +48996,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - default: *262 + default: *278 '422': *35 x-github: githubCloudOnly: false @@ -49000,9 +49020,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 responses: '200': description: Response @@ -49036,9 +49056,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -49096,9 +49116,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -49156,9 +49176,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -49218,9 +49238,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branches#rename-a-branch parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 requestBody: required: true content: @@ -49242,7 +49262,7 @@ paths: description: Response content: application/json: - schema: *352 + schema: *368 examples: default: value: @@ -49355,8 +49375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#create-a-check-run parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -49635,7 +49655,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &370 title: CheckRun description: A check performed on the code of a given code change type: object @@ -49754,8 +49774,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *353 - deployment: &618 + items: *369 + deployment: &619 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -50035,9 +50055,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#get-a-check-run parameters: - - *284 - - *285 - - &355 + - *300 + - *301 + - &371 name: check_run_id description: The unique identifier of the check run. in: path @@ -50049,9 +50069,9 @@ paths: description: Response content: application/json: - schema: *354 + schema: *370 examples: - default: &356 + default: &372 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -50151,9 +50171,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#update-a-check-run parameters: - - *284 - - *285 - - *355 + - *300 + - *301 + - *371 requestBody: required: true content: @@ -50393,9 +50413,9 @@ paths: description: Response content: application/json: - schema: *354 + schema: *370 examples: - default: *356 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50415,9 +50435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#list-check-run-annotations parameters: - - *284 - - *285 - - *355 + - *300 + - *301 + - *371 - *4 - *5 responses: @@ -50512,9 +50532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#rerequest-a-check-run parameters: - - *284 - - *285 - - *355 + - *300 + - *301 + - *371 responses: '201': description: Response @@ -50558,8 +50578,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/suites#create-a-check-suite parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -50581,7 +50601,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &359 + schema: &375 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -50645,7 +50665,7 @@ paths: nullable: true pull_requests: type: array - items: *353 + items: *369 nullable: true app: title: GitHub app @@ -50671,8 +50691,8 @@ paths: title: Simple Commit description: A commit. type: object - properties: *357 - required: *358 + properties: *373 + required: *374 latest_check_runs_count: type: integer check_runs_url: @@ -50700,7 +50720,7 @@ paths: - check_runs_url - pull_requests examples: - default: &360 + default: &376 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -50991,9 +51011,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *359 + schema: *375 examples: - default: *360 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51012,8 +51032,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -51322,9 +51342,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/suites#get-a-check-suite parameters: - - *284 - - *285 - - &361 + - *300 + - *301 + - &377 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -51336,9 +51356,9 @@ paths: description: Response content: application/json: - schema: *359 + schema: *375 examples: - default: *360 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51361,17 +51381,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *284 - - *285 - - *361 - - &391 + - *300 + - *301 + - *377 + - &407 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &392 + - &408 name: status description: Returns check runs with the specified `status`. in: query @@ -51410,9 +51430,9 @@ paths: type: integer check_runs: type: array - items: *354 + items: *370 examples: - default: &393 + default: &409 value: total_count: 1 check_runs: @@ -51514,9 +51534,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/suites#rerequest-a-check-suite parameters: - - *284 - - *285 - - *361 + - *300 + - *301 + - *377 responses: '201': description: Response @@ -51549,20 +51569,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *178 - *179 - *5 - *4 - - &373 + - &389 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *362 + schema: *378 - *9 - name: sort description: The property by which to sort the results. @@ -51585,7 +51605,7 @@ paths: be returned. in: query required: false - schema: *363 + schema: *379 responses: '200': description: Response @@ -51601,7 +51621,7 @@ paths: updated_at: *100 url: *97 html_url: *98 - instances_url: *364 + instances_url: *380 state: *92 fixed_at: *102 dismissed_by: @@ -51612,11 +51632,11 @@ paths: required: *18 nullable: true dismissed_at: *101 - dismissed_reason: *365 - dismissed_comment: *366 - rule: *367 - tool: *368 - most_recent_instance: *369 + dismissed_reason: *381 + dismissed_comment: *382 + rule: *383 + tool: *384 + most_recent_instance: *385 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -51739,7 +51759,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *42 - '403': &370 + '403': &386 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -51766,9 +51786,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *284 - - *285 - - &371 + - *300 + - *301 + - &387 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -51782,7 +51802,7 @@ paths: description: Response content: application/json: - schema: &372 + schema: &388 type: object properties: number: *93 @@ -51790,7 +51810,7 @@ paths: updated_at: *100 url: *97 html_url: *98 - instances_url: *364 + instances_url: *380 state: *92 fixed_at: *102 dismissed_by: @@ -51801,8 +51821,8 @@ paths: required: *18 nullable: true dismissed_at: *101 - dismissed_reason: *365 - dismissed_comment: *366 + dismissed_reason: *381 + dismissed_comment: *382 rule: type: object properties: @@ -51856,8 +51876,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *368 - most_recent_instance: *369 + tool: *384 + most_recent_instance: *385 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -51953,7 +51973,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *42 - '403': *370 + '403': *386 '404': *26 '503': *104 x-github: @@ -51973,9 +51993,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *284 - - *285 - - *371 + - *300 + - *301 + - *387 requestBody: required: true content: @@ -51990,8 +52010,8 @@ paths: enum: - open - dismissed - dismissed_reason: *365 - dismissed_comment: *366 + dismissed_reason: *381 + dismissed_comment: *382 required: - state examples: @@ -52006,7 +52026,7 @@ paths: description: Response content: application/json: - schema: *372 + schema: *388 examples: default: value: @@ -52082,7 +52102,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *34 - '403': &378 + '403': &394 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -52109,12 +52129,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *284 - - *285 - - *371 + - *300 + - *301 + - *387 - *5 - *4 - - *373 + - *389 responses: '200': description: Response @@ -52122,7 +52142,7 @@ paths: application/json: schema: type: array - items: *369 + items: *385 examples: default: value: @@ -52161,7 +52181,7 @@ paths: end_column: 50 classifications: - source - '403': *370 + '403': *386 '404': *26 '503': *104 x-github: @@ -52195,8 +52215,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *178 - *179 - *5 @@ -52207,12 +52227,12 @@ paths: for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *362 + schema: *378 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &376 + schema: &392 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -52233,23 +52253,23 @@ paths: application/json: schema: type: array - items: &377 + items: &393 type: object properties: - ref: *362 - commit_sha: &379 + ref: *378 + commit_sha: &395 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *374 + analysis_key: *390 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *375 + category: *391 error: type: string example: error reading field xyz @@ -52273,8 +52293,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *376 - tool: *368 + sarif_id: *392 + tool: *384 deletable: type: boolean warning: @@ -52335,7 +52355,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *370 + '403': *386 '404': *26 '503': *104 x-github: @@ -52371,8 +52391,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -52385,7 +52405,7 @@ paths: description: Response content: application/json: - schema: *377 + schema: *393 examples: response: summary: application/json response @@ -52439,7 +52459,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *370 + '403': *386 '404': *26 '503': *104 x-github: @@ -52521,8 +52541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -52575,7 +52595,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *34 - '403': *378 + '403': *394 '404': *26 '503': *104 x-github: @@ -52597,8 +52617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -52660,7 +52680,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *370 + '403': *386 '404': *26 '503': *104 x-github: @@ -52681,8 +52701,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -52753,7 +52773,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *378 + '403': *394 '404': *26 '409': description: Response if there is already a validation run in progress with @@ -52824,8 +52844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -52833,7 +52853,7 @@ paths: schema: type: object properties: - commit_sha: *379 + commit_sha: *395 ref: type: string description: |- @@ -52886,7 +52906,7 @@ paths: schema: type: object properties: - id: *376 + id: *392 url: type: string description: The REST API URL for checking the status of the upload. @@ -52900,7 +52920,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *378 + '403': *394 '404': *26 '413': description: Payload Too Large if the sarif field is too large @@ -52923,8 +52943,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *284 - - *285 + - *300 + - *301 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -52970,7 +52990,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *370 + '403': *386 '404': description: Not Found if the sarif id does not match any upload '503': *104 @@ -52995,8 +53015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-codeowners-errors parameters: - - *284 - - *285 + - *300 + - *301 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -53119,8 +53139,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *284 - - *285 + - *300 + - *301 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -53162,7 +53182,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &380 + properties: &396 login: type: string example: octocat @@ -53255,7 +53275,7 @@ paths: user_view_type: type: string example: public - required: &381 + required: &397 - avatar_url - events_url - followers_url @@ -53328,8 +53348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *284 - - *285 + - *300 + - *301 - *8 responses: '204': @@ -53366,8 +53386,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *284 - - *285 + - *300 + - *301 - *8 requestBody: required: false @@ -53437,8 +53457,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *284 - - *285 + - *300 + - *301 - *8 responses: '204': @@ -53470,8 +53490,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *284 - - *285 + - *300 + - *301 - *8 responses: '200': @@ -53492,8 +53512,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *380 - required: *381 + properties: *396 + required: *397 nullable: true required: - permission @@ -53548,8 +53568,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -53559,7 +53579,7 @@ paths: application/json: schema: type: array - items: &382 + items: &398 title: Commit Comment description: Commit Comment type: object @@ -53617,7 +53637,7 @@ paths: - created_at - updated_at examples: - default: &385 + default: &401 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -53676,17 +53696,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#get-a-commit-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '200': description: Response content: application/json: - schema: *382 + schema: *398 examples: - default: &386 + default: &402 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -53743,8 +53763,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#update-a-commit-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -53767,7 +53787,7 @@ paths: description: Response content: application/json: - schema: *382 + schema: *398 examples: default: value: @@ -53818,8 +53838,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#delete-a-commit-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '204': @@ -53841,8 +53861,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). @@ -53869,9 +53889,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 '404': *26 @@ -53892,8 +53912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -53926,16 +53946,16 @@ paths: description: Reaction exists content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Reaction created content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '422': *35 x-github: githubCloudOnly: false @@ -53957,10 +53977,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *284 - - *285 + - *300 + - *301 - *120 - - *276 + - *292 responses: '204': description: Response @@ -54009,8 +54029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/commits#list-commits parameters: - - *284 - - *285 + - *300 + - *301 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -54066,9 +54086,9 @@ paths: application/json: schema: type: array - items: *383 + items: *399 examples: - default: &491 + default: &507 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -54161,9 +54181,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/commits#list-branches-for-head-commit parameters: - - *284 - - *285 - - &384 + - *300 + - *301 + - &400 name: commit_sha description: The SHA of the commit. in: path @@ -54235,9 +54255,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#list-commit-comments parameters: - - *284 - - *285 - - *384 + - *300 + - *301 + - *400 - *4 - *5 responses: @@ -54247,9 +54267,9 @@ paths: application/json: schema: type: array - items: *382 + items: *398 examples: - default: *385 + default: *401 headers: Link: *6 x-github: @@ -54277,9 +54297,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/comments#create-a-commit-comment parameters: - - *284 - - *285 - - *384 + - *300 + - *301 + - *400 requestBody: required: true content: @@ -54314,9 +54334,9 @@ paths: description: Response content: application/json: - schema: *382 + schema: *398 examples: - default: *386 + default: *402 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -54344,9 +54364,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *284 - - *285 - - *384 + - *300 + - *301 + - *400 - *4 - *5 responses: @@ -54356,7 +54376,7 @@ paths: application/json: schema: type: array - items: &481 + items: &497 title: Pull Request Simple description: Pull Request Simple type: object @@ -54462,8 +54482,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *387 - required: *388 + properties: *403 + required: *404 nullable: true active_lock_reason: type: string @@ -54508,7 +54528,7 @@ paths: nullable: true requested_teams: type: array - items: *286 + items: *302 nullable: true head: type: object @@ -54559,7 +54579,7 @@ paths: _links: type: object properties: - comments: &389 + comments: &405 title: Link description: Hypermedia Link type: object @@ -54568,13 +54588,13 @@ paths: type: string required: - href - commits: *389 - statuses: *389 - html: *389 - issue: *389 - review_comments: *389 - review_comment: *389 - self: *389 + commits: *405 + statuses: *405 + html: *405 + issue: *405 + review_comments: *405 + review_comment: *405 + self: *405 required: - comments - commits @@ -54585,7 +54605,7 @@ paths: - review_comment - self author_association: *108 - auto_merge: &483 + auto_merge: &499 title: Auto merge description: The status of auto merging a pull request. type: object @@ -54648,7 +54668,7 @@ paths: - author_association - auto_merge examples: - default: &482 + default: &498 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -55185,11 +55205,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/commits#get-a-commit parameters: - - *284 - - *285 + - *300 + - *301 - *5 - *4 - - &390 + - &406 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -55204,9 +55224,9 @@ paths: description: Response content: application/json: - schema: *383 + schema: *399 examples: - default: &466 + default: &482 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -55316,11 +55336,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *284 - - *285 - - *390 - - *391 - - *392 + - *300 + - *301 + - *406 + - *407 + - *408 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -55354,9 +55374,9 @@ paths: type: integer check_runs: type: array - items: *354 + items: *370 examples: - default: *393 + default: *409 headers: Link: *6 x-github: @@ -55381,9 +55401,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *284 - - *285 - - *390 + - *300 + - *301 + - *406 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -55391,7 +55411,7 @@ paths: schema: type: integer example: 1 - - *391 + - *407 - *4 - *5 responses: @@ -55409,7 +55429,7 @@ paths: type: integer check_suites: type: array - items: *359 + items: *375 examples: default: value: @@ -55609,9 +55629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *284 - - *285 - - *390 + - *300 + - *301 + - *406 - *4 - *5 responses: @@ -55809,9 +55829,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *284 - - *285 - - *390 + - *300 + - *301 + - *406 - *4 - *5 responses: @@ -55821,7 +55841,7 @@ paths: application/json: schema: type: array - items: &539 + items: &540 title: Status description: The status of a commit. type: object @@ -55902,7 +55922,7 @@ paths: site_admin: false headers: Link: *6 - '301': *296 + '301': *312 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55970,8 +55990,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/commits#compare-two-commits parameters: - - *284 - - *285 + - *300 + - *301 - *5 - *4 - name: basehead @@ -56014,8 +56034,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *383 - merge_base_commit: *383 + base_commit: *399 + merge_base_commit: *399 status: type: string enum: @@ -56035,10 +56055,10 @@ paths: example: 6 commits: type: array - items: *383 + items: *399 files: type: array - items: *394 + items: *410 required: - url - html_url @@ -56317,8 +56337,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#get-repository-content parameters: - - *284 - - *285 + - *300 + - *301 - name: path description: path parameter in: path @@ -56461,7 +56481,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &395 + response-if-content-is-a-file: &411 summary: Response if content is a file value: type: file @@ -56593,7 +56613,7 @@ paths: - size - type - url - - &496 + - &512 title: Content File description: Content File type: object @@ -56794,7 +56814,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *395 + response-if-content-is-a-file: *411 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -56863,7 +56883,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *26 '403': *43 - '302': &500 + '302': &516 description: Found '304': *42 x-github: @@ -56887,8 +56907,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#create-or-update-file-contents parameters: - - *284 - - *285 + - *300 + - *301 - name: path description: path parameter in: path @@ -56981,7 +57001,7 @@ paths: description: Response content: application/json: - schema: &396 + schema: &412 title: File Commit description: File Commit type: object @@ -57127,7 +57147,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *412 examples: example-for-creating-a-file: value: @@ -57178,7 +57198,7 @@ paths: schema: oneOf: - *24 - - &425 + - &441 description: Repository rule violation was detected type: object properties: @@ -57231,8 +57251,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#delete-a-file parameters: - - *284 - - *285 + - *300 + - *301 - name: path description: path parameter in: path @@ -57293,7 +57313,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *412 examples: default: value: @@ -57344,8 +57364,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-contributors parameters: - - *284 - - *285 + - *300 + - *301 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -57468,8 +57488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *186 - *187 - *188 @@ -57491,7 +57511,7 @@ paths: application/json: schema: type: array - items: &399 + items: &415 type: object description: A Dependabot alert. properties: @@ -57524,7 +57544,7 @@ paths: enum: - development - runtime - security_advisory: *397 + security_advisory: *413 security_vulnerability: *96 url: *97 html_url: *98 @@ -57555,7 +57575,7 @@ paths: nullable: true maxLength: 280 fixed_at: *102 - auto_dismissed_at: *398 + auto_dismissed_at: *414 required: - number - state @@ -57782,9 +57802,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *284 - - *285 - - &400 + - *300 + - *301 + - &416 name: alert_number in: path description: |- @@ -57799,7 +57819,7 @@ paths: description: Response content: application/json: - schema: *399 + schema: *415 examples: default: value: @@ -57903,9 +57923,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *284 - - *285 - - *400 + - *300 + - *301 + - *416 requestBody: required: true content: @@ -57950,7 +57970,7 @@ paths: description: Response content: application/json: - schema: *399 + schema: *415 examples: default: value: @@ -58079,8 +58099,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/secrets#list-repository-secrets parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -58098,7 +58118,7 @@ paths: type: integer secrets: type: array - items: &403 + items: &419 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -58151,16 +58171,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *401 + schema: *417 examples: - default: *402 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58180,15 +58200,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/secrets#get-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 responses: '200': description: Response content: application/json: - schema: *403 + schema: *419 examples: default: value: @@ -58214,8 +58234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 requestBody: required: true @@ -58268,8 +58288,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *284 - - *285 + - *300 + - *301 - *163 responses: '204': @@ -58292,8 +58312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *284 - - *285 + - *300 + - *301 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -58453,8 +58473,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -58679,8 +58699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -58755,7 +58775,7 @@ paths: - version - url additionalProperties: false - metadata: &404 + metadata: &420 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -58788,7 +58808,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *404 + metadata: *420 resolved: type: object description: A collection of resolved package dependencies. @@ -58801,7 +58821,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *404 + metadata: *420 relationship: type: string description: A notation of whether a dependency is requested @@ -58930,8 +58950,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/deployments#list-deployments parameters: - - *284 - - *285 + - *300 + - *301 - name: sha description: The SHA recorded at creation time. in: query @@ -58971,9 +58991,9 @@ paths: application/json: schema: type: array - items: *405 + items: *421 examples: - default: *406 + default: *422 headers: Link: *6 x-github: @@ -59039,8 +59059,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/deployments#create-a-deployment parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -59121,7 +59141,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *421 examples: simple-example: summary: Simple example @@ -59194,9 +59214,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/deployments#get-a-deployment parameters: - - *284 - - *285 - - &407 + - *300 + - *301 + - &423 name: deployment_id description: deployment_id parameter in: path @@ -59208,7 +59228,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *421 examples: default: value: @@ -59273,9 +59293,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/deployments#delete-a-deployment parameters: - - *284 - - *285 - - *407 + - *300 + - *301 + - *423 responses: '204': description: Response @@ -59297,9 +59317,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/statuses#list-deployment-statuses parameters: - - *284 - - *285 - - *407 + - *300 + - *301 + - *423 - *4 - *5 responses: @@ -59309,7 +59329,7 @@ paths: application/json: schema: type: array - items: &408 + items: &424 title: Deployment Status description: The status of a deployment. type: object @@ -59470,9 +59490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/statuses#create-a-deployment-status parameters: - - *284 - - *285 - - *407 + - *300 + - *301 + - *423 requestBody: required: true content: @@ -59547,9 +59567,9 @@ paths: description: Response content: application/json: - schema: *408 + schema: *424 examples: - default: &409 + default: &425 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -59605,9 +59625,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/statuses#get-a-deployment-status parameters: - - *284 - - *285 - - *407 + - *300 + - *301 + - *423 - name: status_id in: path required: true @@ -59618,9 +59638,9 @@ paths: description: Response content: application/json: - schema: *408 + schema: *424 examples: - default: *409 + default: *425 '404': *26 x-github: githubCloudOnly: false @@ -59645,8 +59665,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -59703,8 +59723,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/environments#list-environments parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -59721,7 +59741,7 @@ paths: type: integer environments: type: array - items: &411 + items: &427 title: Environment description: Details of a deployment environment type: object @@ -59773,7 +59793,7 @@ paths: type: type: string example: wait_timer - wait_timer: &413 + wait_timer: &429 type: integer example: 30 description: The amount of time to delay a job after @@ -59810,11 +59830,11 @@ paths: items: type: object properties: - type: *410 + type: *426 reviewer: anyOf: - *19 - - *286 + - *302 required: - id - node_id @@ -59834,7 +59854,7 @@ paths: - id - node_id - type - deployment_branch_policy: &414 + deployment_branch_policy: &430 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -59949,9 +59969,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/environments#get-an-environment parameters: - - *284 - - *285 - - &412 + - *300 + - *301 + - &428 name: environment_name in: path required: true @@ -59964,9 +59984,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *427 examples: - default: &415 + default: &431 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -60049,9 +60069,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/environments#create-or-update-an-environment parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 requestBody: required: false content: @@ -60060,7 +60080,7 @@ paths: type: object nullable: true properties: - wait_timer: *413 + wait_timer: *429 prevent_self_review: type: boolean example: false @@ -60077,13 +60097,13 @@ paths: items: type: object properties: - type: *410 + type: *426 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *414 + deployment_branch_policy: *430 additionalProperties: false examples: default: @@ -60103,9 +60123,9 @@ paths: description: Response content: application/json: - schema: *411 + schema: *427 examples: - default: *415 + default: *431 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -60129,9 +60149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/environments#delete-an-environment parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 responses: '204': description: Default response @@ -60156,9 +60176,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *4 - *5 responses: @@ -60176,7 +60196,7 @@ paths: example: 2 branch_policies: type: array - items: &416 + items: &432 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -60233,9 +60253,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 requestBody: required: true content: @@ -60281,9 +60301,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *432 examples: - example-wildcard: &417 + example-wildcard: &433 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -60325,10 +60345,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *284 - - *285 - - *412 - - &418 + - *300 + - *301 + - *428 + - &434 name: branch_policy_id in: path required: true @@ -60340,9 +60360,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *432 examples: - default: *417 + default: *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60361,10 +60381,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *284 - - *285 - - *412 - - *418 + - *300 + - *301 + - *428 + - *434 requestBody: required: true content: @@ -60392,9 +60412,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *432 examples: - default: *417 + default: *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60413,10 +60433,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *284 - - *285 - - *412 - - *418 + - *300 + - *301 + - *428 + - *434 responses: '204': description: Response @@ -60441,9 +60461,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *412 - - *285 - - *284 + - *428 + - *301 + - *300 responses: '200': description: List of deployment protection rules @@ -60459,7 +60479,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &419 + items: &435 title: Deployment protection rule description: Deployment protection rule type: object @@ -60478,7 +60498,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &420 + app: &436 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -60577,9 +60597,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *412 - - *285 - - *284 + - *428 + - *301 + - *300 requestBody: content: application/json: @@ -60600,9 +60620,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *419 + schema: *435 examples: - default: &421 + default: &437 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -60637,9 +60657,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *412 - - *285 - - *284 + - *428 + - *301 + - *300 - *5 - *4 responses: @@ -60658,7 +60678,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *420 + items: *436 examples: default: value: @@ -60693,10 +60713,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *284 - - *285 - - *412 - - &422 + - *300 + - *301 + - *428 + - &438 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -60708,9 +60728,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *435 examples: - default: *421 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60731,10 +60751,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *412 - - *285 - - *284 - - *422 + - *428 + - *301 + - *300 + - *438 responses: '204': description: Response @@ -60760,9 +60780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#list-environment-secrets parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *4 - *5 responses: @@ -60780,9 +60800,9 @@ paths: type: integer secrets: type: array - items: *321 + items: *337 examples: - default: *322 + default: *338 headers: Link: *6 x-github: @@ -60807,17 +60827,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#get-an-environment-public-key parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 responses: '200': description: Response content: application/json: - schema: *323 + schema: *339 examples: - default: *324 + default: *340 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60839,18 +60859,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#get-an-environment-secret parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *163 responses: '200': description: Response content: application/json: - schema: *321 + schema: *337 examples: - default: *423 + default: *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60872,9 +60892,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *163 requestBody: required: true @@ -60932,9 +60952,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/secrets#delete-an-environment-secret parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *163 responses: '204': @@ -60960,10 +60980,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#list-environment-variables parameters: - - *284 - - *285 - - *412 - - *308 + - *300 + - *301 + - *428 + - *324 - *5 responses: '200': @@ -60980,9 +61000,9 @@ paths: type: integer variables: type: array - items: *325 + items: *341 examples: - default: *326 + default: *342 headers: Link: *6 x-github: @@ -61005,9 +61025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#create-an-environment-variable parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 requestBody: required: true content: @@ -61059,18 +61079,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#get-an-environment-variable parameters: - - *284 - - *285 - - *412 + - *300 + - *301 + - *428 - *166 responses: '200': description: Response content: application/json: - schema: *325 + schema: *341 examples: - default: *424 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61091,10 +61111,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#update-an-environment-variable parameters: - - *284 - - *285 + - *300 + - *301 - *166 - - *412 + - *428 requestBody: required: true content: @@ -61136,10 +61156,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/actions/variables#delete-an-environment-variable parameters: - - *284 - - *285 + - *300 + - *301 - *166 - - *412 + - *428 responses: '204': description: Response @@ -61161,8 +61181,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/events#list-repository-events parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -61239,8 +61259,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/forks#list-forks parameters: - - *284 - - *285 + - *300 + - *301 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -61399,8 +61419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/forks#create-a-fork parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -61432,9 +61452,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *311 examples: - default: *297 + default: *313 '400': *34 '422': *35 '403': *43 @@ -61455,8 +61475,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/blobs#create-a-blob parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -61516,7 +61536,7 @@ paths: schema: oneOf: - *138 - - *425 + - *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61541,8 +61561,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/blobs#get-a-blob parameters: - - *284 - - *285 + - *300 + - *301 - name: file_sha in: path required: true @@ -61641,8 +61661,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/commits#create-a-commit parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -61751,7 +61771,7 @@ paths: description: Response content: application/json: - schema: &426 + schema: &442 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -61958,15 +61978,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/commits#get-a-commit-object parameters: - - *284 - - *285 - - *384 + - *300 + - *301 + - *400 responses: '200': description: Response content: application/json: - schema: *426 + schema: *442 examples: default: value: @@ -62019,9 +62039,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/refs#list-matching-references parameters: - - *284 - - *285 - - &427 + - *300 + - *301 + - &443 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -62038,7 +62058,7 @@ paths: application/json: schema: type: array - items: &428 + items: &444 title: Git Reference description: Git references within a repository type: object @@ -62113,17 +62133,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/refs#get-a-reference parameters: - - *284 - - *285 - - *427 + - *300 + - *301 + - *443 responses: '200': description: Response content: application/json: - schema: *428 + schema: *444 examples: - default: &429 + default: &445 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -62152,8 +62172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/refs#create-a-reference parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -62182,9 +62202,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *444 examples: - default: *429 + default: *445 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -62210,9 +62230,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/refs#update-a-reference parameters: - - *284 - - *285 - - *427 + - *300 + - *301 + - *443 requestBody: required: true content: @@ -62241,9 +62261,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *444 examples: - default: *429 + default: *445 '422': *35 '409': *140 x-github: @@ -62261,9 +62281,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/refs#delete-a-reference parameters: - - *284 - - *285 - - *427 + - *300 + - *301 + - *443 responses: '204': description: Response @@ -62318,8 +62338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/tags#create-a-tag-object parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -62386,7 +62406,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &447 title: Git Tag description: Metadata for a Git tag type: object @@ -62437,7 +62457,7 @@ paths: - sha - type - url - verification: *430 + verification: *446 required: - sha - url @@ -62447,7 +62467,7 @@ paths: - tag - message examples: - default: &432 + default: &448 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -62517,8 +62537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/tags#get-a-tag parameters: - - *284 - - *285 + - *300 + - *301 - name: tag_sha in: path required: true @@ -62529,9 +62549,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *447 examples: - default: *432 + default: *448 '404': *26 '409': *140 x-github: @@ -62555,8 +62575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/trees#create-a-tree parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -62629,7 +62649,7 @@ paths: description: Response content: application/json: - schema: &433 + schema: &449 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -62725,8 +62745,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/git/trees#get-a-tree parameters: - - *284 - - *285 + - *300 + - *301 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -62749,7 +62769,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *449 examples: default-response: summary: Default response @@ -62808,8 +62828,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#list-repository-webhooks parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -62819,7 +62839,7 @@ paths: application/json: schema: type: array - items: &434 + items: &450 title: Webhook description: Webhooks for repositories. type: object @@ -62873,7 +62893,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &648 + last_response: &649 title: Hook Response type: object properties: @@ -62947,8 +62967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#create-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -63000,9 +63020,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *450 examples: - default: &435 + default: &451 value: type: Repository id: 12345678 @@ -63050,17 +63070,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#get-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 responses: '200': description: Response content: application/json: - schema: *434 + schema: *450 examples: - default: *435 + default: *451 '404': *26 x-github: githubCloudOnly: false @@ -63080,8 +63100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#update-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 requestBody: required: true @@ -63127,9 +63147,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *450 examples: - default: *435 + default: *451 '422': *35 '404': *26 x-github: @@ -63150,8 +63170,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 responses: '204': @@ -63176,8 +63196,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *3 responses: '200': @@ -63205,8 +63225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *3 requestBody: required: false @@ -63251,8 +63271,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 - *4 - *202 @@ -63284,8 +63304,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 - *36 responses: @@ -63314,8 +63334,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 - *36 responses: @@ -63339,8 +63359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 responses: '204': @@ -63366,8 +63386,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *284 - - *285 + - *300 + - *301 - *3 responses: '204': @@ -63392,8 +63412,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -63401,8 +63421,8 @@ paths: application/json: schema: *39 examples: - default: *436 - '301': *296 + default: *452 + '301': *312 '404': *26 x-github: githubCloudOnly: false @@ -63421,8 +63441,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/invitations#list-repository-invitations parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -63432,7 +63452,7 @@ paths: application/json: schema: type: array - items: &437 + items: &453 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -63495,7 +63515,7 @@ paths: - html_url - created_at examples: - default: &597 + default: &598 value: - id: 1 repository: @@ -63626,9 +63646,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *284 - - *285 - - &438 + - *300 + - *301 + - &454 name: invitation_id description: The unique identifier of the invitation. in: path @@ -63663,7 +63683,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *453 examples: default: value: @@ -63794,9 +63814,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *284 - - *285 - - *438 + - *300 + - *301 + - *454 responses: '204': description: Response @@ -63827,8 +63847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#list-repository-issues parameters: - - *284 - - *285 + - *300 + - *301 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -64049,7 +64069,7 @@ paths: state_reason: completed headers: Link: *6 - '301': *296 + '301': *312 '422': *35 '404': *26 x-github: @@ -64078,8 +64098,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#create-an-issue parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -64163,7 +64183,7 @@ paths: application/json: schema: *121 examples: - default: &444 + default: &460 value: id: 1 node_id: MDU6SXNzdWUx @@ -64347,9 +64367,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *284 - - *285 - - &489 + - *300 + - *301 + - &505 name: sort description: The property to sort the results by. in: query @@ -64379,9 +64399,9 @@ paths: application/json: schema: type: array - items: *439 + items: *455 examples: - default: &446 + default: &462 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -64439,17 +64459,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#get-an-issue-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '200': description: Response content: application/json: - schema: *439 + schema: *455 examples: - default: &440 + default: &456 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -64503,8 +64523,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#update-an-issue-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -64527,9 +64547,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *455 examples: - default: *440 + default: *456 '422': *35 x-github: githubCloudOnly: false @@ -64547,8 +64567,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#delete-an-issue-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '204': @@ -64569,8 +64589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). @@ -64597,9 +64617,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 '404': *26 @@ -64620,8 +64640,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -64654,16 +64674,16 @@ paths: description: Reaction exists content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Reaction created content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '422': *35 x-github: githubCloudOnly: false @@ -64685,10 +64705,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *284 - - *285 + - *300 + - *301 - *120 - - *276 + - *292 responses: '204': description: Response @@ -64708,8 +64728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/events#list-issue-events-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -64719,7 +64739,7 @@ paths: application/json: schema: type: array - items: &443 + items: &459 title: Issue Event description: Issue Event type: object @@ -64762,8 +64782,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *441 - required: *442 + properties: *457 + required: *458 nullable: true label: title: Issue Event Label @@ -64807,7 +64827,7 @@ paths: properties: *17 required: *18 nullable: true - requested_team: *286 + requested_team: *302 dismissed_review: title: Issue Event Dismissed Review type: object @@ -65070,8 +65090,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/events#get-an-issue-event parameters: - - *284 - - *285 + - *300 + - *301 - name: event_id in: path required: true @@ -65082,7 +65102,7 @@ paths: description: Response content: application/json: - schema: *443 + schema: *459 examples: default: value: @@ -65309,9 +65329,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue parameters: - - *284 - - *285 - - &445 + - *300 + - *301 + - &461 name: issue_number description: The number that identifies the issue. in: path @@ -65325,8 +65345,8 @@ paths: application/json: schema: *121 examples: - default: *444 - '301': *296 + default: *460 + '301': *312 '404': *26 '410': *237 '304': *42 @@ -65353,9 +65373,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#update-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: false content: @@ -65461,11 +65481,11 @@ paths: application/json: schema: *121 examples: - default: *444 + default: *460 '422': *35 '503': *104 '403': *43 - '301': *296 + '301': *312 '404': *26 '410': *237 x-github: @@ -65485,9 +65505,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: false content: @@ -65515,7 +65535,7 @@ paths: application/json: schema: *121 examples: - default: *444 + default: *460 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65531,9 +65551,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: content: application/json: @@ -65560,7 +65580,7 @@ paths: application/json: schema: *121 examples: - default: *444 + default: *460 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65582,9 +65602,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - name: assignee in: path required: true @@ -65624,9 +65644,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#list-issue-comments parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - *111 - *4 - *5 @@ -65637,9 +65657,9 @@ paths: application/json: schema: type: array - items: *439 + items: *455 examples: - default: *446 + default: *462 headers: Link: *6 '404': *26 @@ -65672,9 +65692,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/comments#create-an-issue-comment parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: true content: @@ -65696,9 +65716,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *455 examples: - default: *440 + default: *456 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -65725,9 +65745,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/events#list-issue-events parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - *4 - *5 responses: @@ -65741,7 +65761,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &449 + - &465 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -65795,7 +65815,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &450 + - &466 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -65931,7 +65951,7 @@ paths: - performed_via_github_app - assignee - assigner - - &451 + - &467 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -65982,7 +66002,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &452 + - &468 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -66033,7 +66053,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &453 + - &469 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -66087,7 +66107,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &454 + - &470 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -66121,7 +66141,7 @@ paths: properties: *106 required: *107 review_requester: *19 - requested_team: *286 + requested_team: *302 requested_reviewer: *19 required: - review_requester @@ -66134,7 +66154,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &455 + - &471 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -66168,7 +66188,7 @@ paths: properties: *106 required: *107 review_requester: *19 - requested_team: *286 + requested_team: *302 requested_reviewer: *19 required: - review_requester @@ -66181,7 +66201,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &456 + - &472 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -66241,7 +66261,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &457 + - &473 title: Locked Issue Event description: Locked Issue Event type: object @@ -66289,7 +66309,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &458 + - &474 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -66355,7 +66375,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &459 + - &475 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -66421,7 +66441,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &460 + - &476 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -66487,7 +66507,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &461 + - &477 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -66595,9 +66615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#list-labels-for-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - *4 - *5 responses: @@ -66607,7 +66627,7 @@ paths: application/json: schema: type: array - items: &447 + items: &463 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -66654,7 +66674,7 @@ paths: - color - default examples: - default: &448 + default: &464 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -66672,7 +66692,7 @@ paths: default: false headers: Link: *6 - '301': *296 + '301': *312 '404': *26 '410': *237 x-github: @@ -66691,9 +66711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#add-labels-to-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: false content: @@ -66752,10 +66772,10 @@ paths: application/json: schema: type: array - items: *447 + items: *463 examples: - default: *448 - '301': *296 + default: *464 + '301': *312 '404': *26 '410': *237 '422': *35 @@ -66774,9 +66794,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#set-labels-for-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: false content: @@ -66836,10 +66856,10 @@ paths: application/json: schema: type: array - items: *447 + items: *463 examples: - default: *448 - '301': *296 + default: *464 + '301': *312 '404': *26 '410': *237 '422': *35 @@ -66858,13 +66878,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 responses: '204': description: Response - '301': *296 + '301': *312 '404': *26 '410': *237 x-github: @@ -66885,9 +66905,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - name: name in: path required: true @@ -66900,7 +66920,7 @@ paths: application/json: schema: type: array - items: *447 + items: *463 examples: default: value: @@ -66911,7 +66931,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *296 + '301': *312 '404': *26 '410': *237 x-github: @@ -66933,9 +66953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#lock-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: false content: @@ -66981,9 +67001,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/issues#unlock-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 responses: '204': description: Response @@ -67005,9 +67025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -67033,9 +67053,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 '404': *26 @@ -67057,9 +67077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 requestBody: required: true content: @@ -67091,16 +67111,16 @@ paths: description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '422': *35 x-github: githubCloudOnly: false @@ -67122,10 +67142,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *284 - - *285 - - *445 - - *276 + - *300 + - *301 + - *461 + - *292 responses: '204': description: Response @@ -67145,9 +67165,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *284 - - *285 - - *445 + - *300 + - *301 + - *461 - *4 - *5 responses: @@ -67162,19 +67182,19 @@ paths: description: Timeline Event type: object anyOf: - - *449 - - *450 - - *451 - - *452 - - *453 - - *454 - - *455 - - *456 - - *457 - - *458 - - *459 - - *460 - - *461 + - *465 + - *466 + - *467 + - *468 + - *469 + - *470 + - *471 + - *472 + - *473 + - *474 + - *475 + - *476 + - *477 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -67475,7 +67495,7 @@ paths: type: string comments: type: array - items: &484 + items: &500 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -67684,7 +67704,7 @@ paths: type: string comments: type: array - items: *382 + items: *398 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -67990,8 +68010,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -68001,7 +68021,7 @@ paths: application/json: schema: type: array - items: &462 + items: &478 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -68064,8 +68084,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -68101,9 +68121,9 @@ paths: description: Response content: application/json: - schema: *462 + schema: *478 examples: - default: &463 + default: &479 value: id: 1 key: ssh-rsa AAA... @@ -68136,9 +68156,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *284 - - *285 - - &464 + - *300 + - *301 + - &480 name: key_id description: The unique identifier of the key. in: path @@ -68150,9 +68170,9 @@ paths: description: Response content: application/json: - schema: *462 + schema: *478 examples: - default: *463 + default: *479 '404': *26 x-github: githubCloudOnly: false @@ -68170,9 +68190,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *284 - - *285 - - *464 + - *300 + - *301 + - *480 responses: '204': description: Response @@ -68192,8 +68212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#list-labels-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -68203,9 +68223,9 @@ paths: application/json: schema: type: array - items: *447 + items: *463 examples: - default: *448 + default: *464 headers: Link: *6 '404': *26 @@ -68226,8 +68246,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#create-a-label parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -68263,9 +68283,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *463 examples: - default: &465 + default: &481 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -68297,8 +68317,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#get-a-label parameters: - - *284 - - *285 + - *300 + - *301 - name: name in: path required: true @@ -68309,9 +68329,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *463 examples: - default: *465 + default: *481 '404': *26 x-github: githubCloudOnly: false @@ -68328,8 +68348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#update-a-label parameters: - - *284 - - *285 + - *300 + - *301 - name: name in: path required: true @@ -68368,7 +68388,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *463 examples: default: value: @@ -68394,8 +68414,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#delete-a-label parameters: - - *284 - - *285 + - *300 + - *301 - name: name in: path required: true @@ -68421,8 +68441,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-languages parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -68458,8 +68478,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '202': *141 '403': @@ -68487,8 +68507,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -68514,9 +68534,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *284 - - *285 - - *373 + - *300 + - *301 + - *389 responses: '200': description: Response @@ -68661,8 +68681,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -68727,8 +68747,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/branches/branches#merge-a-branch parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -68762,9 +68782,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *383 + schema: *399 examples: - default: *466 + default: *482 '204': description: Response when already merged '404': @@ -68789,8 +68809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/milestones#list-milestones parameters: - - *284 - - *285 + - *300 + - *301 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -68831,12 +68851,12 @@ paths: application/json: schema: type: array - items: &467 + items: &483 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *387 - required: *388 + properties: *403 + required: *404 examples: default: value: @@ -68892,8 +68912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/milestones#create-a-milestone parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -68933,9 +68953,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *483 examples: - default: &468 + default: &484 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -68994,9 +69014,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/milestones#get-a-milestone parameters: - - *284 - - *285 - - &469 + - *300 + - *301 + - &485 name: milestone_number description: The number that identifies the milestone. in: path @@ -69008,9 +69028,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *483 examples: - default: *468 + default: *484 '404': *26 x-github: githubCloudOnly: false @@ -69027,9 +69047,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/milestones#update-a-milestone parameters: - - *284 - - *285 - - *469 + - *300 + - *301 + - *485 requestBody: required: false content: @@ -69067,9 +69087,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *483 examples: - default: *468 + default: *484 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69085,9 +69105,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/milestones#delete-a-milestone parameters: - - *284 - - *285 - - *469 + - *300 + - *301 + - *485 responses: '204': description: Response @@ -69108,9 +69128,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *284 - - *285 - - *469 + - *300 + - *301 + - *485 - *4 - *5 responses: @@ -69120,9 +69140,9 @@ paths: application/json: schema: type: array - items: *447 + items: *463 examples: - default: *448 + default: *464 headers: Link: *6 x-github: @@ -69141,12 +69161,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *284 - - *285 - - *470 - - *471 + - *300 + - *301 + - *486 + - *487 - *111 - - *472 + - *488 - *4 - *5 responses: @@ -69158,7 +69178,7 @@ paths: type: array items: *131 examples: - default: *473 + default: *489 headers: Link: *6 x-github: @@ -69182,8 +69202,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -69241,14 +69261,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#get-a-apiname-pages-site parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: &474 + schema: &490 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -69373,7 +69393,7 @@ paths: - custom_404 - public examples: - default: &475 + default: &491 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -69414,8 +69434,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#create-a-apiname-pages-site parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -69469,9 +69489,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *490 examples: - default: *475 + default: *491 '422': *35 '409': *140 x-github: @@ -69494,8 +69514,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -69594,8 +69614,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -69621,8 +69641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#list-apiname-pages-builds parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -69632,7 +69652,7 @@ paths: application/json: schema: type: array - items: &476 + items: &492 title: Page Build description: Page Build type: object @@ -69726,8 +69746,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#request-a-apiname-pages-build parameters: - - *284 - - *285 + - *300 + - *301 responses: '201': description: Response @@ -69772,16 +69792,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#get-latest-pages-build parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *476 + schema: *492 examples: - default: &477 + default: &493 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -69829,8 +69849,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#get-apiname-pages-build parameters: - - *284 - - *285 + - *300 + - *301 - name: build_id in: path required: true @@ -69841,9 +69861,9 @@ paths: description: Response content: application/json: - schema: *476 + schema: *492 examples: - default: *477 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69863,8 +69883,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#create-a-github-pages-deployment parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -69964,9 +69984,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *284 - - *285 - - &478 + - *300 + - *301 + - &494 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -70024,9 +70044,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *284 - - *285 - - *478 + - *300 + - *301 + - *494 responses: '204': *233 '404': *26 @@ -70049,8 +70069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/repo-pre-receive-hooks#list-pre-receive-hooks-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 - *9 @@ -70071,7 +70091,7 @@ paths: application/json: schema: type: array - items: &479 + items: &495 type: object properties: id: @@ -70105,17 +70125,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/repo-pre-receive-hooks#get-a-pre-receive-hook-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *16 responses: '200': description: Response content: application/json: - schema: *479 + schema: *495 examples: - default: &480 + default: &496 value: id: 42 name: Check Commits @@ -70137,15 +70157,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/repo-pre-receive-hooks#update-pre-receive-hook-enforcement-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *16 responses: '200': description: Response content: application/json: - schema: *479 + schema: *495 examples: default: value: @@ -70189,8 +70209,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/repo-pre-receive-hooks#remove-pre-receive-hook-enforcement-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - *16 responses: '200': @@ -70198,9 +70218,9 @@ paths: global level. content: application/json: - schema: *479 + schema: *495 examples: - default: *480 + default: *496 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70220,8 +70240,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/projects#list-repository-projects parameters: - - *284 - - *285 + - *300 + - *301 - name: state description: Indicates the state of the projects to return. in: query @@ -70302,8 +70322,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/projects/projects#create-a-repository-project parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -70331,7 +70351,7 @@ paths: application/json: schema: *236 examples: - default: *293 + default: *309 '401': *41 '403': *43 '404': *26 @@ -70355,8 +70375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -70395,8 +70415,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -70458,8 +70478,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#list-pull-requests parameters: - - *284 - - *285 + - *300 + - *301 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -70519,9 +70539,9 @@ paths: application/json: schema: type: array - items: *481 + items: *497 examples: - default: *482 + default: *498 headers: Link: *6 '304': *42 @@ -70553,8 +70573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#create-a-pull-request parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -70619,7 +70639,7 @@ paths: description: Response content: application/json: - schema: &486 + schema: &502 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -70730,8 +70750,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *387 - required: *388 + properties: *403 + required: *404 nullable: true active_lock_reason: type: string @@ -70776,7 +70796,7 @@ paths: nullable: true requested_teams: type: array - items: *261 + items: *277 nullable: true head: type: object @@ -70815,14 +70835,14 @@ paths: _links: type: object properties: - comments: *389 - commits: *389 - statuses: *389 - html: *389 - issue: *389 - review_comments: *389 - review_comment: *389 - self: *389 + comments: *405 + commits: *405 + statuses: *405 + html: *405 + issue: *405 + review_comments: *405 + review_comment: *405 + self: *405 required: - comments - commits @@ -70833,7 +70853,7 @@ paths: - review_comment - self author_association: *108 - auto_merge: *483 + auto_merge: *499 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -70925,7 +70945,7 @@ paths: - merged_by - review_comments examples: - default: &487 + default: &503 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -71452,8 +71472,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - name: sort in: query required: false @@ -71482,9 +71502,9 @@ paths: application/json: schema: type: array - items: *484 + items: *500 examples: - default: &490 + default: &506 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -71561,17 +71581,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '200': description: Response content: application/json: - schema: *484 + schema: *500 examples: - default: &485 + default: &501 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -71646,8 +71666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -71670,9 +71690,9 @@ paths: description: Response content: application/json: - schema: *484 + schema: *500 examples: - default: *485 + default: *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71688,8 +71708,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *284 - - *285 + - *300 + - *301 - *120 responses: '204': @@ -71711,8 +71731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). @@ -71739,9 +71759,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 '404': *26 @@ -71762,8 +71782,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *284 - - *285 + - *300 + - *301 - *120 requestBody: required: true @@ -71796,16 +71816,16 @@ paths: description: Reaction exists content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Reaction created content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '422': *35 x-github: githubCloudOnly: false @@ -71827,10 +71847,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *284 - - *285 + - *300 + - *301 - *120 - - *276 + - *292 responses: '204': description: Response @@ -71873,9 +71893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#get-a-pull-request parameters: - - *284 - - *285 - - &488 + - *300 + - *301 + - &504 name: pull_number description: The number that identifies the pull request. in: path @@ -71888,9 +71908,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *486 + schema: *502 examples: - default: *487 + default: *503 '304': *42 '404': *26 '406': @@ -71925,9 +71945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#update-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: false content: @@ -71969,9 +71989,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *502 examples: - default: *487 + default: *503 '422': *35 '403': *43 x-github: @@ -71999,10 +72019,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *284 - - *285 - - *488 - - *489 + - *300 + - *301 + - *504 + - *505 - name: direction description: The direction to sort results. Ignored without `sort` parameter. in: query @@ -72022,9 +72042,9 @@ paths: application/json: schema: type: array - items: *484 + items: *500 examples: - default: *490 + default: *506 headers: Link: *6 x-github: @@ -72057,9 +72077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: true content: @@ -72164,7 +72184,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *500 examples: example-for-a-multi-line-comment: value: @@ -72252,9 +72272,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 - *120 requestBody: required: true @@ -72277,7 +72297,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *500 examples: default: value: @@ -72363,9 +72383,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 - *4 - *5 responses: @@ -72375,9 +72395,9 @@ paths: application/json: schema: type: array - items: *383 + items: *399 examples: - default: *491 + default: *507 headers: Link: *6 x-github: @@ -72407,9 +72427,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#list-pull-requests-files parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 - *4 - *5 responses: @@ -72419,7 +72439,7 @@ paths: application/json: schema: type: array - items: *394 + items: *410 examples: default: value: @@ -72457,9 +72477,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 responses: '204': description: Response if pull request has been merged @@ -72482,9 +72502,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#merge-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: false content: @@ -72595,9 +72615,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 responses: '200': description: Response @@ -72613,7 +72633,7 @@ paths: items: *19 teams: type: array - items: *286 + items: *302 required: - users - teams @@ -72672,9 +72692,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: false content: @@ -72711,7 +72731,7 @@ paths: description: Response content: application/json: - schema: *481 + schema: *497 examples: default: value: @@ -73247,9 +73267,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: true content: @@ -73283,7 +73303,7 @@ paths: description: Response content: application/json: - schema: *481 + schema: *497 examples: default: value: @@ -73788,9 +73808,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 - *4 - *5 responses: @@ -73800,7 +73820,7 @@ paths: application/json: schema: type: array - items: &492 + items: &508 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -73951,9 +73971,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: false content: @@ -74039,9 +74059,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *508 examples: - default: &494 + default: &510 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -74104,10 +74124,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 - - &493 + - *300 + - *301 + - *504 + - &509 name: review_id description: The unique identifier of the review. in: path @@ -74119,9 +74139,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *508 examples: - default: &495 + default: &511 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -74180,10 +74200,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 - - *493 + - *300 + - *301 + - *504 + - *509 requestBody: required: true content: @@ -74206,7 +74226,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *508 examples: default: value: @@ -74268,18 +74288,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 - - *493 + - *300 + - *301 + - *504 + - *509 responses: '200': description: Response content: application/json: - schema: *492 + schema: *508 examples: - default: *494 + default: *510 '422': *27 '404': *26 x-github: @@ -74306,10 +74326,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *284 - - *285 - - *488 - - *493 + - *300 + - *301 + - *504 + - *509 - *4 - *5 responses: @@ -74392,9 +74412,9 @@ paths: _links: type: object properties: - self: *389 - html: *389 - pull_request: *389 + self: *405 + html: *405 + pull_request: *405 required: - self - html @@ -74544,10 +74564,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 - - *493 + - *300 + - *301 + - *504 + - *509 requestBody: required: true content: @@ -74575,7 +74595,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *508 examples: default: value: @@ -74638,10 +74658,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *284 - - *285 - - *488 - - *493 + - *300 + - *301 + - *504 + - *509 requestBody: required: true content: @@ -74676,9 +74696,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *508 examples: - default: *495 + default: *511 '404': *26 '422': *27 '403': *43 @@ -74700,9 +74720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *284 - - *285 - - *488 + - *300 + - *301 + - *504 requestBody: required: false content: @@ -74765,8 +74785,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#get-a-repository-readme parameters: - - *284 - - *285 + - *300 + - *301 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -74779,9 +74799,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *512 examples: - default: &497 + default: &513 value: type: file encoding: base64 @@ -74823,8 +74843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *284 - - *285 + - *300 + - *301 - name: dir description: The alternate path to look for a README file in: path @@ -74844,9 +74864,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *512 examples: - default: *497 + default: *513 '404': *26 '422': *35 x-github: @@ -74868,8 +74888,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#list-releases parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -74879,7 +74899,7 @@ paths: application/json: schema: type: array - items: &498 + items: &514 title: Release description: A release. type: object @@ -74946,7 +74966,7 @@ paths: author: *19 assets: type: array - items: &499 + items: &515 title: Release Asset description: Data related to a release. type: object @@ -75129,8 +75149,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#create-a-release parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -75200,9 +75220,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *514 examples: - default: &503 + default: &519 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -75302,9 +75322,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/assets#get-a-release-asset parameters: - - *284 - - *285 - - &501 + - *300 + - *301 + - &517 name: asset_id description: The unique identifier of the asset. in: path @@ -75316,9 +75336,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *515 examples: - default: &502 + default: &518 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -75353,7 +75373,7 @@ paths: type: User site_admin: false '404': *26 - '302': *500 + '302': *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75369,9 +75389,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/assets#update-a-release-asset parameters: - - *284 - - *285 - - *501 + - *300 + - *301 + - *517 requestBody: required: false content: @@ -75399,9 +75419,9 @@ paths: description: Response content: application/json: - schema: *499 + schema: *515 examples: - default: *502 + default: *518 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75417,9 +75437,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/assets#delete-a-release-asset parameters: - - *284 - - *285 - - *501 + - *300 + - *301 + - *517 responses: '204': description: Response @@ -75443,8 +75463,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -75529,16 +75549,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#get-the-latest-release parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response content: application/json: - schema: *498 + schema: *514 examples: - default: *503 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75555,8 +75575,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#get-a-release-by-tag-name parameters: - - *284 - - *285 + - *300 + - *301 - name: tag description: tag parameter in: path @@ -75569,9 +75589,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *514 examples: - default: *503 + default: *519 '404': *26 x-github: githubCloudOnly: false @@ -75593,9 +75613,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#get-a-release parameters: - - *284 - - *285 - - &504 + - *300 + - *301 + - &520 name: release_id description: The unique identifier of the release. in: path @@ -75609,9 +75629,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-server@3.14/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *498 + schema: *514 examples: - default: *503 + default: *519 '401': description: Unauthorized x-github: @@ -75629,9 +75649,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#update-a-release parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 requestBody: required: false content: @@ -75688,9 +75708,9 @@ paths: description: Response content: application/json: - schema: *498 + schema: *514 examples: - default: *503 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75706,9 +75726,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/releases#delete-a-release parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 responses: '204': description: Response @@ -75728,9 +75748,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/releases/assets#list-release-assets parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 - *4 - *5 responses: @@ -75740,7 +75760,7 @@ paths: application/json: schema: type: array - items: *499 + items: *515 examples: default: value: @@ -75822,9 +75842,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 - name: name in: query required: true @@ -75850,7 +75870,7 @@ paths: description: Response for successful upload content: application/json: - schema: *499 + schema: *515 examples: response-for-successful-upload: value: @@ -75905,9 +75925,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -75931,9 +75951,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 '404': *26 @@ -75954,9 +75974,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *284 - - *285 - - *504 + - *300 + - *301 + - *520 requestBody: required: true content: @@ -75986,16 +76006,16 @@ paths: description: Reaction exists content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '201': description: Reaction created content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 '422': *35 x-github: githubCloudOnly: false @@ -76017,10 +76037,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#delete-a-release-reaction parameters: - - *284 - - *285 - - *504 - - *276 + - *300 + - *301 + - *520 + - *292 responses: '204': description: Response @@ -76040,8 +76060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-cache-replication-status parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -76116,9 +76136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/rules#get-rules-for-a-branch parameters: - - *284 - - *285 - - *342 + - *300 + - *301 + - *358 - *4 - *5 responses: @@ -76134,8 +76154,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *505 - - &507 + - *251 + - &521 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -76155,50 +76175,50 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *506 - - *507 + - *252 + - *521 - allOf: - - *508 - - *507 + - *253 + - *521 - allOf: - - *509 - - *507 + - *254 + - *521 - allOf: - - *510 - - *507 + - *255 + - *521 - allOf: - - *511 - - *507 + - *256 + - *521 - allOf: - - *512 - - *507 + - *257 + - *521 - allOf: - - *513 - - *507 + - *258 + - *521 - allOf: - - *514 - - *507 + - *259 + - *521 - allOf: - - *515 - - *507 + - *260 + - *521 - allOf: - - *516 - - *507 + - *261 + - *521 - allOf: - - *517 - - *507 + - *262 + - *521 - allOf: - - *518 - - *507 + - *263 + - *521 - allOf: - - *519 - - *507 + - *264 + - *521 - allOf: - - *520 - - *507 + - *265 + - *521 - allOf: + - *266 - *521 - - *507 examples: default: value: @@ -76237,8 +76257,8 @@ paths: category: repos subcategory: rules parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 - name: includes_parents @@ -76257,7 +76277,7 @@ paths: application/json: schema: type: array - items: *252 + items: *267 examples: default: value: @@ -76304,8 +76324,8 @@ paths: category: repos subcategory: rules parameters: - - *284 - - *285 + - *300 + - *301 requestBody: description: Request body required: true @@ -76334,7 +76354,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *251 + items: *523 required: - name - enforcement @@ -76365,9 +76385,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: &532 + default: &533 value: id: 42 name: super cool ruleset @@ -76414,12 +76434,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *284 - - *285 - - *523 + - *300 + - *301 - *524 - *525 - *526 + - *527 - *4 - *5 responses: @@ -76427,9 +76447,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 '404': *26 '500': *224 x-github: @@ -76450,17 +76470,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *284 - - *285 - - *529 + - *300 + - *301 + - *530 responses: '200': description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *531 + default: *532 '404': *26 '500': *224 x-github: @@ -76488,8 +76508,8 @@ paths: category: repos subcategory: rules parameters: - - *284 - - *285 + - *300 + - *301 - name: ruleset_id description: The ID of the ruleset. in: path @@ -76509,9 +76529,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: *532 + default: *533 '404': *26 '500': *224 put: @@ -76529,8 +76549,8 @@ paths: category: repos subcategory: rules parameters: - - *284 - - *285 + - *300 + - *301 - name: ruleset_id description: The ID of the ruleset. in: path @@ -76564,7 +76584,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *251 + items: *523 examples: default: value: @@ -76592,9 +76612,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *267 examples: - default: *532 + default: *533 '404': *26 '500': *224 delete: @@ -76612,8 +76632,8 @@ paths: category: repos subcategory: rules parameters: - - *284 - - *285 + - *300 + - *301 - name: ruleset_id description: The ID of the ruleset. in: path @@ -76641,18 +76661,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *284 - - *285 - - *254 - - *255 - - *256 - - *257 + - *300 + - *301 + - *270 + - *271 + - *272 + - *273 - *9 - *5 - *4 - - *533 - *534 - - *258 + - *535 + - *274 responses: '200': description: Response @@ -76660,7 +76680,7 @@ paths: application/json: schema: type: array - items: &537 + items: &538 type: object properties: number: *93 @@ -76679,8 +76699,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *535 - resolution: *536 + state: *536 + resolution: *537 resolved_at: type: string format: date-time @@ -76858,15 +76878,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *284 - - *285 - - *371 + - *300 + - *301 + - *387 responses: '200': description: Response content: application/json: - schema: *537 + schema: *538 examples: default: value: @@ -76906,9 +76926,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *284 - - *285 - - *371 + - *300 + - *301 + - *387 requestBody: required: true content: @@ -76916,8 +76936,8 @@ paths: schema: type: object properties: - state: *535 - resolution: *536 + state: *536 + resolution: *537 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -76935,7 +76955,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: default: value: @@ -77002,9 +77022,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *284 - - *285 - - *371 + - *300 + - *301 + - *387 - *5 - *4 responses: @@ -77015,7 +77035,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &668 + items: &669 type: object properties: type: @@ -77374,8 +77394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#list-stargazers parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -77471,8 +77491,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -77481,7 +77501,7 @@ paths: application/json: schema: type: array - items: &538 + items: &539 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -77512,8 +77532,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -77586,8 +77606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -77683,8 +77703,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -77838,8 +77858,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -77849,7 +77869,7 @@ paths: application/json: schema: type: array - items: *538 + items: *539 examples: default: value: @@ -77882,8 +77902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/commits/statuses#create-a-commit-status parameters: - - *284 - - *285 + - *300 + - *301 - name: sha in: path required: true @@ -77937,7 +77957,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *540 examples: default: value: @@ -77991,8 +78011,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/watching#list-watchers parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -78024,14 +78044,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/watching#get-a-repository-subscription parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &540 + schema: &541 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -78099,8 +78119,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/watching#set-a-repository-subscription parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -78126,7 +78146,7 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: default: value: @@ -78153,8 +78173,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/watching#delete-a-repository-subscription parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -78174,8 +78194,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-tags parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -78254,8 +78274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '200': description: Response @@ -78263,7 +78283,7 @@ paths: application/json: schema: type: array - items: &541 + items: &542 title: Tag protection description: Tag protection type: object @@ -78315,8 +78335,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -78339,7 +78359,7 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: default: value: @@ -78370,8 +78390,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -78408,8 +78428,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *284 - - *285 + - *300 + - *301 - name: ref in: path required: true @@ -78445,8 +78465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#list-repository-teams parameters: - - *284 - - *285 + - *300 + - *301 - *4 - *5 responses: @@ -78456,9 +78476,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - default: *262 + default: *278 headers: Link: *6 '404': *26 @@ -78478,8 +78498,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#get-all-repository-topics parameters: - - *284 - - *285 + - *300 + - *301 - *5 - *4 responses: @@ -78487,7 +78507,7 @@ paths: description: Response content: application/json: - schema: &542 + schema: &543 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -78499,7 +78519,7 @@ paths: required: - names examples: - default: &543 + default: &544 value: names: - octocat @@ -78522,8 +78542,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#replace-all-repository-topics parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -78554,9 +78574,9 @@ paths: description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *543 + default: *544 '404': *26 '422': *27 x-github: @@ -78579,8 +78599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#transfer-a-repository parameters: - - *284 - - *285 + - *300 + - *301 requestBody: required: true content: @@ -78854,8 +78874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -78878,8 +78898,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#enable-vulnerability-alerts parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -78901,8 +78921,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/repos/repos#disable-vulnerability-alerts parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -78928,8 +78948,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *284 - - *285 + - *300 + - *301 - name: ref in: path required: true @@ -79021,9 +79041,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *311 examples: - default: *297 + default: *313 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -79197,7 +79217,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &551 + - &552 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -79206,7 +79226,7 @@ paths: schema: type: string example: members - - &556 + - &557 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -79217,7 +79237,7 @@ paths: default: 1 format: int32 example: 1 - - &557 + - &558 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -79259,7 +79279,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &545 + items: &546 allOf: - type: object required: @@ -79334,7 +79354,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: &558 + meta: &559 type: object description: The metadata associated with the creation/updates to the user. @@ -79394,31 +79414,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &546 + '400': &547 description: Bad request content: application/json: - schema: *544 + schema: *545 application/scim+json: - schema: *544 - '401': &547 + schema: *545 + '401': &548 description: Authorization failure - '403': &548 + '403': &549 description: Permission denied - '429': &549 + '429': &550 description: Too many requests content: application/json: - schema: *544 + schema: *545 application/scim+json: - schema: *544 - '500': &550 + schema: *545 + '500': &551 description: Internal server error content: application/json: - schema: *544 + schema: *545 application/scim+json: - schema: *544 + schema: *545 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79445,7 +79465,7 @@ paths: required: true content: application/json: - schema: &554 + schema: &555 type: object required: - schemas @@ -79501,9 +79521,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *545 + schema: *546 examples: - group: &552 + group: &553 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -79522,13 +79542,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': *546 - '401': *547 - '403': *548 - '409': &555 + '400': *547 + '401': *548 + '403': *549 + '409': &556 description: Duplicate record detected - '429': *549 - '500': *550 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79549,7 +79569,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &553 + - &554 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -79557,22 +79577,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *551 + - *552 - *65 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *545 + schema: *546 examples: - default: *552 - '400': *546 - '401': *547 - '403': *548 + default: *553 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '429': *549 - '500': *550 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79594,13 +79614,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *553 + - *554 - *65 requestBody: required: true content: application/json: - schema: *554 + schema: *555 examples: group: summary: Group @@ -79626,17 +79646,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *545 + schema: *546 examples: - group: *552 - groupWithMembers: *552 - '400': *546 - '401': *547 - '403': *548 + group: *553 + groupWithMembers: *553 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '409': *555 - '429': *549 - '500': *550 + '409': *556 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79660,13 +79680,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *553 + - *554 - *65 requestBody: required: true content: application/json: - schema: &565 + schema: &566 type: object required: - Operations @@ -79726,17 +79746,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *545 + schema: *546 examples: - updateGroup: *552 - addMembers: *552 - '400': *546 - '401': *547 - '403': *548 + updateGroup: *553 + addMembers: *553 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '409': *555 - '429': *549 - '500': *550 + '409': *556 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79756,17 +79776,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *553 + - *554 - *65 responses: '204': description: Group was deleted, no content - '400': *546 - '401': *547 - '403': *548 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '429': *549 - '500': *550 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -79803,8 +79823,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *556 - *557 + - *558 - *65 responses: '200': @@ -79837,7 +79857,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &560 + items: &561 allOf: - type: object required: @@ -79916,7 +79936,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &559 + roles: &560 type: array description: The roles assigned to the user. items: @@ -79972,7 +79992,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *558 + meta: *559 startIndex: type: integer description: A starting index for the returned page @@ -80009,11 +80029,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *546 - '401': *547 - '403': *548 - '429': *549 - '500': *550 + '400': *547 + '401': *548 + '403': *549 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80042,7 +80062,7 @@ paths: required: true content: application/json: - schema: &563 + schema: &564 type: object required: - schemas @@ -80124,9 +80144,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *559 + roles: *560 examples: - user: &564 + user: &565 summary: User value: schemas: @@ -80173,9 +80193,9 @@ paths: description: User has been created content: application/scim+json: - schema: *560 + schema: *561 examples: - user: &561 + user: &562 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -80201,13 +80221,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: *561 - '400': *546 - '401': *547 - '403': *548 - '409': *555 - '429': *549 - '500': *550 + enterpriseOwner: *562 + '400': *547 + '401': *548 + '403': *549 + '409': *556 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80228,7 +80248,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &562 + - &563 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -80241,15 +80261,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *560 + schema: *561 examples: - default: *561 - '400': *546 - '401': *547 - '403': *548 + default: *562 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '429': *549 - '500': *550 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80274,30 +80294,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *562 + - *563 - *65 requestBody: required: true content: application/json: - schema: *563 + schema: *564 examples: - user: *564 + user: *565 responses: '200': description: User was updated content: application/scim+json: - schema: *560 + schema: *561 examples: - user: *561 - '400': *546 - '401': *547 - '403': *548 + user: *562 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '409': *555 - '429': *549 - '500': *550 + '409': *556 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80335,13 +80355,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *562 + - *563 - *65 requestBody: required: true content: application/json: - schema: *565 + schema: *566 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -80381,18 +80401,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *560 - examples: - userMultiValuedProperties: *561 - userSingleValuedProperties: *561 - disableUser: *561 - '400': *546 - '401': *547 - '403': *548 + schema: *561 + examples: + userMultiValuedProperties: *562 + userSingleValuedProperties: *562 + disableUser: *562 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '409': *555 - '429': *549 - '500': *550 + '409': *556 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80412,17 +80432,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *562 + - *563 - *65 responses: '204': description: User was deleted, no content - '400': *546 - '401': *547 - '403': *548 + '400': *547 + '401': *548 + '403': *549 '404': *26 - '429': *549 - '500': *550 + '429': *550 + '500': *551 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -80549,7 +80569,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &566 + text_matches: &567 title: Search Result Text Matches type: array items: @@ -80712,7 +80732,7 @@ paths: enum: - author-date - committer-date - - &567 + - &568 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 @@ -80783,7 +80803,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *340 + properties: *356 nullable: true comment_count: type: integer @@ -80803,7 +80823,7 @@ paths: url: type: string format: uri - verification: *430 + verification: *446 required: - author - committer @@ -80822,7 +80842,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *340 + properties: *356 nullable: true parents: type: array @@ -80840,7 +80860,7 @@ paths: type: number node_id: type: string - text_matches: *566 + text_matches: *567 required: - sha - node_id @@ -81033,7 +81053,7 @@ paths: - interactions - created - updated - - *567 + - *568 - *4 - *5 - name: advanced_search @@ -81160,8 +81180,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *387 - required: *388 + properties: *403 + required: *404 nullable: true comments: type: integer @@ -81175,7 +81195,7 @@ paths: type: string format: date-time nullable: true - text_matches: *566 + text_matches: *567 pull_request: type: object properties: @@ -81219,7 +81239,7 @@ paths: timeline_url: type: string format: uri - type: *568 + type: *569 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -81400,7 +81420,7 @@ paths: enum: - created - updated - - *567 + - *568 - *4 - *5 responses: @@ -81444,7 +81464,7 @@ paths: nullable: true score: type: number - text_matches: *566 + text_matches: *567 required: - id - node_id @@ -81530,7 +81550,7 @@ paths: - forks - help-wanted-issues - updated - - *567 + - *568 - *4 - *5 responses: @@ -81769,7 +81789,7 @@ paths: - admin - pull - push - text_matches: *566 + text_matches: *567 temp_clone_token: type: string allow_merge_commit: @@ -82070,7 +82090,7 @@ paths: type: string format: uri nullable: true - text_matches: *566 + text_matches: *567 related: type: array nullable: true @@ -82263,7 +82283,7 @@ paths: - followers - repositories - joined - - *567 + - *568 - *4 - *5 responses: @@ -82367,7 +82387,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *566 + text_matches: *567 blog: type: string nullable: true @@ -82562,7 +82582,7 @@ paths: description: Response content: application/json: - schema: &569 + schema: &570 type: object properties: status: @@ -82582,7 +82602,7 @@ paths: - name - number examples: - default: &570 + default: &571 value: status: scheduled scheduled_time: Tuesday, January 22 at 15:34 -0800 @@ -82627,9 +82647,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *570 + default: *571 '401': description: Unauthorized requestBody: @@ -83193,7 +83213,7 @@ paths: application/json: schema: type: array - items: &571 + items: &572 type: object properties: key: @@ -83201,7 +83221,7 @@ paths: pretty-print: type: string examples: - default: &572 + default: &573 value: - key: ssh-rsa AAAAB3NzaC1yc2EAAAAB... pretty-print: ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64 @@ -83244,9 +83264,9 @@ paths: application/json: schema: type: array - items: *571 + items: *572 examples: - default: *572 + default: *573 '401': description: Unauthorized requestBody: @@ -83298,9 +83318,9 @@ paths: application/json: schema: type: array - items: *571 + items: *572 examples: - default: *572 + default: *573 '401': description: Unauthorized requestBody: @@ -83457,9 +83477,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '404': *26 x-github: githubCloudOnly: false @@ -83549,16 +83569,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '201': description: Response content: application/json: - schema: *265 + schema: *281 examples: - default: *266 + default: *282 '404': *26 '422': *35 '403': *43 @@ -83628,9 +83648,9 @@ paths: application/json: schema: type: array - items: *267 + items: *283 examples: - default: *573 + default: *574 headers: Link: *6 x-github: @@ -83693,9 +83713,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: *268 + default: *284 x-github: triggersNotification: true githubCloudOnly: false @@ -83723,15 +83743,15 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussions#get-a-discussion-legacy parameters: - *7 - - *269 + - *285 responses: '200': description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: *268 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83757,7 +83777,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussions#update-a-discussion-legacy parameters: - *7 - - *269 + - *285 requestBody: required: false content: @@ -83780,9 +83800,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *283 examples: - default: *574 + default: *575 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83808,7 +83828,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussions#delete-a-discussion-legacy parameters: - *7 - - *269 + - *285 responses: '204': description: Response @@ -83838,7 +83858,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - *7 - - *269 + - *285 - *9 - *4 - *5 @@ -83849,9 +83869,9 @@ paths: application/json: schema: type: array - items: *270 + items: *286 examples: - default: *575 + default: *576 headers: Link: *6 x-github: @@ -83881,7 +83901,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - *7 - - *269 + - *285 requestBody: required: true content: @@ -83903,9 +83923,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: *271 + default: *287 x-github: triggersNotification: true githubCloudOnly: false @@ -83933,16 +83953,16 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - *7 - - *269 - - *272 + - *285 + - *288 responses: '200': description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: *271 + default: *287 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83968,8 +83988,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - *7 - - *269 - - *272 + - *285 + - *288 requestBody: required: true content: @@ -83991,9 +84011,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *286 examples: - default: *576 + default: *577 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84019,8 +84039,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - *7 - - *269 - - *272 + - *285 + - *288 responses: '204': description: Response @@ -84050,8 +84070,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - *7 - - *269 - - *272 + - *285 + - *288 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -84077,9 +84097,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 x-github: @@ -84109,8 +84129,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - *7 - - *269 - - *272 + - *285 + - *288 requestBody: required: true content: @@ -84142,9 +84162,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84171,7 +84191,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - *7 - - *269 + - *285 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -84197,9 +84217,9 @@ paths: application/json: schema: type: array - items: *273 + items: *289 examples: - default: *275 + default: *291 headers: Link: *6 x-github: @@ -84229,7 +84249,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - *7 - - *269 + - *285 requestBody: required: true content: @@ -84261,9 +84281,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *289 examples: - default: *274 + default: *290 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -84459,9 +84479,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *297 examples: - response-if-user-is-a-team-maintainer: *577 + response-if-user-is-a-team-maintainer: *578 '404': *26 x-github: githubCloudOnly: false @@ -84520,9 +84540,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *297 examples: - response-if-users-membership-with-team-is-now-pending: *578 + response-if-users-membership-with-team-is-now-pending: *579 '403': description: Forbidden if team synchronization is set up '422': @@ -84596,9 +84616,9 @@ paths: application/json: schema: type: array - items: *282 + items: *298 examples: - default: *579 + default: *580 headers: Link: *6 '404': *26 @@ -84626,15 +84646,15 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - *7 - - *283 + - *299 responses: '200': description: Response content: application/json: - schema: *282 + schema: *298 examples: - default: *580 + default: *581 '404': description: Not Found if project is not managed by this team x-github: @@ -84660,7 +84680,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - *7 - - *283 + - *299 requestBody: required: false content: @@ -84729,7 +84749,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - *7 - - *283 + - *299 responses: '204': description: Response @@ -84799,14 +84819,14 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - *7 - - *284 - - *285 + - *300 + - *301 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *581 + schema: *582 examples: alternative-response-with-extra-repository-information: value: @@ -84958,8 +84978,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - *7 - - *284 - - *285 + - *300 + - *301 requestBody: required: false content: @@ -85010,8 +85030,8 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - *7 - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -85046,9 +85066,9 @@ paths: application/json: schema: type: array - items: *286 + items: *302 examples: - response-if-child-teams-exist: *582 + response-if-child-teams-exist: *583 headers: Link: *6 '404': *26 @@ -85081,7 +85101,7 @@ paths: application/json: schema: oneOf: - - &584 + - &585 title: Private User description: Private User type: object @@ -85284,7 +85304,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *583 + - *584 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -85435,7 +85455,7 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: default: value: @@ -85513,7 +85533,7 @@ paths: type: array items: *218 examples: - default: &594 + default: &595 value: - id: 197 name: hello_docker @@ -85600,7 +85620,7 @@ paths: application/json: schema: type: array - items: &585 + items: &586 title: Email description: Email type: object @@ -85625,7 +85645,7 @@ paths: - verified - visibility examples: - default: &596 + default: &597 value: - email: octocat@github.com verified: true @@ -85700,7 +85720,7 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: default: value: @@ -85956,7 +85976,7 @@ paths: application/json: schema: type: array - items: &586 + items: &587 title: GPG Key description: A unique encryption key type: object @@ -86087,7 +86107,7 @@ paths: - subkeys - revoked examples: - default: &606 + default: &607 value: - id: 3 name: Octocat's GPG Key @@ -86172,9 +86192,9 @@ paths: description: Response content: application/json: - schema: *586 + schema: *587 examples: - default: &587 + default: &588 value: id: 3 name: Octocat's GPG Key @@ -86231,7 +86251,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &588 + - &589 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -86243,9 +86263,9 @@ paths: description: Response content: application/json: - schema: *586 + schema: *587 examples: - default: *587 + default: *588 '404': *26 '304': *42 '403': *43 @@ -86268,7 +86288,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *588 + - *589 responses: '204': description: Response @@ -86459,7 +86479,7 @@ paths: type: array items: *84 examples: - default: *589 + default: *590 headers: Link: *6 '404': *26 @@ -86635,7 +86655,7 @@ paths: application/json: schema: type: array - items: &590 + items: &591 title: Key description: Key type: object @@ -86732,9 +86752,9 @@ paths: description: Response content: application/json: - schema: *590 + schema: *591 examples: - default: &591 + default: &592 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -86767,15 +86787,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *464 + - *480 responses: '200': description: Response content: application/json: - schema: *590 + schema: *591 examples: - default: *591 + default: *592 '404': *26 '304': *42 '403': *43 @@ -86798,7 +86818,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *464 + - *480 responses: '204': description: Response @@ -87618,7 +87638,7 @@ paths: type: array items: *70 examples: - default: *592 + default: *593 headers: Link: *6 '304': *42 @@ -87660,7 +87680,7 @@ paths: - docker - nuget - container - - *593 + - *594 - *5 - *4 responses: @@ -87672,8 +87692,8 @@ paths: type: array items: *218 examples: - default: *594 - '400': *595 + default: *595 + '400': *596 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -87702,7 +87722,7 @@ paths: application/json: schema: *218 examples: - default: &607 + default: &608 value: id: 40201 name: octo-name @@ -88152,9 +88172,9 @@ paths: application/json: schema: type: array - items: *585 + items: *586 examples: - default: *596 + default: *597 headers: Link: *6 '304': *42 @@ -88267,7 +88287,7 @@ paths: type: array items: *84 examples: - default: &603 + default: &604 summary: Default response value: - id: 1296269 @@ -88571,9 +88591,9 @@ paths: description: Response content: application/json: - schema: *295 + schema: *311 examples: - default: *297 + default: *313 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -88611,9 +88631,9 @@ paths: application/json: schema: type: array - items: *437 + items: *453 examples: - default: *597 + default: *598 headers: Link: *6 '304': *42 @@ -88636,7 +88656,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *438 + - *454 responses: '204': description: Response @@ -88659,7 +88679,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *438 + - *454 responses: '204': description: Response @@ -88692,7 +88712,7 @@ paths: application/json: schema: type: array - items: &598 + items: &599 title: Social account description: Social media account type: object @@ -88707,7 +88727,7 @@ paths: - provider - url examples: - default: &599 + default: &600 value: - provider: twitter url: https://twitter.com/github @@ -88769,9 +88789,9 @@ paths: application/json: schema: type: array - items: *598 + items: *599 examples: - default: *599 + default: *600 '422': *35 '304': *42 '404': *26 @@ -88858,7 +88878,7 @@ paths: application/json: schema: type: array - items: &600 + items: &601 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -88878,7 +88898,7 @@ paths: - title - created_at examples: - default: &608 + default: &609 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -88944,9 +88964,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: &601 + default: &602 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -88977,7 +88997,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &602 + - &603 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -88989,9 +89009,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: *601 + default: *602 '404': *26 '304': *42 '403': *43 @@ -89014,7 +89034,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *602 + - *603 responses: '204': description: Response @@ -89043,7 +89063,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &609 + - &610 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 @@ -89068,11 +89088,11 @@ paths: type: array items: *84 examples: - default-response: *603 + default-response: *604 application/vnd.github.v3.star+json: schema: type: array - items: &610 + items: &611 title: Starred Repository description: Starred Repository type: object @@ -89228,8 +89248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response if this repository is starred by you @@ -89257,8 +89277,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -89282,8 +89302,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *284 - - *285 + - *300 + - *301 responses: '204': description: Response @@ -89355,7 +89375,7 @@ paths: application/json: schema: type: array - items: *265 + items: *281 examples: default: value: @@ -89442,10 +89462,10 @@ paths: application/json: schema: oneOf: + - *585 - *584 - - *583 examples: - default-response: &604 + default-response: &605 summary: Default response value: login: octocat @@ -89480,7 +89500,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &605 + response-with-git-hub-plan-information: &606 summary: Response with GitHub plan information value: login: octocat @@ -89592,11 +89612,11 @@ paths: application/json: schema: oneOf: + - *585 - *584 - - *583 examples: - default-response: *604 - response-with-git-hub-plan-information: *605 + default-response: *605 + response-with-git-hub-plan-information: *606 '404': *26 x-github: githubCloudOnly: false @@ -89627,7 +89647,7 @@ paths: type: array items: *218 examples: - default: *594 + default: *595 '403': *43 '401': *41 x-github: @@ -90031,9 +90051,9 @@ paths: application/json: schema: type: array - items: *586 + items: *587 examples: - default: *606 + default: *607 headers: Link: *6 x-github: @@ -90137,7 +90157,7 @@ paths: application/json: schema: *39 examples: - default: *436 + default: *452 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90218,7 +90238,7 @@ paths: type: array items: *70 examples: - default: *592 + default: *593 headers: Link: *6 x-github: @@ -90257,7 +90277,7 @@ paths: - docker - nuget - container - - *593 + - *594 - *8 - *5 - *4 @@ -90270,10 +90290,10 @@ paths: type: array items: *218 examples: - default: *594 + default: *595 '403': *43 '401': *41 - '400': *595 + '400': *596 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90303,7 +90323,7 @@ paths: application/json: schema: *218 examples: - default: *607 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90936,9 +90956,9 @@ paths: application/json: schema: type: array - items: *598 + items: *599 examples: - default: *599 + default: *600 headers: Link: *6 x-github: @@ -90968,9 +90988,9 @@ paths: application/json: schema: type: array - items: *600 + items: *601 examples: - default: *608 + default: *609 headers: Link: *6 x-github: @@ -90995,7 +91015,7 @@ paths: url: https://docs.github.com/enterprise-server@3.14/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *8 - - *609 + - *610 - *9 - *4 - *5 @@ -91007,11 +91027,11 @@ paths: schema: anyOf: - type: array - items: *610 + items: *611 - type: array items: *84 examples: - default-response: *603 + default-response: *604 headers: Link: *6 x-github: @@ -91221,7 +91241,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &611 + enterprise: &612 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -91279,7 +91299,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &612 + installation: &613 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -91298,7 +91318,7 @@ x-webhooks: required: - id - node_id - organization: &613 + organization: &614 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -91358,13 +91378,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &614 + repository: &615 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: &642 + properties: &643 id: description: Unique identifier of the repository example: 42 @@ -92047,7 +92067,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &643 + required: &644 - archive_url - assignees_url - blobs_url @@ -92198,10 +92218,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -92287,11 +92307,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: &615 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + rule: &616 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-server@3.14/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -92508,11 +92528,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: *615 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + rule: *616 sender: *19 required: - action @@ -92686,11 +92706,11 @@ x-webhooks: - everyone required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - rule: *615 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + rule: *616 sender: *19 required: - action @@ -92771,11 +92791,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - exemption_request: &616 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + exemption_request: &617 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -93008,7 +93028,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &617 + items: &618 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -93126,11 +93146,11 @@ x-webhooks: type: string enum: - completed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - exemption_request: *616 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + exemption_request: *617 sender: *19 required: - action @@ -93210,11 +93230,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - exemption_request: *616 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + exemption_request: *617 sender: *19 required: - action @@ -93294,12 +93314,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - exemption_request: *616 - exemption_response: *617 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + exemption_request: *617 + exemption_response: *618 sender: *19 required: - action @@ -93381,12 +93401,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - exemption_request: *616 - exemption_response: *617 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + exemption_request: *617 + exemption_response: *618 sender: *19 required: - action @@ -93471,12 +93491,12 @@ x-webhooks: type: string cache_location: type: string - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 ref: type: string - repository: *614 + repository: *615 sender: *19 required: - cache_location @@ -93570,7 +93590,7 @@ x-webhooks: type: string enum: - completed - check_run: &619 + check_run: &620 title: CheckRun description: A check performed on the code of a given code change type: object @@ -93623,7 +93643,7 @@ x-webhooks: type: string pull_requests: type: array - items: *353 + items: *369 repository: *153 status: example: completed @@ -93661,7 +93681,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *618 + deployment: *619 details_url: example: https://example.com type: string @@ -93711,7 +93731,7 @@ x-webhooks: - annotations_url pull_requests: type: array - items: *353 + items: *369 started_at: example: '2018-05-04T01:14:52Z' type: string @@ -93746,9 +93766,9 @@ x-webhooks: - output - app - pull_requests - installation: *612 - organization: *613 - repository: *614 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - check_run @@ -94151,10 +94171,10 @@ x-webhooks: type: string enum: - created - check_run: *619 - installation: *612 - organization: *613 - repository: *614 + check_run: *620 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - check_run @@ -94560,10 +94580,10 @@ x-webhooks: type: string enum: - requested_action - check_run: *619 - installation: *612 - organization: *613 - repository: *614 + check_run: *620 + installation: *613 + organization: *614 + repository: *615 requested_action: description: The action requested by the user. type: object @@ -94978,10 +94998,10 @@ x-webhooks: type: string enum: - rerequested - check_run: *619 - installation: *612 - organization: *613 - repository: *614 + check_run: *620 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - check_run @@ -95968,10 +95988,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -96651,10 +96671,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -97328,10 +97348,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -97504,7 +97524,7 @@ x-webhooks: required: - login - id - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -97649,20 +97669,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &620 + commit_oid: &621 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: *611 - installation: *612 - organization: *613 - ref: &621 + enterprise: *612 + installation: *613 + organization: *614 + ref: &622 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: *614 + repository: *615 sender: *19 required: - action @@ -97834,7 +97854,7 @@ x-webhooks: required: - login - id - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -98064,12 +98084,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *620 - enterprise: *611 - installation: *612 - organization: *613 - ref: *621 - repository: *614 + commit_oid: *621 + enterprise: *612 + installation: *613 + organization: *614 + ref: *622 + repository: *615 sender: *19 required: - action @@ -98174,7 +98194,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -98342,12 +98362,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *620 - enterprise: *611 - installation: *612 - organization: *613 - ref: *621 - repository: *614 + commit_oid: *621 + enterprise: *612 + installation: *613 + organization: *614 + ref: *622 + repository: *615 sender: *19 required: - action @@ -98520,7 +98540,7 @@ x-webhooks: required: - login - id - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -98686,12 +98706,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *620 - enterprise: *611 - installation: *612 - organization: *613 - ref: *621 - repository: *614 + commit_oid: *621 + enterprise: *612 + installation: *613 + organization: *614 + ref: *622 + repository: *615 sender: *19 required: - action @@ -98798,7 +98818,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -98966,16 +98986,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 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: *614 + repository: *615 sender: *19 required: - action @@ -99079,7 +99099,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *366 + dismissed_comment: *382 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -99219,12 +99239,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *620 - enterprise: *611 - installation: *612 - organization: *613 - ref: *621 - repository: *614 + commit_oid: *621 + enterprise: *612 + installation: *613 + organization: *614 + ref: *622 + repository: *615 sender: *19 required: - action @@ -99491,10 +99511,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -99584,18 +99604,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *613 - pusher_type: &622 + organization: *614 + pusher_type: &623 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &623 + ref: &624 description: The [`git ref`](https://docs.github.com/enterprise-server@3.14/rest/git/refs#get-a-reference) resource. type: string @@ -99605,7 +99625,7 @@ x-webhooks: enum: - tag - branch - repository: *614 + repository: *615 sender: *19 required: - ref @@ -99694,18 +99714,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - pusher_type: *622 - ref: *623 + enterprise: *612 + installation: *613 + organization: *614 + pusher_type: *623 + ref: *624 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *614 + repository: *615 sender: *19 required: - ref @@ -99799,11 +99819,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -99897,11 +99917,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -99995,11 +100015,11 @@ x-webhooks: type: string enum: - created - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -100091,11 +100111,11 @@ x-webhooks: type: string enum: - dismissed - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -100187,11 +100207,11 @@ x-webhooks: type: string enum: - fixed - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -100284,11 +100304,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -100380,11 +100400,11 @@ x-webhooks: type: string enum: - reopened - alert: *399 - installation: *612 - organization: *613 - enterprise: *611 - repository: *614 + alert: *415 + installation: *613 + organization: *614 + enterprise: *612 + repository: *615 sender: *19 required: - action @@ -100471,9 +100491,9 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - key: &624 + enterprise: *612 + installation: *613 + key: &625 description: The [`deploy key`](https://docs.github.com/enterprise-server@3.14/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -100507,8 +100527,8 @@ x-webhooks: - verified - created_at - read_only - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -100595,11 +100615,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - key: *624 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + key: *625 + organization: *614 + repository: *615 sender: *19 required: - action @@ -101170,12 +101190,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - workflow: &628 + workflow: &629 title: Workflow type: object nullable: true @@ -101911,13 +101931,13 @@ x-webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *405 + deployment: *421 pull_requests: type: array - items: *486 - repository: *614 - organization: *613 - installation: *612 + items: *502 + repository: *615 + organization: *614 + installation: *613 sender: *19 responses: '200': @@ -101998,7 +102018,7 @@ x-webhooks: type: string enum: - approved - approver: &625 + approver: &626 type: object properties: avatar_url: @@ -102041,11 +102061,11 @@ x-webhooks: type: string comment: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - reviewers: &626 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + reviewers: &627 type: array items: type: object @@ -102124,7 +102144,7 @@ x-webhooks: sender: *19 since: type: string - workflow_job_run: &627 + workflow_job_run: &628 type: object properties: conclusion: @@ -102865,18 +102885,18 @@ x-webhooks: type: string enum: - rejected - approver: *625 + approver: *626 comment: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - reviewers: *626 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + reviewers: *627 sender: *19 since: type: string - workflow_job_run: *627 + workflow_job_run: *628 workflow_job_runs: type: array items: @@ -103590,13 +103610,13 @@ x-webhooks: type: string enum: - requested - enterprise: *611 + enterprise: *612 environment: type: string - installation: *612 - organization: *613 - repository: *614 - requestor: &633 + installation: *613 + organization: *614 + repository: *615 + requestor: &634 title: User type: object nullable: true @@ -105505,12 +105525,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - workflow: *628 + workflow: *629 workflow_run: title: Deployment Workflow Run type: object @@ -106200,7 +106220,7 @@ x-webhooks: type: string enum: - answered - answer: &631 + answer: &632 type: object properties: author_association: @@ -106357,7 +106377,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &629 + discussion: &630 title: Discussion description: A Discussion in a repository. type: object @@ -106643,7 +106663,7 @@ x-webhooks: - id labels: type: array - items: *447 + items: *463 required: - repository_url - category @@ -106665,10 +106685,10 @@ x-webhooks: - author_association - active_lock_reason - body - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -106805,11 +106825,11 @@ x-webhooks: - from required: - category - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -106902,11 +106922,11 @@ x-webhooks: type: string enum: - closed - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -106998,7 +107018,7 @@ x-webhooks: type: string enum: - created - comment: &630 + comment: &631 type: object properties: author_association: @@ -107155,11 +107175,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107252,12 +107272,12 @@ x-webhooks: type: string enum: - deleted - comment: *630 - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + comment: *631 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107362,12 +107382,12 @@ x-webhooks: - from required: - body - comment: *630 - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + comment: *631 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107461,11 +107481,11 @@ x-webhooks: type: string enum: - created - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107557,11 +107577,11 @@ x-webhooks: type: string enum: - deleted - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107671,11 +107691,11 @@ x-webhooks: type: string required: - from - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107767,10 +107787,10 @@ x-webhooks: type: string enum: - labeled - discussion: *629 - enterprise: *611 - installation: *612 - label: &632 + discussion: *630 + enterprise: *612 + installation: *613 + label: &633 title: Label type: object properties: @@ -107802,8 +107822,8 @@ x-webhooks: - color - default - description - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107896,11 +107916,11 @@ x-webhooks: type: string enum: - locked - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -107992,11 +108012,11 @@ x-webhooks: type: string enum: - pinned - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108088,11 +108108,11 @@ x-webhooks: type: string enum: - reopened - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108187,16 +108207,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *629 - new_repository: *614 + new_discussion: *630 + new_repository: *615 required: - new_discussion - new_repository - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108289,10 +108309,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *629 - old_answer: *631 - organization: *613 - repository: *614 + discussion: *630 + old_answer: *632 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108384,12 +108404,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *629 - enterprise: *611 - installation: *612 - label: *632 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108482,11 +108502,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108578,11 +108598,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *629 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + discussion: *630 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -108823,7 +108843,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *611 + enterprise: *612 forkee: description: The created [`repository`](https://docs.github.com/enterprise-server@3.14/rest/repos/repos#get-a-repository) resource. @@ -109483,9 +109503,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *612 - organization: *613 - repository: *614 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - forkee @@ -109651,9 +109671,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pages: description: The pages that were updated. type: array @@ -109690,7 +109710,7 @@ x-webhooks: - action - sha - html_url - repository: *614 + repository: *615 sender: *19 required: - pages @@ -109776,10 +109796,10 @@ x-webhooks: type: string enum: - created - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories: &634 + organization: *614 + repositories: &635 description: An array of repository objects that the installation can access. type: array @@ -109805,8 +109825,8 @@ x-webhooks: - name - full_name - private - repository: *614 - requester: *633 + repository: *615 + requester: *634 sender: *19 required: - action @@ -109891,11 +109911,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories: *634 - repository: *614 + organization: *614 + repositories: *635 + repository: *615 requester: nullable: true sender: *19 @@ -109981,11 +110001,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories: *634 - repository: *614 + organization: *614 + repositories: *635 + repository: *615 requester: nullable: true sender: *19 @@ -110071,10 +110091,10 @@ x-webhooks: type: string enum: - added - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories_added: &635 + organization: *614 + repositories_added: &636 description: An array of repository objects, which were added to the installation. type: array @@ -110120,15 +110140,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *614 - repository_selection: &636 + repository: *615 + repository_selection: &637 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *633 + requester: *634 sender: *19 required: - action @@ -110217,10 +110237,10 @@ x-webhooks: type: string enum: - removed - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories_added: *635 + organization: *614 + repositories_added: *636 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -110247,9 +110267,9 @@ x-webhooks: - name - full_name - private - repository: *614 - repository_selection: *636 - requester: *633 + repository: *615 + repository_selection: *637 + requester: *634 sender: *19 required: - action @@ -110338,11 +110358,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories: *634 - repository: *614 + organization: *614 + repositories: *635 + repository: *615 requester: nullable: true sender: *19 @@ -110531,10 +110551,10 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 target_type: type: string @@ -110623,11 +110643,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *611 + enterprise: *612 installation: *39 - organization: *613 - repositories: *634 - repository: *614 + organization: *614 + repositories: *635 + repository: *615 requester: nullable: true sender: *19 @@ -110889,8 +110909,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) the comment belongs to. @@ -111713,7 +111733,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -112046,8 +112066,8 @@ x-webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -112137,7 +112157,7 @@ x-webhooks: type: string enum: - deleted - comment: &637 + comment: &638 title: issue comment description: The [comment](https://docs.github.com/enterprise-server@3.14/rest/issues/comments#get-an-issue-comment) itself. @@ -112302,8 +112322,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) the comment belongs to. @@ -113122,7 +113142,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -113457,8 +113477,8 @@ x-webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -113548,7 +113568,7 @@ x-webhooks: type: string enum: - edited - changes: &660 + changes: &661 description: The changes to the comment. type: object properties: @@ -113560,9 +113580,9 @@ x-webhooks: type: string required: - from - comment: *637 - enterprise: *611 - installation: *612 + comment: *638 + enterprise: *612 + installation: *613 issue: description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) the comment belongs to. @@ -114384,7 +114404,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -114717,8 +114737,8 @@ x-webhooks: - state - locked - assignee - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -114810,10 +114830,10 @@ x-webhooks: type: string enum: - assigned - assignee: *633 - enterprise: *611 - installation: *612 - issue: &640 + assignee: *634 + enterprise: *612 + installation: *613 + issue: &641 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) itself. @@ -115631,7 +115651,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -115732,8 +115752,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -115823,8 +115843,8 @@ x-webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) itself. @@ -116647,7 +116667,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -116883,8 +116903,8 @@ x-webhooks: required: - state - closed_at - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -116973,8 +116993,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -117788,7 +117808,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -117888,8 +117908,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -117978,8 +117998,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -118815,7 +118835,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -118894,7 +118914,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &638 + milestone: &639 title: Milestone description: A collection of related issues and pull requests. type: object @@ -119032,8 +119052,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -119142,8 +119162,8 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -119958,7 +119978,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *568 + type: *569 title: description: Title of the issue type: string @@ -120062,9 +120082,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *632 - organization: *613 - repository: *614 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -120154,8 +120174,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -120969,7 +120989,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *568 + type: *569 title: description: Title of the issue type: string @@ -121073,9 +121093,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *632 - organization: *613 - repository: *614 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -121165,8 +121185,8 @@ x-webhooks: type: string enum: - locked - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -122004,7 +122024,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *568 + type: *569 title: description: Title of the issue type: string @@ -122085,8 +122105,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -122175,8 +122195,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -123011,7 +123031,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -123089,9 +123109,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *638 - organization: *613 - repository: *614 + milestone: *639 + organization: *614 + repository: *615 sender: *19 required: - action @@ -124075,7 +124095,7 @@ x-webhooks: required: - login - id - type: *568 + type: *569 required: - id - number @@ -124544,8 +124564,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -125363,7 +125383,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -125463,8 +125483,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -125554,9 +125574,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *611 - installation: *612 - issue: &639 + enterprise: *612 + installation: *613 + issue: &640 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) itself. @@ -126368,7 +126388,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -126468,8 +126488,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -126558,8 +126578,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -127476,9 +127496,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *568 - organization: *613 - repository: *614 + type: *569 + organization: *614 + repository: *615 sender: *19 required: - action @@ -128383,7 +128403,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -128951,11 +128971,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *611 - installation: *612 - issue: *639 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + issue: *640 + organization: *614 + repository: *615 sender: *19 required: - action @@ -129046,7 +129066,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &663 + assignee: &664 title: User type: object nullable: true @@ -129116,11 +129136,11 @@ x-webhooks: required: - login - id - enterprise: *611 - installation: *612 - issue: *640 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + issue: *641 + organization: *614 + repository: *615 sender: *19 required: - action @@ -129209,12 +129229,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *611 - installation: *612 - issue: *640 - label: *632 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + issue: *641 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -129304,8 +129324,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.14/rest/issues/issues#get-an-issue) @@ -130144,7 +130164,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *568 + type: *569 updated_at: type: string format: date-time @@ -130222,8 +130242,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130313,11 +130333,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *611 - installation: *612 - issue: *639 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + issue: *640 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130406,11 +130426,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - label: *632 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130498,11 +130518,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - label: *632 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130622,11 +130642,11 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - label: *632 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + label: *633 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130740,11 +130760,11 @@ x-webhooks: type: string required: - to - enterprise: *611 - installation: *612 - member: *633 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + member: *634 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130854,11 +130874,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *611 - installation: *612 - member: *633 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + member: *634 + organization: *614 + repository: *615 sender: *19 required: - action @@ -130947,11 +130967,11 @@ x-webhooks: type: string enum: - removed - enterprise: *611 - installation: *612 - member: *633 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + member: *634 + organization: *614 + repository: *615 sender: *19 required: - action @@ -131039,11 +131059,11 @@ x-webhooks: type: string enum: - added - enterprise: *611 - installation: *612 - member: *633 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + member: *634 + organization: *614 + repository: *615 scope: description: The scope of the membership. Currently, can only be `team`. @@ -131119,7 +131139,7 @@ x-webhooks: required: - login - id - team: &641 + team: &642 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -131319,11 +131339,11 @@ x-webhooks: type: string enum: - removed - enterprise: *611 - installation: *612 - member: *633 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + member: *634 + organization: *614 + repository: *615 scope: description: The scope of the membership. Currently, can only be `team`. @@ -131400,7 +131420,7 @@ x-webhooks: required: - login - id - team: *641 + team: *642 required: - action - scope @@ -131488,7 +131508,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 + enterprise: *612 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -131597,16 +131617,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *612 - organization: *613 + installation: *613 + organization: *614 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: *642 - required: *643 + properties: *643 + required: *644 nullable: true sender: *19 required: @@ -131697,11 +131717,11 @@ x-webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - milestone: *638 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + milestone: *639 + organization: *614 + repository: *615 sender: *19 required: - action @@ -131790,9 +131810,9 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - milestone: &644 + enterprise: *612 + installation: *613 + milestone: &645 title: Milestone description: A collection of related issues and pull requests. type: object @@ -131929,8 +131949,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132019,11 +132039,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - milestone: *638 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + milestone: *639 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132143,11 +132163,11 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - milestone: *638 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + milestone: *639 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132237,11 +132257,11 @@ x-webhooks: type: string enum: - opened - enterprise: *611 - installation: *612 - milestone: *644 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + milestone: *645 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132330,9 +132350,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - membership: &645 + enterprise: *612 + installation: *613 + membership: &646 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -132439,8 +132459,8 @@ x-webhooks: - role - organization_url - user - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132528,11 +132548,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *611 - installation: *612 - membership: *645 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + membership: *646 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132621,8 +132641,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -132738,10 +132758,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 - user: *633 + user: *634 required: - action - invitation @@ -132829,11 +132849,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *611 - installation: *612 - membership: *645 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + membership: *646 + organization: *614 + repository: *615 sender: *19 required: - action @@ -132930,11 +132950,11 @@ x-webhooks: properties: from: type: string - enterprise: *611 - installation: *612 - membership: *645 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + membership: *646 + organization: *614 + repository: *615 sender: *19 required: - action @@ -133020,9 +133040,9 @@ x-webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 package: description: Information about the package. type: object @@ -133521,7 +133541,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &646 + items: &647 title: Ruby Gems metadata type: object properties: @@ -133616,7 +133636,7 @@ x-webhooks: - owner - package_version - registry - repository: *614 + repository: *615 sender: *19 required: - action @@ -133702,9 +133722,9 @@ x-webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 package: description: Information about the package. type: object @@ -134057,7 +134077,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *646 + items: *647 source_url: type: string format: uri @@ -134127,7 +134147,7 @@ x-webhooks: - owner - package_version - registry - repository: *614 + repository: *615 sender: *19 required: - action @@ -134314,12 +134334,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *611 + enterprise: *612 id: type: integer - installation: *612 - organization: *613 - repository: *614 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - id @@ -134396,7 +134416,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &647 + personal_access_token_request: &648 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -134542,10 +134562,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *611 - organization: *613 + enterprise: *612 + organization: *614 sender: *19 - installation: *612 + installation: *613 required: - action - personal_access_token_request @@ -134622,11 +134642,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *647 - enterprise: *611 - organization: *613 + personal_access_token_request: *648 + enterprise: *612 + organization: *614 sender: *19 - installation: *612 + installation: *613 required: - action - personal_access_token_request @@ -134702,11 +134722,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *647 - enterprise: *611 - organization: *613 + personal_access_token_request: *648 + enterprise: *612 + organization: *614 sender: *19 - installation: *612 + installation: *613 required: - action - personal_access_token_request @@ -134781,11 +134801,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *647 - organization: *613 - enterprise: *611 + personal_access_token_request: *648 + organization: *614 + enterprise: *612 sender: *19 - installation: *612 + installation: *613 required: - action - personal_access_token_request @@ -134900,7 +134920,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *648 + last_response: *649 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -134932,8 +134952,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 zen: description: Random string of GitHub zen. @@ -135188,10 +135208,10 @@ x-webhooks: - from required: - note - enterprise: *611 - installation: *612 - organization: *613 - project_card: &649 + enterprise: *612 + installation: *613 + organization: *614 + project_card: &650 title: Project Card type: object properties: @@ -135310,7 +135330,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *614 + repository: *615 sender: *19 required: - action @@ -135401,11 +135421,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project_card: *649 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project_card: *650 + repository: *615 sender: *19 required: - action @@ -135495,9 +135515,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 project_card: title: Project Card type: object @@ -135625,8 +135645,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: *642 - required: *643 + properties: *643 + required: *644 nullable: true sender: *19 required: @@ -135730,11 +135750,11 @@ x-webhooks: - from required: - note - enterprise: *611 - installation: *612 - organization: *613 - project_card: *649 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project_card: *650 + repository: *615 sender: *19 required: - action @@ -135838,9 +135858,9 @@ x-webhooks: - from required: - column_id - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 project_card: allOf: - title: Project Card @@ -136030,7 +136050,7 @@ x-webhooks: type: string required: - after_id - repository: *614 + repository: *615 sender: *19 required: - action @@ -136120,10 +136140,10 @@ x-webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - organization: *613 - project: &651 + enterprise: *612 + installation: *613 + organization: *614 + project: &652 title: Project type: object properties: @@ -136247,7 +136267,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *614 + repository: *615 sender: *19 required: - action @@ -136337,10 +136357,10 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project_column: &650 + enterprise: *612 + installation: *613 + organization: *614 + project_column: &651 title: Project Column type: object properties: @@ -136379,7 +136399,7 @@ x-webhooks: - name - created_at - updated_at - repository: *614 + repository: *615 sender: *19 required: - action @@ -136468,18 +136488,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - project_column: *650 + enterprise: *612 + installation: *613 + organization: *614 + project_column: *651 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: *642 - required: *643 + properties: *643 + required: *644 nullable: true sender: *19 required: @@ -136579,11 +136599,11 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - project_column: *650 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project_column: *651 + repository: *615 sender: *19 required: - action @@ -136673,11 +136693,11 @@ x-webhooks: type: string enum: - moved - enterprise: *611 - installation: *612 - organization: *613 - project_column: *650 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project_column: *651 + repository: *615 sender: *19 required: - action @@ -136767,11 +136787,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - project: *651 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project: *652 + repository: *615 sender: *19 required: - action @@ -136861,18 +136881,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - project: *651 + enterprise: *612 + installation: *613 + organization: *614 + project: *652 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: *642 - required: *643 + properties: *643 + required: *644 nullable: true sender: *19 required: @@ -136984,11 +137004,11 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - project: *651 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project: *652 + repository: *615 sender: *19 required: - action @@ -137077,11 +137097,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 - organization: *613 - project: *651 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + project: *652 + repository: *615 sender: *19 required: - action @@ -137172,9 +137192,9 @@ x-webhooks: type: string enum: - closed - installation: *612 - organization: *613 - projects_v2: &652 + installation: *613 + organization: *614 + projects_v2: &653 title: Projects v2 Project description: A projects v2 project type: object @@ -137327,9 +137347,9 @@ x-webhooks: type: string enum: - created - installation: *612 - organization: *613 - projects_v2: *652 + installation: *613 + organization: *614 + projects_v2: *653 sender: *19 required: - action @@ -137420,9 +137440,9 @@ x-webhooks: type: string enum: - deleted - installation: *612 - organization: *613 - projects_v2: *652 + installation: *613 + organization: *614 + projects_v2: *653 sender: *19 required: - action @@ -137549,9 +137569,9 @@ x-webhooks: type: string to: type: string - installation: *612 - organization: *613 - projects_v2: *652 + installation: *613 + organization: *614 + projects_v2: *653 sender: *19 required: - action @@ -137644,7 +137664,7 @@ x-webhooks: type: string enum: - archived - changes: &656 + changes: &657 type: object properties: archived_at: @@ -137658,9 +137678,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *612 - organization: *613 - projects_v2_item: &653 + installation: *613 + organization: *614 + projects_v2_item: &654 title: Projects v2 Item description: An item belonging to a project type: object @@ -137804,9 +137824,9 @@ x-webhooks: nullable: true to: type: string - installation: *612 - organization: *613 - projects_v2_item: *653 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -137898,9 +137918,9 @@ x-webhooks: type: string enum: - created - installation: *612 - organization: *613 - projects_v2_item: *653 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -137991,9 +138011,9 @@ x-webhooks: type: string enum: - deleted - installation: *612 - organization: *613 - projects_v2_item: *653 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -138109,7 +138129,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &654 + - &655 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -138127,7 +138147,7 @@ x-webhooks: required: - id - name - - &655 + - &656 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -138150,8 +138170,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *654 - *655 + - *656 required: - field_value - type: object @@ -138167,9 +138187,9 @@ x-webhooks: nullable: true required: - body - installation: *612 - organization: *613 - projects_v2_item: *653 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -138274,9 +138294,9 @@ x-webhooks: to: type: string nullable: true - installation: *612 - organization: *613 - projects_v2_item: *653 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -138369,10 +138389,10 @@ x-webhooks: type: string enum: - restored - changes: *656 - installation: *612 - organization: *613 - projects_v2_item: *653 + changes: *657 + installation: *613 + organization: *614 + projects_v2_item: *654 sender: *19 required: - action @@ -138464,9 +138484,9 @@ x-webhooks: type: string enum: - reopened - installation: *612 - organization: *613 - projects_v2: *652 + installation: *613 + organization: *614 + projects_v2: *653 sender: *19 required: - action @@ -138547,10 +138567,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - repository @@ -138637,13 +138657,13 @@ x-webhooks: type: string enum: - assigned - assignee: *633 - enterprise: *611 - installation: *612 - number: &657 + assignee: *634 + enterprise: *612 + installation: *613 + number: &658 description: The pull request number. type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -140926,7 +140946,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -141018,11 +141038,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -143300,7 +143320,7 @@ x-webhooks: - draft reason: type: string - repository: *614 + repository: *615 sender: *19 required: - action @@ -143392,11 +143412,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -145674,7 +145694,7 @@ x-webhooks: - draft reason: type: string - repository: *614 + repository: *615 sender: *19 required: - action @@ -145766,13 +145786,13 @@ x-webhooks: type: string enum: - closed - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: &658 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: &659 allOf: - - *486 + - *502 - type: object properties: allow_auto_merge: @@ -145834,7 +145854,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *614 + repository: *615 sender: *19 required: - action @@ -145925,12 +145945,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: *659 + repository: *615 sender: *19 required: - action @@ -146020,11 +146040,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *611 - milestone: *467 - number: *657 - organization: *613 - pull_request: &659 + enterprise: *612 + milestone: *483 + number: *658 + organization: *614 + pull_request: &660 title: Pull Request type: object properties: @@ -148287,7 +148307,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -148419,12 +148439,12 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: *659 + repository: *615 sender: *19 required: - action @@ -148514,11 +148534,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *611 - installation: *612 - label: *632 - number: *657 - organization: *613 + enterprise: *612 + installation: *613 + label: *633 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -150800,7 +150820,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -150891,10 +150911,10 @@ x-webhooks: type: string enum: - locked - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -153174,7 +153194,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -153264,12 +153284,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *611 - milestone: *467 - number: *657 - organization: *613 - pull_request: *659 - repository: *614 + enterprise: *612 + milestone: *483 + number: *658 + organization: *614 + pull_request: *660 + repository: *615 sender: *19 required: - action @@ -153358,12 +153378,12 @@ x-webhooks: type: string enum: - opened - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: *659 + repository: *615 sender: *19 required: - action @@ -153454,12 +153474,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: *659 + repository: *615 sender: *19 required: - action @@ -153549,12 +153569,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *611 - installation: *612 - number: *657 - organization: *613 - pull_request: *658 - repository: *614 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 + pull_request: *659 + repository: *615 sender: *19 required: - action @@ -153930,9 +153950,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: type: object properties: @@ -156102,7 +156122,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *615 sender: *19 required: - action @@ -156192,7 +156212,7 @@ x-webhooks: type: string enum: - deleted - comment: &661 + comment: &662 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-server@3.14/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -156477,9 +156497,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: type: object properties: @@ -158637,7 +158657,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *615 sender: *19 required: - action @@ -158727,11 +158747,11 @@ x-webhooks: type: string enum: - edited - changes: *660 - comment: *661 - enterprise: *611 - installation: *612 - organization: *613 + changes: *661 + comment: *662 + enterprise: *612 + installation: *613 + organization: *614 pull_request: type: object properties: @@ -160892,7 +160912,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *614 + repository: *615 sender: *19 required: - action @@ -160983,9 +161003,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: title: Simple Pull Request type: object @@ -163158,7 +163178,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *615 review: description: The review that was affected. type: object @@ -163411,9 +163431,9 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: title: Simple Pull Request type: object @@ -165467,8 +165487,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 - review: &662 + repository: *615 + review: &663 description: The review that was affected. type: object properties: @@ -165707,12 +165727,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: description: The pull request number. type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -167995,7 +168015,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 requested_reviewer: title: User type: object @@ -168079,12 +168099,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: description: The pull request number. type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -170374,7 +170394,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 requested_team: title: Team description: Groups of organization members that gives permissions @@ -170576,12 +170596,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: description: The pull request number. type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -172866,7 +172886,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 requested_reviewer: title: User type: object @@ -172951,12 +172971,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *611 - installation: *612 + enterprise: *612 + installation: *613 number: description: The pull request number. type: integer - organization: *613 + organization: *614 pull_request: title: Pull Request type: object @@ -175232,7 +175252,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 requested_team: title: Team description: Groups of organization members that gives permissions @@ -175423,9 +175443,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: title: Simple Pull Request type: object @@ -177600,8 +177620,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 - review: *662 + repository: *615 + review: *663 sender: *19 required: - action @@ -177691,9 +177711,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: title: Simple Pull Request type: object @@ -179763,7 +179783,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *615 sender: *19 thread: type: object @@ -180156,9 +180176,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 pull_request: title: Simple Pull Request type: object @@ -182214,7 +182234,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *614 + repository: *615 sender: *19 thread: type: object @@ -182610,10 +182630,10 @@ x-webhooks: type: string before: type: string - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -184884,7 +184904,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -184976,11 +184996,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *663 - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + assignee: *664 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -187263,7 +187283,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -187352,11 +187372,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *611 - installation: *612 - label: *632 - number: *657 - organization: *613 + enterprise: *612 + installation: *613 + label: *633 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -189629,7 +189649,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -189720,10 +189740,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *611 - installation: *612 - number: *657 - organization: *613 + enterprise: *612 + installation: *613 + number: *658 + organization: *614 pull_request: title: Pull Request type: object @@ -191988,7 +192008,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *614 + repository: *615 sender: *19 required: - action @@ -192198,7 +192218,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *611 + enterprise: *612 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -192290,8 +192310,8 @@ x-webhooks: - url - author - committer - installation: *612 - organization: *613 + installation: *613 + organization: *614 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -192876,9 +192896,9 @@ x-webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 registry_package: type: object properties: @@ -193324,7 +193344,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *646 + items: *647 summary: type: string tag_name: @@ -193378,7 +193398,7 @@ x-webhooks: - owner - package_version - registry - repository: *614 + repository: *615 sender: *19 required: - action @@ -193466,9 +193486,9 @@ x-webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 registry_package: type: object properties: @@ -193776,7 +193796,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *646 + items: *647 summary: type: string tag_name: @@ -193825,7 +193845,7 @@ x-webhooks: - owner - package_version - registry - repository: *614 + repository: *615 sender: *19 required: - action @@ -193912,10 +193932,10 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - release: &664 + enterprise: *612 + installation: *613 + organization: *614 + release: &665 title: Release description: The [release](https://docs.github.com/enterprise-server@3.14/rest/releases/releases/#get-a-release) object. @@ -194228,7 +194248,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *614 + repository: *615 sender: *19 required: - action @@ -194315,11 +194335,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + release: *665 + repository: *615 sender: *19 required: - action @@ -194446,11 +194466,11 @@ x-webhooks: type: boolean required: - to - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + release: *665 + repository: *615 sender: *19 required: - action @@ -194538,9 +194558,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 release: title: Release description: The [release](https://docs.github.com/enterprise-server@3.14/rest/releases/releases/#get-a-release) @@ -194857,7 +194877,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *614 + repository: *615 sender: *19 required: - action @@ -194943,10 +194963,10 @@ x-webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 - release: &665 + enterprise: *612 + installation: *613 + organization: *614 + release: &666 title: Release description: The [release](https://docs.github.com/enterprise-server@3.14/rest/releases/releases/#get-a-release) object. @@ -195260,7 +195280,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *614 + repository: *615 sender: *19 required: - action @@ -195346,11 +195366,11 @@ x-webhooks: type: string enum: - released - enterprise: *611 - installation: *612 - organization: *613 - release: *664 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + release: *665 + repository: *615 sender: *19 required: - action @@ -195436,11 +195456,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *611 - installation: *612 - organization: *613 - release: *665 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + release: *666 + repository: *615 sender: *19 required: - action @@ -195526,10 +195546,10 @@ x-webhooks: type: string enum: - anonymous_access_disabled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -195614,10 +195634,10 @@ x-webhooks: type: string enum: - anonymous_access_enabled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -195702,10 +195722,10 @@ x-webhooks: type: string enum: - archived - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -195792,10 +195812,10 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -195883,10 +195903,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -195980,10 +196000,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -196105,10 +196125,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -196196,10 +196216,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -196286,10 +196306,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -196393,10 +196413,10 @@ x-webhooks: - name required: - repository - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -196476,11 +196496,11 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *252 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + repository_ruleset: *267 sender: *19 required: - action @@ -196558,11 +196578,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *252 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + repository_ruleset: *267 sender: *19 required: - action @@ -196640,11 +196660,11 @@ x-webhooks: type: string enum: - edited - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - repository_ruleset: *252 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + repository_ruleset: *267 changes: type: object properties: @@ -196705,16 +196725,16 @@ x-webhooks: properties: added: type: array - items: *251 + items: *523 deleted: type: array - items: *251 + items: *523 updated: type: array items: type: object properties: - rule: *251 + rule: *523 changes: type: object properties: @@ -196958,10 +196978,10 @@ x-webhooks: - from required: - owner - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197049,10 +197069,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197140,7 +197160,7 @@ x-webhooks: type: string enum: - create - alert: &666 + alert: &667 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -197261,10 +197281,10 @@ x-webhooks: type: string enum: - open - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197480,10 +197500,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197571,11 +197591,11 @@ x-webhooks: type: string enum: - reopen - alert: *666 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *667 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197784,10 +197804,10 @@ x-webhooks: enum: - fixed - open - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -197875,7 +197895,7 @@ x-webhooks: type: string enum: - created - alert: &667 + alert: &668 type: object properties: number: *93 @@ -197955,10 +197975,10 @@ x-webhooks: description: 'The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' nullable: true - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -198049,11 +198069,11 @@ x-webhooks: type: string enum: - created - alert: *667 - installation: *612 - location: *668 - organization: *613 - repository: *614 + alert: *668 + installation: *613 + location: *669 + organization: *614 + repository: *615 sender: *19 required: - location @@ -198296,11 +198316,11 @@ x-webhooks: type: string enum: - reopened - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *668 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -198388,11 +198408,11 @@ x-webhooks: type: string enum: - resolved - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *668 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -198480,11 +198500,11 @@ x-webhooks: type: string enum: - validated - alert: *667 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + alert: *668 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -198570,11 +198590,11 @@ x-webhooks: type: string enum: - published - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - security_advisory: &669 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + security_advisory: &670 description: The details of the security advisory, including summary, description, and severity. type: object @@ -198767,11 +198787,11 @@ x-webhooks: type: string enum: - updated - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 - security_advisory: *669 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 + security_advisory: *670 sender: *19 required: - action @@ -198854,10 +198874,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -199052,10 +199072,10 @@ x-webhooks: type: object properties: security_and_analysis: *245 - enterprise: *611 - installation: *612 - organization: *613 - repository: *295 + enterprise: *612 + installation: *613 + organization: *614 + repository: *311 sender: *19 required: - changes @@ -199143,12 +199163,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: &670 + sponsorship: &671 type: object properties: created_at: @@ -199459,12 +199479,12 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: *670 + sponsorship: *671 required: - action - sponsorship @@ -199562,12 +199582,12 @@ x-webhooks: type: string required: - from - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: *670 + sponsorship: *671 required: - action - changes @@ -199654,17 +199674,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &671 + effective_date: &672 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: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: *670 + sponsorship: *671 required: - action - sponsorship @@ -199748,7 +199768,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &672 + changes: &673 type: object properties: tier: @@ -199792,13 +199812,13 @@ x-webhooks: - from required: - tier - effective_date: *671 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + effective_date: *672 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: *670 + sponsorship: *671 required: - action - changes @@ -199885,13 +199905,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *672 - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + changes: *673 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - sponsorship: *670 + sponsorship: *671 required: - action - changes @@ -199975,10 +199995,10 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -200071,10 +200091,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 starred_at: description: 'The time the star was created. This is a timestamp @@ -200500,15 +200520,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *611 + enterprise: *612 id: description: The unique identifier of the status. type: integer - installation: *612 + installation: *613 name: type: string - organization: *613 - repository: *614 + organization: *614 + repository: *615 sender: *19 sha: description: The Commit SHA. @@ -200620,12 +200640,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - team: &673 + team: &674 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -200825,9 +200845,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 repository: title: Repository description: A git repository @@ -201285,7 +201305,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *673 + team: *674 required: - action - team @@ -201371,9 +201391,9 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 repository: title: Repository description: A git repository @@ -201831,7 +201851,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *673 + team: *674 required: - action - team @@ -201918,9 +201938,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 repository: title: Repository description: A git repository @@ -202378,7 +202398,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *673 + team: *674 required: - action - team @@ -202532,9 +202552,9 @@ x-webhooks: - from required: - permissions - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 repository: title: Repository description: A git repository @@ -202992,7 +203012,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *673 + team: *674 required: - action - changes @@ -203080,9 +203100,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *611 - installation: *612 - organization: *613 + enterprise: *612 + installation: *613 + organization: *614 repository: title: Repository description: A git repository @@ -203540,7 +203560,7 @@ x-webhooks: - topics - visibility sender: *19 - team: *673 + team: *674 required: - action - team @@ -203623,12 +203643,12 @@ x-webhooks: type: string enum: - created - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - user: *633 + user: *634 required: - action responses: @@ -203706,12 +203726,12 @@ x-webhooks: type: string enum: - deleted - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 - user: *633 + user: *634 required: - action responses: @@ -203792,10 +203812,10 @@ x-webhooks: type: string enum: - started - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 required: - action @@ -203878,16 +203898,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *611 + enterprise: *612 inputs: type: object nullable: true additionalProperties: true - installation: *612 - organization: *613 + installation: *613 + organization: *614 ref: type: string - repository: *614 + repository: *615 sender: *19 workflow: type: string @@ -203979,10 +203999,10 @@ x-webhooks: type: string enum: - completed - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 workflow_job: allOf: @@ -204219,7 +204239,7 @@ x-webhooks: type: string required: - conclusion - deployment: *405 + deployment: *421 required: - action - repository @@ -204308,10 +204328,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 workflow_job: allOf: @@ -204571,7 +204591,7 @@ x-webhooks: required: - status - steps - deployment: *405 + deployment: *421 required: - action - repository @@ -204660,10 +204680,10 @@ x-webhooks: type: string enum: - queued - enterprise: *611 - installation: *612 - organization: *613 - repository: *614 + enterprise: *612 + installation: *613 + organization: *614 + repository: *615 sender: *19 workflow_job: type: object @@ -204798,7 +204818,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *405 + deployment: *421 required: - action - repository @@ -204887,10 +204907,10 @@ x-webhooks: type:{"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}