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..b80572e747 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", @@ -22024,7 +22030,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } }, @@ -22353,7 +22359,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } } @@ -99358,7 +99364,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 +99544,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", @@ -111678,6 +111703,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 +272561,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 +272606,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 +272642,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 +276881,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..57dd188e88 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 @@ -16084,7 +16088,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 +16304,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: @@ -72204,6 +72208,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 +72343,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 @@ -82055,6 +82073,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 +204131,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 +204167,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 +204196,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 +207831,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..b80572e747 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", @@ -22024,7 +22030,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } }, @@ -22353,7 +22359,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } } @@ -99358,7 +99364,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 +99544,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", @@ -111678,6 +111703,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 +272561,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 +272606,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 +272642,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 +276881,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..57dd188e88 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 @@ -16084,7 +16088,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 +16304,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: @@ -72204,6 +72208,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 +72343,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 @@ -82055,6 +82073,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 +204131,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 +204167,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 +204196,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 +207831,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..4f1ad314e5 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", @@ -130726,83 +130861,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 +135310,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 +235419,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", 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..b86f5efc3d 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 @@ -33022,7 +33045,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 +33141,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 @@ -33279,7 +33302,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 +33475,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: default: value: @@ -33490,7 +33513,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &292 + '410': &313 description: Gone content: application/json: @@ -33525,7 +33548,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 +33614,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 +33673,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 +33703,9 @@ paths: application/json: schema: type: array - items: *233 + items: *234 examples: - default: *234 + default: *235 '403': *29 '404': *6 x-github: @@ -33704,7 +33727,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 +33739,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 +33776,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 +33845,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *236 + default: *237 '403': *29 '404': *6 x-github: @@ -33848,9 +33871,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 +33932,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 +34019,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 +34072,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -34188,7 +34211,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -34390,7 +34413,7 @@ paths: description: Response content: application/json: - schema: &294 + schema: &315 title: Full Repository description: Full Repository type: object @@ -34667,8 +34690,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 +34806,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 +34822,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 +34911,7 @@ paths: - network_count - subscribers_count examples: - default: &296 + default: &317 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -35409,7 +35432,7 @@ paths: - *96 - *17 - *19 - - &565 + - &566 name: targets description: | A comma-separated list of rule targets to filter by. @@ -35427,7 +35450,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 +35485,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 +35498,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 +35563,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 +35587,7 @@ paths: match. items: type: string - - &245 + - &246 title: Organization ruleset conditions type: object description: |- @@ -35578,7 +35601,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 +35635,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 +35657,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 +35670,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 +35703,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 +35725,7 @@ paths: type: string enum: - creation - - &544 + - &248 title: update description: Only allow users with bypass permission to update matching refs. @@ -35723,7 +35746,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 +35758,7 @@ paths: type: string enum: - deletion - - &547 + - &250 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -35747,7 +35770,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 +35848,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 +35872,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 +35884,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 +35946,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 +35994,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 +36006,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 +36042,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 +36078,7 @@ paths: required: - operator - pattern - - &556 + - &258 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -36091,7 +36114,7 @@ paths: required: - operator - pattern - - &557 + - &259 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -36127,7 +36150,7 @@ paths: required: - operator - pattern - - &558 + - &260 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -36163,7 +36186,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 +36211,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 +36235,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 +36258,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 +36283,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 +36333,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 +36467,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 +36538,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 +36595,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 +36610,7 @@ paths: in: query schema: type: string - - &567 + - &569 name: time_period description: |- The time period to filter by. @@ -36579,14 +36626,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 +36653,7 @@ paths: description: Response content: application/json: - schema: &570 + schema: &572 title: Rule Suites description: Response type: array @@ -36661,7 +36708,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 +36752,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 +36768,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &575 title: Rule Suite description: Response type: object @@ -36820,7 +36867,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 +36940,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *248 + default: *268 '404': *6 '500': *97 put: @@ -36939,16 +36986,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 +37030,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *248 + default: *268 '404': *6 '500': *97 delete: @@ -37042,7 +37089,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 +37113,7 @@ paths: type: string format: date-time examples: - default: &576 + default: &578 value: - version_id: 3 actor: @@ -37119,9 +37166,9 @@ paths: description: Response content: application/json: - schema: &577 + schema: &579 allOf: - - *249 + - *270 - type: object required: - state @@ -37191,14 +37238,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 +37255,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 +37265,10 @@ paths: required: false schema: type: string - - *254 - - *255 - - *256 - - *257 + - *275 + - *276 + - *277 + - *278 responses: '200': description: Response @@ -37229,9 +37276,9 @@ paths: application/json: schema: type: array - items: *258 + items: *279 examples: - default: *259 + default: *280 headers: Link: *58 '404': *6 @@ -37301,7 +37348,7 @@ paths: application/json: schema: type: array - items: &600 + items: &602 description: A repository security advisory. type: object properties: @@ -37521,7 +37568,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 credits_detailed: type: array nullable: true @@ -37531,7 +37578,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 +37602,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 +37639,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 +38026,9 @@ paths: application/json: schema: type: array - items: *261 + items: *282 examples: - default: *215 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38005,7 +38052,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 +38078,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 +38113,7 @@ paths: description: Response content: application/json: - schema: &663 + schema: &665 type: object properties: total_minutes_used: @@ -38136,7 +38183,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &664 + default: &666 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -38172,7 +38219,7 @@ paths: description: Response content: application/json: - schema: &665 + schema: &667 type: object properties: total_gigabytes_bandwidth_used: @@ -38190,7 +38237,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 +38269,7 @@ paths: description: Response content: application/json: - schema: &667 + schema: &669 type: object properties: days_left_in_billing_cycle: @@ -38240,7 +38287,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 +38329,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 +38449,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 +38480,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 +38492,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *283 examples: - default: *263 + default: *284 headers: Link: *58 x-github: @@ -38469,7 +38516,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 +38555,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *283 examples: - default: *263 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38530,7 +38577,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 +38685,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 +38717,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 +38751,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 headers: Link: *58 '403': *29 @@ -38800,7 +38847,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 +38910,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 +39157,7 @@ paths: - repos_count - organization examples: - default: &269 + default: &290 value: id: 1 node_id: MDQ6VGVhbTE= @@ -39181,15 +39228,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 +39258,7 @@ paths: url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - *96 - - *210 + - *211 requestBody: required: false content: @@ -39273,16 +39320,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 +39355,7 @@ paths: url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - *96 - - *210 + - *211 responses: '204': description: Response @@ -39335,7 +39382,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#list-discussions parameters: - *96 - - *210 + - *211 - *48 - *17 - *19 @@ -39352,7 +39399,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 +39498,7 @@ paths: - updated_at - url examples: - default: &615 + default: &617 value: - author: login: octocat @@ -39526,7 +39573,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#create-a-discussion parameters: - *96 - - *210 + - *211 requestBody: required: true content: @@ -39560,9 +39607,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: &271 + default: &292 value: author: login: octocat @@ -39635,8 +39682,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 +39695,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39673,8 +39720,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 +39744,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: &616 + default: &618 value: author: login: octocat @@ -39770,8 +39817,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 +39845,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 +39857,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 +39929,7 @@ paths: - updated_at - url examples: - default: &617 + default: &619 value: - author: login: octocat @@ -39951,8 +39998,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 +40021,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: &274 + default: &295 value: author: login: octocat @@ -40043,9 +40090,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 +40104,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *274 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40082,9 +40129,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 +40153,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: &618 + default: &620 value: author: login: octocat @@ -40173,9 +40220,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 +40249,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 +40277,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 +40320,7 @@ paths: - content - created_at examples: - default: &278 + default: &299 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -40324,9 +40371,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 +40406,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 +40437,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40416,10 +40463,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 +40499,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 +40526,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -40508,8 +40555,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 +40588,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 +40621,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 +40648,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -40611,9 +40658,9 @@ paths: application/json: schema: type: array - items: *192 + items: *193 examples: - default: *193 + default: *194 headers: Link: *58 x-github: @@ -40636,7 +40683,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 +40706,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -40690,14 +40737,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 +40771,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 +40808,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 +40834,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 +40872,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 +40899,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-projects parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -40862,7 +40909,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 +40977,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 +41041,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 +41054,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 +41119,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 +41187,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 +41216,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -41181,7 +41228,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -41211,15 +41258,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 +41836,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 +41884,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 +41911,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -41874,9 +41921,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 +42050,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 +42062,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 +42129,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 +42185,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 +42212,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 '304': *37 '403': *29 '401': *25 @@ -42194,7 +42241,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 +42285,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 +42396,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 +42408,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 +42454,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 +42489,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 +42513,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *310 examples: - default: *290 + default: *311 '304': *37 '403': *29 '401': *25 @@ -42493,7 +42540,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 +42569,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 +42590,7 @@ paths: application/json: schema: type: array - items: *286 + items: *307 examples: default: value: @@ -42602,7 +42649,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 +42689,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 '304': *37 '403': *29 '401': *25 @@ -42700,7 +42747,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 +42807,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 +42872,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 +42918,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 +42941,7 @@ paths: items: type: string '401': *25 - '410': *292 + '410': *313 '422': *7 x-github: githubCloudOnly: false @@ -42917,7 +42964,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 +42985,7 @@ paths: items: type: string '401': *25 - '410': *292 + '410': *313 '404': *6 x-github: githubCloudOnly: false @@ -42962,7 +43009,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 +43036,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -43019,7 +43066,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 +43119,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 +43151,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 +43225,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 +43235,7 @@ paths: application/json: schema: type: array - items: *289 + items: *310 examples: default: value: @@ -43226,7 +43273,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 +43296,7 @@ paths: description: Response content: application/json: - schema: *289 + schema: *310 examples: default: value: @@ -43314,7 +43361,7 @@ paths: resources: type: object properties: - core: &293 + core: &314 title: Rate Limit type: object properties: @@ -43331,21 +43378,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 +43496,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 +44004,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *295 + '301': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43975,8 +44022,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 +44270,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 +44302,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 +44325,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 +44349,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 +44376,7 @@ paths: type: integer artifacts: type: array - items: &298 + items: &319 title: Artifact description: An artifact type: object @@ -44407,7 +44454,7 @@ paths: - expires_at - updated_at examples: - default: &324 + default: &345 value: total_count: 2 artifacts: @@ -44468,9 +44515,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 +44529,7 @@ paths: description: Response content: application/json: - schema: *298 + schema: *319 examples: default: value: @@ -44520,9 +44567,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 +44593,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 +44609,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 +44632,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 +44665,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 +44703,7 @@ paths: description: Response content: application/json: - schema: &302 + schema: &323 title: Repository actions caches description: Repository actions caches type: object @@ -44698,7 +44745,7 @@ paths: - total_count - actions_caches examples: - default: &303 + default: &324 value: total_count: 1 actions_caches: @@ -44730,23 +44777,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 +44813,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 +44845,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 +44859,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 +45166,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 +45196,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 +45243,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 +45294,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 +45358,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 +45377,7 @@ paths: type: integer secrets: type: array - items: &329 + items: &350 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -45350,7 +45397,7 @@ paths: - created_at - updated_at examples: - default: &330 + default: &351 value: total_count: 2 secrets: @@ -45383,9 +45430,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 +45449,7 @@ paths: type: integer variables: type: array - items: &333 + items: &354 title: Actions Variable type: object properties: @@ -45432,7 +45479,7 @@ paths: - created_at - updated_at examples: - default: &334 + default: &355 value: total_count: 2 variables: @@ -45465,8 +45512,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 +45522,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 +45553,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 +45565,7 @@ paths: schema: type: object properties: - enabled: *307 + enabled: *328 allowed_actions: *111 required: - enabled @@ -45548,14 +45595,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 +45619,7 @@ paths: required: - access_level examples: - default: &309 + default: &330 value: access_level: organization x-github: @@ -45596,15 +45643,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 +45675,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 +45703,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 +45736,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 +45766,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 +45778,7 @@ paths: required: true content: application/json: - schema: *311 + schema: *332 examples: default: *117 x-github: @@ -45760,8 +45807,8 @@ paths: in: query schema: type: string - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -45805,8 +45852,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 +45861,9 @@ paths: application/json: schema: type: array - items: *312 + items: *333 examples: - default: *313 + default: *334 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45838,8 +45885,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 +45929,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *314 + '201': *335 '404': *6 '422': *7 '409': *47 @@ -45913,8 +45960,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 +45969,7 @@ paths: application/json: schema: *126 examples: - default: *315 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45950,8 +45997,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 +46006,7 @@ paths: application/json: schema: *126 examples: - default: *316 + default: *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45981,8 +46028,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 +46038,7 @@ paths: application/json: schema: *124 examples: - default: *317 + default: *338 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46012,8 +46059,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 +46087,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 +46113,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 +46163,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 +46214,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 +46245,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 +46276,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 +46286,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 +46294,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 +46303,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 +46330,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 +46339,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 +46348,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 +46377,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 +46472,7 @@ paths: that triggered the run. type: array nullable: true - items: &362 + items: &383 title: Pull Request Minimal type: object properties: @@ -46544,7 +46591,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &366 + properties: &387 id: type: string description: SHA for the commit @@ -46595,7 +46642,7 @@ paths: - name - email nullable: true - required: &367 + required: &388 - id - tree_id - message @@ -46642,7 +46689,7 @@ paths: - workflow_url - pull_requests examples: - default: &344 + default: &365 value: total_count: 1 workflow_runs: @@ -46878,24 +46925,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 +47183,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 +47208,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 +47329,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 +47364,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 +47385,9 @@ paths: type: integer artifacts: type: array - items: *298 + items: *319 examples: - default: *324 + default: *345 headers: Link: *58 x-github: @@ -47364,25 +47411,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 +47452,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 +47473,9 @@ paths: type: integer jobs: type: array - items: *327 + items: *348 examples: - default: &328 + default: &349 value: total_count: 1 jobs: @@ -47541,10 +47588,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 +47619,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 +47654,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 +47723,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 +47758,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 +47790,9 @@ paths: type: integer jobs: type: array - items: *327 + items: *348 examples: - default: *328 + default: *349 headers: Link: *58 x-github: @@ -47770,9 +47817,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 +47846,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 +47875,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 +47937,7 @@ paths: items: type: object properties: - type: &446 + type: &467 type: string description: The type of reviewer. enum: @@ -47900,7 +47947,7 @@ paths: reviewer: anyOf: - *4 - - *154 + - *155 required: - environment - wait_timer @@ -47975,9 +48022,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 +48071,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 +48177,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 +48233,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 +48279,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 +48334,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 +48473,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 +48492,9 @@ paths: type: integer secrets: type: array - items: *329 + items: *350 examples: - default: *330 + default: *351 headers: Link: *58 x-github: @@ -48472,16 +48519,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 +48550,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 +48586,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 +48645,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 +48672,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 +48691,9 @@ paths: type: integer variables: type: array - items: *333 + items: *354 examples: - default: *334 + default: *355 headers: Link: *58 x-github: @@ -48669,8 +48716,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 +48769,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 +48805,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 +48849,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 +48876,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 +48895,7 @@ paths: type: integer workflows: type: array - items: &335 + items: &356 title: Workflow description: A GitHub Actions workflow type: object @@ -48955,9 +49002,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 +49019,7 @@ paths: description: Response content: application/json: - schema: *335 + schema: *356 examples: default: value: @@ -49005,9 +49052,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 +49079,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 +49132,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 +49161,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 +49189,9 @@ paths: type: integer workflow_runs: type: array - items: *321 + items: *342 examples: - default: *344 + default: *365 headers: Link: *58 x-github: @@ -49176,9 +49223,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 +49286,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 +49451,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 +49464,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -49442,8 +49489,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 +49526,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 +49639,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 +49694,7 @@ paths: bundle_url: type: string examples: - default: *345 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49667,8 +49714,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 +49723,7 @@ paths: application/json: schema: type: array - items: &346 + items: &367 title: Autolink reference description: An autolink reference. type: object @@ -49726,8 +49773,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 +49813,9 @@ paths: description: response content: application/json: - schema: *346 + schema: *367 examples: - default: &347 + default: &368 value: id: 1 key_prefix: TICKET- @@ -49799,9 +49846,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 +49860,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *367 examples: - default: *347 + default: *368 '404': *6 x-github: githubCloudOnly: false @@ -49835,9 +49882,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 +49908,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 +49957,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 +49979,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 +50000,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 +50039,7 @@ paths: - url protected: type: boolean - protection: &350 + protection: &371 title: Branch Protection description: Branch Protection type: object @@ -50034,7 +50081,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 +50096,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 +50117,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 +50146,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 +50172,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 +50479,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 +50495,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 +50536,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 +50551,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 +50572,7 @@ paths: required: - sha - url - verification: &466 + verification: &487 title: Verification type: object properties: @@ -50595,7 +50642,7 @@ paths: type: integer files: type: array - items: &429 + items: &450 title: Diff Entry description: Diff Entry type: object @@ -50678,7 +50725,7 @@ paths: - self protected: type: boolean - protection: *350 + protection: *371 protection_url: type: string format: uri @@ -50785,7 +50832,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 +50854,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 +51056,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 +51313,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 +51389,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 apps: type: array items: *5 @@ -51360,7 +51407,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 apps: type: array items: *5 @@ -51418,7 +51465,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *352 + restrictions: *373 required_conversation_resolution: type: object properties: @@ -51530,9 +51577,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 +51604,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 +51636,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 +51665,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 +51692,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 +51798,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 +51898,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *376 examples: - default: *356 + default: *377 '422': *15 x-github: githubCloudOnly: false @@ -51874,9 +51921,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 +51950,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 +51983,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 +52013,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 +52040,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 +52076,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 +52130,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *379 examples: - default: *359 + default: *380 '404': *6 '422': *15 x-github: @@ -52107,9 +52154,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 +52180,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 +52216,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 +52285,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 +52351,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 +52419,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 +52518,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 +52543,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 +52555,7 @@ paths: type: array items: *5 examples: - default: &360 + default: &381 value: - id: 1 slug: octoapp @@ -52565,9 +52612,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 +52648,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52622,9 +52669,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 +52705,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52679,9 +52726,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 +52762,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52737,9 +52784,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 +52794,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '404': *6 x-github: githubCloudOnly: false @@ -52769,9 +52816,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 +52854,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52830,9 +52877,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 +52915,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52891,9 +52938,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 +52975,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52952,9 +52999,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 +53011,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '404': *6 x-github: githubCloudOnly: false @@ -52988,9 +53035,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 +53070,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53048,9 +53095,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 +53130,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53108,9 +53155,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 +53190,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53170,9 +53217,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 +53241,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *382 examples: default: value: @@ -53310,8 +53357,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 +53637,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 +53756,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 +54037,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 +54051,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *384 examples: - default: &365 + default: &386 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -54106,9 +54153,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 +54395,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *384 examples: - default: *365 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54370,9 +54417,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 +54514,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 +54560,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 +54583,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 +54647,7 @@ paths: nullable: true pull_requests: type: array - items: *362 + items: *383 nullable: true app: title: GitHub app @@ -54622,12 +54669,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 +54702,7 @@ paths: - check_runs_url - pull_requests examples: - default: &369 + default: &390 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -54946,9 +54993,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 +55014,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 +55324,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 +55338,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *389 examples: - default: *369 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55316,17 +55363,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 +55412,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 +55516,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 +55551,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 +55590,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 +55612,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 +55623,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 +55750,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 +55777,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 +55793,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &405 type: object properties: number: *54 @@ -55754,7 +55801,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 +55812,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 +55867,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 +55964,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 +55984,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 +56001,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 +56021,7 @@ paths: description: Response content: application/json: - schema: *384 + schema: *405 examples: default: value: @@ -56050,7 +56097,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 +56124,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 +56158,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 +56175,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 +56200,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 +56254,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 +56301,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 +56326,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 +56340,7 @@ paths: application/json: schema: type: array - items: *381 + items: *402 examples: default: value: @@ -56332,7 +56379,7 @@ paths: end_column: 50 classifications: - source - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56366,25 +56413,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 +56452,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 +56492,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 +56554,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56543,8 +56590,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 +56604,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *415 examples: response: summary: application/json response @@ -56611,7 +56658,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 +56745,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 +56799,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 +56821,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 +56830,7 @@ paths: application/json: schema: type: array - items: &395 + items: &416 title: CodeQL Database description: A CodeQL database. type: object @@ -56894,7 +56941,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 +56970,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 +56983,7 @@ paths: description: Response content: application/json: - schema: *395 + schema: *416 examples: default: value: @@ -56968,9 +57015,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 +57039,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 +57050,7 @@ paths: responses: '204': description: Response - '403': *388 + '403': *409 '404': *6 '503': *65 x-github: @@ -57031,8 +57078,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 +57088,7 @@ paths: type: object additionalProperties: false properties: - language: &396 + language: &417 type: string description: The language targeted by the CodeQL query enum: @@ -57120,7 +57167,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 +57177,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 +57224,7 @@ paths: items: type: object properties: - repository: &397 + repository: &418 title: Repository Identifier description: Repository Identifier type: object @@ -57213,7 +57260,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 +57292,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 +57306,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 +57328,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 +57345,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 +57497,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 +57528,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 +57541,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *421 examples: - default: *399 + default: *420 '404': *6 '503': *65 x-github: @@ -57519,7 +57566,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 +57601,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 +57726,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 +57812,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 +57833,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 +57926,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 +57997,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 +58006,7 @@ paths: schema: type: object properties: - commit_sha: *402 + commit_sha: *423 ref: type: string description: |- @@ -58017,7 +58064,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 +58078,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 +58101,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 +58148,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 +58173,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 +58230,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 +58255,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 +58376,8 @@ paths: parameters: - *17 - *19 - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -58346,7 +58393,7 @@ paths: type: integer codespaces: type: array - items: *201 + items: *202 examples: default: value: @@ -58644,8 +58691,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 +58755,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 +58794,8 @@ paths: parameters: - *17 - *19 - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -58812,8 +58859,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 +58895,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 +58942,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 +59027,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 +59094,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 +59113,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 +59133,7 @@ paths: - created_at - updated_at examples: - default: *406 + default: *427 headers: Link: *58 x-github: @@ -59109,16 +59156,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 +59185,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 +59215,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 +59269,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 +59299,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 +59342,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &411 + properties: &432 login: type: string example: octocat @@ -59388,7 +59435,7 @@ paths: user_view_type: type: string example: public - required: &412 + required: &433 - avatar_url - events_url - followers_url @@ -59462,8 +59509,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 +59557,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 +59585,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 +59814,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 +59847,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 +59869,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *411 - required: *412 + properties: *432 + required: *433 nullable: true required: - permission @@ -59878,8 +59925,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 +59936,7 @@ paths: application/json: schema: type: array - items: &413 + items: &434 title: Commit Comment description: Commit Comment type: object @@ -59947,7 +59994,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 +60053,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 +60120,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 +60144,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *434 examples: default: value: @@ -60148,8 +60195,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 +60218,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 +60246,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -60222,8 +60269,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 +60303,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 +60334,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 +60386,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 +60443,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 +60539,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 +60613,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 +60625,9 @@ paths: application/json: schema: type: array - items: *413 + items: *434 examples: - default: *416 + default: *437 headers: Link: *58 x-github: @@ -60608,9 +60655,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 +60692,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 +60722,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 +60734,7 @@ paths: application/json: schema: type: array - items: &521 + items: &542 title: Pull Request Simple description: Pull Request Simple type: object @@ -60793,8 +60840,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 +60886,7 @@ paths: nullable: true requested_teams: type: array - items: *154 + items: *155 nullable: true head: type: object @@ -60890,7 +60937,7 @@ paths: _links: type: object properties: - comments: &420 + comments: &441 title: Link description: Hypermedia Link type: object @@ -60899,13 +60946,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 +60963,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 +61026,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 +61563,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 +61582,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 +61697,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 +61735,9 @@ paths: type: integer check_runs: type: array - items: *363 + items: *384 examples: - default: *424 + default: *445 headers: Link: *58 x-github: @@ -61715,9 +61762,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 +61772,7 @@ paths: schema: type: integer example: 1 - - *422 + - *443 - *17 - *19 responses: @@ -61743,7 +61790,7 @@ paths: type: integer check_suites: type: array - items: *368 + items: *389 examples: default: value: @@ -61943,9 +61990,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 +62190,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 +62202,7 @@ paths: application/json: schema: type: array - items: &605 + items: &607 title: Status description: The status of a commit. type: object @@ -62236,7 +62283,7 @@ paths: site_admin: false headers: Link: *58 - '301': *295 + '301': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62264,8 +62311,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 +62341,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 +62368,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 +62514,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 +62558,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 +62579,10 @@ paths: example: 6 commits: type: array - items: *414 + items: *435 files: type: array - items: *429 + items: *450 required: - url - html_url @@ -62821,8 +62868,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 +63012,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 +63144,7 @@ paths: - size - type - url - - &535 + - &556 title: Content File description: Content File type: object @@ -63298,7 +63345,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 +63414,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 +63437,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 +63531,7 @@ paths: description: Response content: application/json: - schema: &432 + schema: &453 title: File Commit description: File Commit type: object @@ -63636,7 +63683,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *453 examples: example-for-creating-a-file: value: @@ -63690,7 +63737,7 @@ paths: schema: oneOf: - *3 - - &461 + - &482 description: Repository rule violation was detected type: object properties: @@ -63711,7 +63758,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 +63790,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 +63852,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *453 examples: default: value: @@ -63860,8 +63907,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 +64031,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 +64066,8 @@ paths: default: 30 - *40 - *41 - - *163 - *164 + - *165 responses: '200': description: Response @@ -64028,7 +64075,7 @@ paths: application/json: schema: type: array - items: &435 + items: &456 type: object description: A Dependabot alert. properties: @@ -64074,7 +64121,7 @@ paths: - unknown - direct - transitive - security_advisory: *433 + security_advisory: *454 security_vulnerability: *52 url: *56 html_url: *57 @@ -64105,7 +64152,7 @@ paths: nullable: true maxLength: 280 fixed_at: *140 - auto_dismissed_at: *434 + auto_dismissed_at: *455 required: - number - state @@ -64335,9 +64382,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 +64399,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *456 examples: default: value: @@ -64465,9 +64512,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 +64559,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *456 examples: default: value: @@ -64641,8 +64688,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 +64707,7 @@ paths: type: integer secrets: type: array - items: &439 + items: &460 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -64713,16 +64760,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 +64789,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 +64823,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 +64877,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 +64901,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 +65062,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 +65302,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 +65378,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 +65411,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 +65424,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 +65553,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 +65594,9 @@ paths: application/json: schema: type: array - items: *441 + items: *462 examples: - default: *442 + default: *463 headers: Link: *58 x-github: @@ -65615,8 +65662,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 +65744,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *462 examples: simple-example: summary: Simple example @@ -65770,9 +65817,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 +65831,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *462 examples: default: value: @@ -65849,9 +65896,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 +65920,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 +65932,7 @@ paths: application/json: schema: type: array - items: &444 + items: &465 title: Deployment Status description: The status of a deployment. type: object @@ -66046,9 +66093,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 +66170,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 +66228,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 +66241,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *465 examples: - default: *445 + default: *466 '404': *6 x-github: githubCloudOnly: false @@ -66221,8 +66268,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 +66326,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 +66344,7 @@ paths: type: integer environments: type: array - items: &447 + items: &468 title: Environment description: Details of a deployment environment type: object @@ -66349,7 +66396,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 +66433,11 @@ paths: items: type: object properties: - type: *446 + type: *467 reviewer: anyOf: - *4 - - *154 + - *155 required: - id - node_id @@ -66410,7 +66457,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 +66573,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 +66588,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *468 examples: - default: &451 + default: &472 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -66627,9 +66674,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 +66685,7 @@ paths: type: object nullable: true properties: - wait_timer: *449 + wait_timer: *470 prevent_self_review: type: boolean example: false @@ -66655,13 +66702,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 +66728,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 +66754,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 +66781,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 +66801,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 +66858,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 +66906,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 +66950,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 +66965,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *473 examples: - default: *453 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66939,10 +66986,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 +67017,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *473 examples: - default: *453 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66991,10 +67038,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 +67066,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 +67084,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 +67103,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 +67202,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 +67225,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 +67262,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 +67283,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *456 + items: *477 examples: default: value: @@ -67271,10 +67318,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 +67333,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *476 examples: - default: *457 + default: *478 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67309,10 +67356,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 +67385,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 +67405,9 @@ paths: type: integer secrets: type: array - items: *329 + items: *350 examples: - default: *330 + default: *351 headers: Link: *58 x-github: @@ -67385,17 +67432,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 +67464,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 +67497,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 +67557,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 +67585,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 +67605,9 @@ paths: type: integer variables: type: array - items: *333 + items: *354 examples: - default: *334 + default: *355 headers: Link: *58 x-github: @@ -67583,9 +67630,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 +67684,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 +67716,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 +67761,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 +67786,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 +67864,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 +68024,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 +68057,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 + default: *317 '400': *14 '422': *15 '403': *29 @@ -68033,8 +68080,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 +68141,7 @@ paths: schema: oneOf: - *100 - - *461 + - *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68119,8 +68166,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 +68266,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 +68376,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 +68590,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 +68654,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 +68673,7 @@ paths: application/json: schema: type: array - items: &464 + items: &485 title: Git Reference description: Git references within a repository type: object @@ -68701,17 +68748,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 +68787,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 +68817,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 +68845,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 +68876,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *485 examples: - default: *465 + default: *486 '422': *15 '409': *47 x-github: @@ -68849,9 +68896,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 +68953,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 +69021,7 @@ paths: description: Response content: application/json: - schema: &467 + schema: &488 title: Git Tag description: Metadata for a Git tag type: object @@ -69025,7 +69072,7 @@ paths: - sha - type - url - verification: *466 + verification: *487 required: - sha - url @@ -69035,7 +69082,7 @@ paths: - tag - message examples: - default: &468 + default: &489 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -69108,8 +69155,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 +69167,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *488 examples: - default: *468 + default: *489 '404': *6 '409': *47 x-github: @@ -69146,8 +69193,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 +69267,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 +69363,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 +69387,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *490 examples: default-response: summary: Default response @@ -69399,8 +69446,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 +69457,7 @@ paths: application/json: schema: type: array - items: &470 + items: &491 title: Webhook description: Webhooks for repositories. type: object @@ -69464,7 +69511,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 +69585,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 +69638,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *491 examples: - default: &471 + default: &492 value: type: Repository id: 12345678 @@ -69641,17 +69688,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 +69718,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 +69765,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *491 examples: - default: *471 + default: *492 '422': *15 '404': *6 x-github: @@ -69741,9 +69788,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 +69814,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 +69843,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 +69889,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 +69901,9 @@ paths: application/json: schema: type: array - items: *174 + items: *175 examples: - default: *175 + default: *176 '400': *14 '422': *15 x-github: @@ -69875,18 +69922,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 +69952,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 +69977,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 +70004,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 +70064,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 +70170,7 @@ paths: - html_url - authors_url examples: - default: &475 + default: &496 value: vcs: subversion use_lfs: true @@ -70139,7 +70186,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 +70215,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 +70264,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *493 examples: default: value: @@ -70242,7 +70289,7 @@ paths: type: string '422': *15 '404': *6 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70270,8 +70317,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 +70367,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *493 examples: example-1: summary: Example 1 @@ -70368,7 +70415,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 +70438,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 +70469,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 +70485,7 @@ paths: application/json: schema: type: array - items: &474 + items: &495 title: Porter Author description: Porter Author type: object @@ -70492,7 +70539,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 +70564,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 +70595,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *495 examples: default: value: @@ -70561,7 +70608,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 +70632,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 +70674,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70655,8 +70702,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 +70730,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 +70757,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 +70766,8 @@ paths: application/json: schema: *22 examples: - default: *476 - '301': *295 + default: *497 + '301': *316 '404': *6 x-github: githubCloudOnly: false @@ -70740,8 +70787,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 +70796,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 +70826,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 +70844,9 @@ paths: description: Response content: application/json: - schema: *190 + schema: *191 examples: - default: *478 + default: *499 '409': description: Response x-github: @@ -70821,8 +70868,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 +70892,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 +70903,9 @@ paths: application/json: schema: type: array - items: *479 + items: *500 examples: - default: &648 + default: &650 value: - id: 1 repository: @@ -70989,9 +71036,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 +71067,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *500 examples: default: value: @@ -71151,9 +71198,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 +71231,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 +71280,7 @@ paths: required: false schema: type: string - - *198 + - *199 - name: sort description: What to sort results by. in: query @@ -71258,7 +71305,7 @@ paths: type: array items: *77 examples: - default: &490 + default: &511 value: - id: 1 node_id: MDU6SXNzdWUx @@ -71406,7 +71453,7 @@ paths: state_reason: completed headers: Link: *58 - '301': *295 + '301': *316 '422': *15 '404': *6 x-github: @@ -71435,8 +71482,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 +71567,7 @@ paths: application/json: schema: *77 examples: - default: &485 + default: &506 value: id: 1 node_id: MDU6SXNzdWUx @@ -71676,7 +71723,7 @@ paths: '422': *15 '503': *65 '404': *6 - '410': *292 + '410': *313 x-github: triggersNotification: true githubCloudOnly: false @@ -71704,8 +71751,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 +71773,9 @@ paths: application/json: schema: type: array - items: *480 + items: *501 examples: - default: &487 + default: &508 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71786,17 +71833,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 +71897,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 +71921,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *501 examples: - default: *481 + default: *502 '422': *15 x-github: githubCloudOnly: false @@ -71894,8 +71941,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 +71963,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 +71991,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -71967,8 +72014,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 +72048,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 +72079,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 +72102,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 +72113,7 @@ paths: application/json: schema: type: array - items: &484 + items: &505 title: Issue Event description: Issue Event type: object @@ -72109,8 +72156,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 +72201,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 +72464,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 +72476,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *505 examples: default: value: @@ -72622,7 +72669,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *292 + '410': *313 '403': *29 x-github: githubCloudOnly: false @@ -72656,9 +72703,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 +72719,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 +72747,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 +72855,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 +72879,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 +72909,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72878,9 +72925,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 +72954,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72929,9 +72976,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 +73018,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 +73031,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 +73066,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 +73090,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 +73119,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 +73135,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 +73189,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &492 + - &513 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -73278,7 +73325,7 @@ paths: - performed_via_github_app - assignee - assigner - - &493 + - &514 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -73329,7 +73376,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &494 + - &515 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -73380,7 +73427,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &495 + - &516 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -73434,7 +73481,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 +73515,7 @@ paths: properties: *61 required: *62 review_requester: *4 - requested_team: *154 + requested_team: *155 requested_reviewer: *4 required: - review_requester @@ -73481,7 +73528,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 +73562,7 @@ paths: properties: *61 required: *62 review_requester: *4 - requested_team: *154 + requested_team: *155 requested_reviewer: *4 required: - review_requester @@ -73528,7 +73575,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 +73635,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &499 + - &520 title: Locked Issue Event description: Locked Issue Event type: object @@ -73636,7 +73683,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 +73749,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 +73815,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 +73881,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 +73972,7 @@ paths: color: red headers: Link: *58 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73942,9 +73989,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 +74001,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 +74048,7 @@ paths: - color - default examples: - default: &489 + default: &510 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -74019,9 +74066,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 +74085,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 +74146,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 +74168,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 +74230,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 +74252,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 +74279,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 +74294,7 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: default: value: @@ -74258,9 +74305,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 +74327,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 +74357,7 @@ paths: '204': description: Response '403': *29 - '410': *292 + '410': *313 '404': *6 '422': *15 x-github: @@ -74328,9 +74375,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 +74399,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 +74427,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 +74451,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 +74485,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 +74516,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 +74548,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 +74574,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 @@ -74560,9 +74607,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 +74621,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 +74653,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 +74684,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 +74711,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 +74746,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 '403': *29 '404': *6 '422': *7 @@ -74721,9 +74768,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 +74785,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 +75102,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 +75311,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 +75600,7 @@ paths: headers: Link: *58 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75570,8 +75617,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 +75628,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 +75693,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 +75730,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 +75766,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 +75780,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *525 examples: - default: *505 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -75753,9 +75800,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 +75822,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 +75833,9 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 + default: *510 headers: Link: *58 '404': *6 @@ -75809,8 +75856,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 +75893,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: - default: &507 + default: &528 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -75880,8 +75927,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 +75939,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: - default: *507 + default: *528 '404': *6 x-github: githubCloudOnly: false @@ -75911,8 +75958,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 +75998,7 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: default: value: @@ -75977,8 +76024,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 +76051,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 +76091,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 +76238,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 +76304,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 +76339,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 +76366,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 +76408,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 +76469,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 +76510,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 +76571,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 +76585,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *530 examples: - default: *510 + default: *531 '404': *6 x-github: githubCloudOnly: false @@ -76557,9 +76604,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 +76644,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *530 examples: - default: *510 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76615,9 +76662,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 +76685,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 +76697,9 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 + default: *510 headers: Link: *58 x-github: @@ -76671,12 +76718,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 +76735,7 @@ paths: type: array items: *90 examples: - default: *515 + default: *536 headers: Link: *58 x-github: @@ -76712,8 +76759,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 +76818,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 +76950,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 +76991,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 +77046,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *537 examples: - default: *517 + default: *538 '422': *15 '409': *47 x-github: @@ -77024,8 +77071,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 +77171,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 +77198,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 +77209,7 @@ paths: application/json: schema: type: array - items: &518 + items: &539 title: Page Build description: Page Build type: object @@ -77256,8 +77303,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 +77349,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 +77406,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 +77418,9 @@ paths: description: Response content: application/json: - schema: *518 + schema: *539 examples: - default: *519 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77393,8 +77440,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 +77546,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 +77606,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 +77635,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 +77894,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 +77932,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 +77954,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 +77978,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 +78000,7 @@ paths: application/json: schema: type: array - items: *232 + items: *233 examples: default: value: @@ -77993,7 +78040,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *292 + '410': *313 '422': *7 x-github: githubCloudOnly: false @@ -78016,8 +78063,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 +78090,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 +78119,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 +78128,7 @@ paths: application/json: schema: type: array - items: *237 + items: *238 examples: default: value: @@ -78112,8 +78159,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 +78172,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 +78222,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 +78283,9 @@ paths: application/json: schema: type: array - items: *521 + items: *542 examples: - default: *522 + default: *543 headers: Link: *58 '304': *37 @@ -78270,8 +78317,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 +78383,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 +78494,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 +78540,7 @@ paths: nullable: true requested_teams: type: array - items: *261 + items: *282 nullable: true head: type: object @@ -78532,14 +78579,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 +78597,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 +78689,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 +79216,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 +79246,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 +79325,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 +79410,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 +79434,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: - default: *525 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79405,8 +79452,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 +79475,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 +79503,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -79479,8 +79526,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 +79560,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 +79591,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 +79637,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 +79652,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 +79689,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 +79733,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *547 examples: - default: *527 + default: *548 '422': *15 '403': *29 x-github: @@ -79710,9 +79757,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 +79819,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 +79859,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 +79882,9 @@ paths: application/json: schema: type: array - items: *524 + items: *545 examples: - default: *529 + default: *550 headers: Link: *58 x-github: @@ -79870,9 +79917,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 +80024,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: example-for-a-multi-line-comment: value: @@ -80065,9 +80112,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 +80137,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: default: value: @@ -80176,9 +80223,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 +80235,9 @@ paths: application/json: schema: type: array - items: *414 + items: *435 examples: - default: *530 + default: *551 headers: Link: *58 x-github: @@ -80220,9 +80267,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 +80279,7 @@ paths: application/json: schema: type: array - items: *429 + items: *450 examples: default: value: @@ -80270,9 +80317,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 +80342,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 +80455,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 +80473,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 required: - users - teams @@ -80485,9 +80532,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 +80571,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *542 examples: default: value: @@ -81060,9 +81107,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 +81143,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *542 examples: default: value: @@ -81601,9 +81648,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 +81660,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 +81811,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 +81899,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: &533 + default: &554 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81917,10 +81964,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 +81979,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: &534 + default: &555 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81993,10 +82040,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 +82066,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: default: value: @@ -82081,18 +82128,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 +82166,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 +82252,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 +82404,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 +82435,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: default: value: @@ -82451,10 +82498,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 +82536,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: *534 + default: *555 '404': *6 '422': *7 '403': *29 @@ -82513,9 +82560,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 +82625,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 +82639,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *556 examples: - default: &536 + default: &557 value: type: file encoding: base64 @@ -82636,8 +82683,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 +82704,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *556 examples: - default: *536 + default: *557 '404': *6 '422': *15 x-github: @@ -82681,8 +82728,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 +82739,7 @@ paths: application/json: schema: type: array - items: &537 + items: &558 title: Release description: A release. type: object @@ -82759,7 +82806,7 @@ paths: author: *4 assets: type: array - items: &538 + items: &559 title: Release Asset description: Data related to a release. type: object @@ -82946,8 +82993,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 +83070,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 +83177,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 +83191,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 +83228,7 @@ paths: type: User site_admin: false '404': *6 - '302': *431 + '302': *452 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83197,9 +83244,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 +83274,9 @@ paths: description: Response content: application/json: - schema: *538 + schema: *559 examples: - default: *540 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83245,9 +83292,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 +83318,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 +83404,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 +83430,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 +83444,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *558 examples: - default: *541 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -83421,9 +83468,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 +83484,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 +83504,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 +83570,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 +83593,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 +83615,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 +83627,7 @@ paths: application/json: schema: type: array - items: *538 + items: *559 examples: default: value: @@ -83661,9 +83708,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 +83736,7 @@ paths: description: Response for successful upload content: application/json: - schema: *538 + schema: *559 examples: response-for-successful-upload: value: @@ -83744,9 +83791,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 +83817,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -83793,9 +83840,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 +83872,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 +83903,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 +83930,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 +83948,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 +83969,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 +84066,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 - name: includes_parents @@ -84031,7 +84078,7 @@ paths: schema: type: boolean default: true - - *565 + - *566 responses: '200': description: Response @@ -84039,7 +84086,7 @@ paths: application/json: schema: type: array - items: *247 + items: *267 examples: default: value: @@ -84086,8 +84133,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 requestBody: description: Request body required: true @@ -84107,16 +84154,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 +84194,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 +84243,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 +84256,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *572 examples: - default: *571 + default: *573 '404': *6 '500': *97 x-github: @@ -84232,17 +84279,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 +84317,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84291,9 +84338,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *575 + default: *577 '404': *6 '500': *97 put: @@ -84311,8 +84358,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84337,16 +84384,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 +84421,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *575 + default: *577 '404': *6 '500': *97 delete: @@ -84394,8 +84441,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84418,8 +84465,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 +84482,9 @@ paths: application/json: schema: type: array - items: *249 + items: *270 examples: - default: *576 + default: *578 '404': *6 '500': *97 x-github: @@ -84456,8 +84503,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 +84522,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *579 examples: default: value: @@ -84530,21 +84577,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 +84599,7 @@ paths: application/json: schema: type: array - items: &583 + items: &585 type: object properties: number: *54 @@ -84571,8 +84618,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 +84715,7 @@ paths: pull request. ' - oneOf: *582 + oneOf: *584 nullable: true has_more_locations: type: boolean @@ -84818,16 +84865,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 +84926,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 +84936,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 +84955,7 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: default: value: @@ -84983,9 +85030,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 +85043,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &736 + items: &738 type: object properties: type: @@ -85022,8 +85069,6 @@ paths: example: commit details: oneOf: - - *584 - - *585 - *586 - *587 - *588 @@ -85035,6 +85080,8 @@ paths: - *594 - *595 - *596 + - *597 + - *598 examples: default: value: @@ -85120,8 +85167,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 +85176,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 +85200,7 @@ paths: schema: type: object properties: - reason: *598 + reason: *600 expire_at: type: string format: date-time @@ -85196,8 +85243,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 +85259,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 +85285,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 +85363,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 +85408,9 @@ paths: application/json: schema: type: array - items: *600 + items: *602 examples: - default: *601 + default: *603 '400': *14 '404': *6 x-github: @@ -85386,8 +85433,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 +85507,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 required: - login - type @@ -85547,9 +85594,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 +85829,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 +85934,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *602 examples: default: value: @@ -86034,17 +86081,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 +86115,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 +86190,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 required: - login - type @@ -86229,10 +86276,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 +86317,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 +86346,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 +86382,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 +86482,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 +86492,7 @@ paths: application/json: schema: type: array - items: &604 + items: &606 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -86458,7 +86505,7 @@ paths: - 1124 - -435 '202': *39 - '204': *148 + '204': *149 '422': description: Repository contains more than 10,000 commits x-github: @@ -86478,8 +86525,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 +86575,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86555,8 +86602,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 +86677,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86652,8 +86699,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 +86854,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 +86865,7 @@ paths: application/json: schema: type: array - items: *604 + items: *606 examples: default: value: @@ -86831,7 +86878,7 @@ paths: - - 0 - 2 - 21 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86851,8 +86898,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 +86953,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: default: value: @@ -86960,8 +87007,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 +87020,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -86993,14 +87040,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 +87115,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 +87142,7 @@ paths: description: Response content: application/json: - schema: *606 + schema: *608 examples: default: value: @@ -87122,8 +87169,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 +87190,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 +87270,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 +87279,7 @@ paths: application/json: schema: type: array - items: &607 + items: &609 title: Tag protection description: Tag protection type: object @@ -87284,8 +87331,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 +87355,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: default: value: @@ -87339,8 +87386,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 +87424,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 +87461,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 +87472,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 headers: Link: *58 '404': *6 @@ -87447,8 +87494,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 +87503,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 +87515,7 @@ paths: required: - names examples: - default: &609 + default: &611 value: names: - octocat @@ -87491,8 +87538,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 +87570,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: *609 + default: *611 '404': *6 '422': *7 x-github: @@ -87546,9 +87593,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 +87624,7 @@ paths: example: 128 clones: type: array - items: &611 + items: &613 title: Traffic type: object properties: @@ -87664,8 +87711,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 +87802,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 +87863,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 +87884,7 @@ paths: example: 3782 views: type: array - items: *611 + items: *613 required: - uniques - count @@ -87914,8 +87961,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 +88236,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 +88260,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 +88283,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 +88310,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 +88403,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 +88653,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &612 + text_matches: &614 title: Search Result Text Matches type: array items: @@ -88768,7 +88815,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 +88886,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *349 + properties: *370 nullable: true comment_count: type: integer @@ -88859,7 +88906,7 @@ paths: url: type: string format: uri - verification: *466 + verification: *487 required: - author - committer @@ -88878,7 +88925,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 +88943,7 @@ paths: type: number node_id: type: string - text_matches: *612 + text_matches: *614 required: - sha - node_id @@ -89078,7 +89125,7 @@ paths: - interactions - created - updated - - *613 + - *615 - *17 - *19 - name: advanced_search @@ -89205,8 +89252,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 +89267,7 @@ paths: type: string format: date-time nullable: true - text_matches: *612 + text_matches: *614 pull_request: type: object properties: @@ -89264,7 +89311,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 +89495,7 @@ paths: enum: - created - updated - - *613 + - *615 - *17 - *19 responses: @@ -89492,7 +89539,7 @@ paths: nullable: true score: type: number - text_matches: *612 + text_matches: *614 required: - id - node_id @@ -89577,7 +89624,7 @@ paths: - forks - help-wanted-issues - updated - - *613 + - *615 - *17 - *19 responses: @@ -89816,7 +89863,7 @@ paths: - admin - pull - push - text_matches: *612 + text_matches: *614 temp_clone_token: type: string allow_merge_commit: @@ -90116,7 +90163,7 @@ paths: type: string format: uri nullable: true - text_matches: *612 + text_matches: *614 related: type: array nullable: true @@ -90307,7 +90354,7 @@ paths: - followers - repositories - joined - - *613 + - *615 - *17 - *19 responses: @@ -90411,7 +90458,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *612 + text_matches: *614 blog: type: string nullable: true @@ -90490,7 +90537,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 +90549,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '404': *6 x-github: githubCloudOnly: false @@ -90531,7 +90578,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 +90641,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 +90678,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 +90709,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 +90720,9 @@ paths: application/json: schema: type: array - items: *270 + items: *291 examples: - default: *615 + default: *617 headers: Link: *58 x-github: @@ -90704,7 +90751,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 +90785,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 x-github: triggersNotification: true githubCloudOnly: false @@ -90767,16 +90814,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 +90848,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 +90872,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *616 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90852,8 +90899,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 +90929,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 +90941,9 @@ paths: application/json: schema: type: array - items: *273 + items: *294 examples: - default: *617 + default: *619 headers: Link: *58 x-github: @@ -90925,8 +90972,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 +90995,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *274 + default: *295 x-github: triggersNotification: true githubCloudOnly: false @@ -90977,17 +91024,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 +91059,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 +91083,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *618 + default: *620 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91063,9 +91110,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 +91141,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 +91169,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -91153,9 +91200,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 +91234,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91215,8 +91262,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 +91289,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -91273,8 +91320,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 +91353,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -91332,7 +91379,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 +91389,9 @@ paths: application/json: schema: type: array - items: *192 + items: *193 examples: - default: *193 + default: *194 headers: Link: *58 x-github: @@ -91370,7 +91417,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 +91440,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -91421,7 +91468,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 +91505,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 +91545,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 +91582,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 +91624,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 +91650,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 +91686,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 +91715,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 +91725,9 @@ paths: application/json: schema: type: array - items: *281 + items: *302 examples: - default: *621 + default: *623 headers: Link: *58 '404': *6 @@ -91706,16 +91753,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 +91786,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 +91854,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 +91882,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 +91894,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '404': *6 @@ -91877,15 +91924,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 +92083,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 +92135,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 +92162,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 +92172,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 +92207,7 @@ paths: application/json: schema: oneOf: - - &626 + - &628 title: Private User description: Private User type: object @@ -92363,7 +92410,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 +92563,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *628 examples: default: value: @@ -92595,7 +92642,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '304': *37 '404': *6 '403': *29 @@ -92719,9 +92766,9 @@ paths: type: integer codespaces: type: array - items: *201 + items: *202 examples: - default: *202 + default: *203 '304': *37 '500': *97 '401': *25 @@ -92860,17 +92907,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 +92961,7 @@ paths: type: integer secrets: type: array - items: &627 + items: &629 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -92954,7 +93001,7 @@ paths: - visibility - selected_repositories_url examples: - default: *406 + default: *427 headers: Link: *58 x-github: @@ -93030,7 +93077,7 @@ paths: description: Response content: application/json: - schema: *627 + schema: *629 examples: default: value: @@ -93176,7 +93223,7 @@ paths: type: array items: *122 examples: - default: *628 + default: *630 '401': *25 '403': *29 '404': *6 @@ -93320,15 +93367,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 +93401,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 +93431,9 @@ paths: description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '401': *25 '403': *29 '404': *6 @@ -93408,7 +93455,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 +93484,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 +93531,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 +93563,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 +93576,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *631 examples: - default: *630 + default: *632 '404': *6 x-github: githubCloudOnly: false @@ -93552,7 +93599,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 +93615,9 @@ paths: type: integer machines: type: array - items: *631 + items: *633 examples: - default: *632 + default: *634 '304': *37 '500': *97 '401': *25 @@ -93599,7 +93646,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 +93696,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 +94476,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 +94516,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 +94554,9 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: &645 + default: &647 value: - id: 197 name: hello_docker @@ -94610,7 +94657,7 @@ paths: application/json: schema: type: array - items: &633 + items: &635 title: Email description: Email type: object @@ -94675,9 +94722,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 +94799,7 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: default: value: @@ -94862,7 +94909,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '304': *37 @@ -94895,7 +94942,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '304': *37 @@ -95008,7 +95055,7 @@ paths: application/json: schema: type: array - items: &634 + items: &636 title: GPG Key description: A unique encryption key type: object @@ -95139,7 +95186,7 @@ paths: - subkeys - revoked examples: - default: &661 + default: &663 value: - id: 3 name: Octocat's GPG Key @@ -95224,9 +95271,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 +95330,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 +95342,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *636 examples: - default: *635 + default: *637 '404': *6 '304': *37 '403': *29 @@ -95320,7 +95367,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 +95558,7 @@ paths: type: array items: *60 examples: - default: *637 + default: *639 headers: Link: *58 '404': *6 @@ -95596,12 +95643,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 +95672,7 @@ paths: required: true content: application/json: - schema: *477 + schema: *498 examples: default: value: @@ -95636,7 +95683,7 @@ paths: description: Response content: application/json: - schema: *190 + schema: *191 examples: default: value: @@ -95717,7 +95764,7 @@ paths: - closed - all default: open - - *198 + - *199 - name: sort description: What to sort results by. in: query @@ -95742,7 +95789,7 @@ paths: type: array items: *77 examples: - default: *199 + default: *200 headers: Link: *58 '404': *6 @@ -95775,7 +95822,7 @@ paths: application/json: schema: type: array - items: &638 + items: &640 title: Key description: Key type: object @@ -95872,9 +95919,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *640 examples: - default: &639 + default: &641 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95907,15 +95954,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 +95985,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 +96018,7 @@ paths: application/json: schema: type: array - items: &640 + items: &642 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -96039,7 +96086,7 @@ paths: - account - plan examples: - default: &641 + default: &643 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -96101,9 +96148,9 @@ paths: application/json: schema: type: array - items: *640 + items: *642 examples: - default: *641 + default: *643 headers: Link: *58 '304': *37 @@ -96143,7 +96190,7 @@ paths: application/json: schema: type: array - items: *206 + items: *207 examples: default: value: @@ -96251,7 +96298,7 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: default: value: @@ -96334,7 +96381,7 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: default: value: @@ -96402,7 +96449,7 @@ paths: application/json: schema: type: array - items: *208 + items: *209 examples: default: value: @@ -96655,7 +96702,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -96835,7 +96882,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 +96895,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -97042,7 +97089,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 +97115,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 +97144,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 +97169,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 +97181,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '404': *6 @@ -97169,9 +97216,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *643 + default: *645 headers: Link: *58 '304': *37 @@ -97213,7 +97260,7 @@ paths: - docker - nuget - container - - *644 + - *646 - *19 - *17 responses: @@ -97223,10 +97270,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 +97293,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 +97415,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 +97446,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 +97479,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 +97500,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -97502,15 +97549,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 +97593,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 +97625,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 +97683,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: default: value: @@ -97708,9 +97755,9 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: - default: *647 + default: *649 headers: Link: *58 '304': *37 @@ -97823,7 +97870,7 @@ paths: type: array items: *60 examples: - default: &654 + default: &656 summary: Default response value: - id: 1296269 @@ -98127,9 +98174,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 +98214,9 @@ paths: application/json: schema: type: array - items: *479 + items: *500 examples: - default: *648 + default: *650 headers: Link: *58 '304': *37 @@ -98192,7 +98239,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 +98262,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 +98295,7 @@ paths: application/json: schema: type: array - items: &649 + items: &651 title: Social account description: Social media account type: object @@ -98263,7 +98310,7 @@ paths: - provider - url examples: - default: &650 + default: &652 value: - provider: twitter url: https://twitter.com/github @@ -98325,9 +98372,9 @@ paths: application/json: schema: type: array - items: *649 + items: *651 examples: - default: *650 + default: *652 '422': *15 '304': *37 '404': *6 @@ -98414,7 +98461,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 +98481,7 @@ paths: - title - created_at examples: - default: &673 + default: &675 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98500,9 +98547,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: &652 + default: &654 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98533,7 +98580,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 +98592,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: *652 + default: *654 '404': *6 '304': *37 '403': *29 @@ -98570,7 +98617,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 +98646,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 +98671,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 +98831,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 +98860,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 +98885,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 +98921,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '304': *37 @@ -98911,7 +98958,7 @@ paths: application/json: schema: type: array - items: *268 + items: *289 examples: default: value: @@ -98997,10 +99044,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 +99082,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 +99142,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *655 + - *657 - *17 responses: '200': @@ -99106,7 +99153,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: example: ; rel="next" @@ -99144,11 +99191,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 +99244,8 @@ paths: required: - subject_digests examples: - default: *658 - withPredicateType: *659 + default: *660 + withPredicateType: *661 responses: '200': description: Response @@ -99251,7 +99298,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 +99500,7 @@ paths: bundle_url: type: string examples: - default: *345 + default: *366 '201': description: Response content: @@ -99492,9 +99539,9 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: *645 + default: *647 '403': *29 '401': *25 x-github: @@ -99777,7 +99824,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -99808,7 +99855,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -99898,9 +99945,9 @@ paths: application/json: schema: type: array - items: *634 + items: *636 examples: - default: *661 + default: *663 headers: Link: *58 x-github: @@ -100004,7 +100051,7 @@ paths: application/json: schema: *22 examples: - default: *476 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100083,9 +100130,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *643 + default: *645 headers: Link: *58 x-github: @@ -100124,7 +100171,7 @@ paths: - docker - nuget - container - - *644 + - *646 - *135 - *19 - *17 @@ -100135,12 +100182,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 +100207,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 +100238,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 +100272,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 +100306,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 +100316,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -100327,16 +100374,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 +100418,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 +100453,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 +100503,7 @@ paths: application/json: schema: type: array - items: *232 + items: *233 examples: default: value: @@ -100739,7 +100786,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -100769,9 +100816,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: - default: *664 + default: *666 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100799,9 +100846,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *667 examples: - default: *666 + default: *668 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100829,9 +100876,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *669 examples: - default: *668 + default: *670 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100852,10 +100899,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 +101001,9 @@ paths: application/json: schema: type: array - items: *649 + items: *651 examples: - default: *650 + default: *652 headers: Link: *58 x-github: @@ -100986,9 +101033,9 @@ paths: application/json: schema: type: array - items: *651 + items: *653 examples: - default: *673 + default: *675 headers: Link: *58 x-github: @@ -101013,7 +101060,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 +101072,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 +101107,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -101188,7 +101235,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 +101293,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 +101312,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 +101372,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 +102061,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 +102212,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 +102291,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 +102518,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 +102705,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 +102793,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 +102846,7 @@ x-webhooks: type: string pull_requests: type: array - items: *362 + items: *383 repository: *122 status: example: completed @@ -102837,7 +102884,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *681 + deployment: *683 details_url: example: https://example.com type: string @@ -102887,7 +102934,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 +102969,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 +103364,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 +103763,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 +104171,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 +105151,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 +105824,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 +106491,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 +106657,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 +106802,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 +106977,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 +107207,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 +107307,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 +107475,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 +107643,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 +107809,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 +107911,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 +108079,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 +108182,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 +108322,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 +108584,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 +108667,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 +108688,7 @@ x-webhooks: enum: - tag - branch - repository: *679 + repository: *681 sender: *4 required: - ref @@ -108723,10 +108770,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 +108858,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 +108937,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 +109017,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 +109097,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 +109185,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 +109280,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 +109368,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 +109456,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 +109542,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 +109628,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 +109715,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 +109801,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 +109882,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 +109920,8 @@ x-webhooks: - verified - created_at - read_only - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -109951,11 +109998,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 +110563,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 +111294,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 +111371,7 @@ x-webhooks: type: string enum: - approved - approver: &688 + approver: &690 type: object properties: avatar_url: @@ -111367,11 +111414,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 +111497,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &690 + workflow_job_run: &692 type: object properties: conclusion: @@ -112181,18 +112228,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 +112943,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 +114848,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 +115533,7 @@ x-webhooks: type: string enum: - answered - answer: &694 + answer: &696 type: object properties: author_association: @@ -115643,7 +115690,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &692 + discussion: &694 title: Discussion description: A Discussion in a repository. type: object @@ -115929,7 +115976,7 @@ x-webhooks: - id labels: type: array - items: *488 + items: *509 required: - repository_url - category @@ -115951,10 +115998,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 +116128,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 +116215,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 +116301,7 @@ x-webhooks: type: string enum: - created - comment: &693 + comment: &695 type: object properties: author_association: @@ -116411,11 +116458,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 +116545,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 +116645,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 +116734,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 +116820,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 +116924,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 +117010,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 +117045,8 @@ x-webhooks: - color - default - description - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117082,11 +117129,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 +117215,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 +117301,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 +117390,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 +117482,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 +117567,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 +117655,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 +117741,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 +117818,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 +118478,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 +118626,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 +118665,7 @@ x-webhooks: - action - sha - html_url - repository: *679 + repository: *681 sender: *4 required: - pages @@ -118694,10 +118741,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 +118770,8 @@ x-webhooks: - name - full_name - private - repository: *679 - requester: *696 + repository: *681 + requester: *698 sender: *4 required: - action @@ -118799,11 +118846,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 +118926,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 +119006,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 +119055,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 +119142,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 +119172,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 +119253,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 +119435,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 +119517,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 +119773,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 +120597,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -120883,8 +120930,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -120964,7 +121011,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 +121176,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 +121996,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -122284,8 +122331,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -122365,7 +122412,7 @@ x-webhooks: type: string enum: - edited - changes: &728 + changes: &730 description: The changes to the comment. type: object properties: @@ -122377,9 +122424,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 +123248,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -123534,8 +123581,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -123617,10 +123664,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 +124485,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -124539,8 +124586,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -124620,8 +124667,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 +125491,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -125680,8 +125727,8 @@ x-webhooks: required: - state - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -125760,8 +125807,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 +126622,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -126675,8 +126722,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -126755,8 +126802,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 +127639,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -127671,7 +127718,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 +127856,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -127909,8 +127956,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 +128772,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -128829,9 +128876,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 +128958,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 +129773,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -129830,9 +129877,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 +129959,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 +130798,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -130832,8 +130879,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -130912,8 +130959,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 +131795,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -131826,9 +131873,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 +132849,7 @@ x-webhooks: required: - login - id - type: *195 + type: *196 required: - id - number @@ -133271,8 +133318,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 +134137,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -134190,8 +134237,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -134271,9 +134318,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 +135132,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -135185,8 +135232,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -135265,8 +135312,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 +136230,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 +137127,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -137648,11 +137695,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 +137779,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 +137865,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &731 + assignee: &733 title: User type: object nullable: true @@ -137888,11 +137935,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 +138018,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 +138103,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 +138943,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -138974,8 +139021,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139055,11 +139102,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 +139185,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 +139270,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 +139352,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 +139466,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 +139552,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 +139637,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 +139718,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -139751,10 +139798,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 +139884,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -139919,10 +139966,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 +140051,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -140085,8 +140132,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 +140215,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 +140297,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 +140404,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 +140508,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 +140591,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 +140673,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 +140753,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 +140943,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 +141024,7 @@ x-webhooks: required: - login - id - team: *706 + team: *708 required: - action - scope @@ -141059,8 +141106,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 +141126,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 +141220,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 +141296,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 +141405,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 +141495,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 +141578,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 +141717,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141750,11 +141797,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 +141911,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 +141995,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 +142078,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 +142161,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 +142244,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 +142353,8 @@ x-webhooks: - role - organization_url - user - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142385,11 +142432,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 +142515,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 +142632,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 +142713,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 +142804,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 +142884,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 +143385,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &713 + items: &715 title: Ruby Gems metadata type: object properties: @@ -143433,7 +143480,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -143509,9 +143556,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 +143911,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *713 + items: *715 source_url: type: string format: uri @@ -143934,7 +143981,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -144111,12 +144158,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 +144240,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 +144386,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 +144466,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 +144546,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 +144625,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 +144734,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 +144766,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 +145012,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 +145134,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -145168,11 +145215,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 +145299,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 +145429,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 +145524,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 +145622,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 +145814,7 @@ x-webhooks: type: string required: - after_id - repository: *679 + repository: *681 sender: *4 required: - action @@ -145847,10 +145894,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 +146021,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -146054,10 +146101,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 +146143,7 @@ x-webhooks: - name - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -146175,18 +146222,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 +146323,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 +146407,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 +146491,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 +146575,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 +146688,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 +146771,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 +146856,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 +147001,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 +147084,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 +147203,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 +147288,7 @@ x-webhooks: type: string enum: - archived - changes: &723 + changes: &725 type: object properties: archived_at: @@ -147255,9 +147302,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 +147438,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 +147522,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 +147605,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 +147713,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 +147731,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 +147754,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *721 - - *722 + - *723 + - *724 required: - field_value - type: object @@ -147724,9 +147771,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 +147868,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 +147953,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 +148038,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 +148121,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 +148250,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 +148388,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 +148461,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 +148541,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 +150830,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -150865,11 +150912,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 +153194,7 @@ x-webhooks: - draft reason: type: string - repository: *679 + repository: *681 sender: *4 required: - action @@ -153229,11 +153276,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 +155558,7 @@ x-webhooks: - draft reason: type: string - repository: *679 + repository: *681 sender: *4 required: - action @@ -155593,13 +155640,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 +155708,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *679 + repository: *681 sender: *4 required: - action @@ -155742,12 +155789,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 +155874,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 +158141,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -158173,11 +158220,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 +160506,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *679 + repository: *681 sender: *4 required: - action @@ -160583,12 +160630,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 +160715,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 +162986,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -163019,11 +163066,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 +165352,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -165386,10 +165433,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 +167716,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -167749,12 +167796,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 +167880,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 +167966,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 +168051,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 +168422,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 +170594,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -170627,7 +170674,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 +170959,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 +173119,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -173152,11 +173199,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 +175364,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -175398,9 +175445,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 +177620,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 +177863,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 +179919,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 +180149,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 +182437,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_reviewer: title: User type: object @@ -182474,12 +182521,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 +184816,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 +185008,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 +187298,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_reviewer: title: User type: object @@ -187336,12 +187383,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 +189664,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 +189845,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 +192022,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 - review: *730 + repository: *681 + review: *732 sender: *4 required: - action @@ -192056,9 +192103,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 +194175,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 + repository: *681 sender: *4 thread: type: object @@ -194511,9 +194558,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 +196616,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 + repository: *681 sender: *4 thread: type: object @@ -196955,10 +197002,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 +199276,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -199311,11 +199358,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 +201645,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -201677,11 +201724,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 +204001,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -204035,10 +204082,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 +206350,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -206503,7 +206550,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 +206642,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 +207218,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 +207666,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *713 + items: *715 summary: type: string tag_name: @@ -207673,7 +207720,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -207751,9 +207798,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 +208108,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *713 + items: *715 summary: type: string tag_name: @@ -208110,7 +208157,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -208187,10 +208234,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 +208550,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *679 + repository: *681 sender: *4 required: - action @@ -208580,11 +208627,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 +208748,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 +208830,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 +209149,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *679 + repository: *681 sender: *4 required: - action @@ -209178,10 +209225,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 +209542,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *679 + repository: *681 sender: *4 required: - action @@ -209571,11 +209618,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 +209698,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 +209778,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 +209858,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 +209938,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 +210018,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 +210099,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 +210186,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 +210301,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 +210376,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 +210460,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 +210540,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 +210637,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 +210720,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 +210802,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 +210884,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 +210907,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 +210949,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 +211192,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 +211273,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 +211354,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 +211475,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 +211684,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 +211765,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 +211968,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 +212049,7 @@ x-webhooks: type: string enum: - created - alert: &735 + alert: &737 type: object properties: number: *54 @@ -212113,10 +212160,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 +212244,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 +212486,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 +212568,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 +212650,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 +212732,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 +212862,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 +212943,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 +213130,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 +213207,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 +213394,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 +213476,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 +213782,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 +213875,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 +213957,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 +214041,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &740 + changes: &742 type: object properties: tier: @@ -214038,13 +214085,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 +214168,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 +214248,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 +214334,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 +214757,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 +214880,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 +214972,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 +215064,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 +215156,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 +215235,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 +215430,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 +215890,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -215919,9 +215966,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 +216426,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -216456,9 +216503,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 +216963,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -217060,9 +217107,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 +217567,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - changes @@ -217598,9 +217645,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 +218105,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -218134,10 +218181,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 +218257,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 +218348,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 +218588,7 @@ x-webhooks: type: string required: - conclusion - deployment: *441 + deployment: *462 required: - action - repository @@ -218620,10 +218667,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 +218930,7 @@ x-webhooks: required: - status - steps - deployment: *441 + deployment: *462 required: - action - repository @@ -218962,10 +219009,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 +219147,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *441 + deployment: *462 required: - action - repository @@ -219179,10 +219226,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 +219365,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *441 + deployment: *462 required: - action - repository @@ -219398,12 +219445,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 +220449,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 +221438,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..4f1ad314e5 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", @@ -130726,83 +130861,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 +135310,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 +235419,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", 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..b86f5efc3d 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 @@ -33022,7 +33045,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 +33141,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 @@ -33279,7 +33302,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 +33475,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: default: value: @@ -33490,7 +33513,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &292 + '410': &313 description: Gone content: application/json: @@ -33525,7 +33548,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 +33614,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 +33673,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 +33703,9 @@ paths: application/json: schema: type: array - items: *233 + items: *234 examples: - default: *234 + default: *235 '403': *29 '404': *6 x-github: @@ -33704,7 +33727,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 +33739,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 +33776,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 +33845,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *236 + default: *237 '403': *29 '404': *6 x-github: @@ -33848,9 +33871,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 +33932,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 +34019,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 +34072,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -34188,7 +34211,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -34390,7 +34413,7 @@ paths: description: Response content: application/json: - schema: &294 + schema: &315 title: Full Repository description: Full Repository type: object @@ -34667,8 +34690,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 +34806,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 +34822,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 +34911,7 @@ paths: - network_count - subscribers_count examples: - default: &296 + default: &317 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -35409,7 +35432,7 @@ paths: - *96 - *17 - *19 - - &565 + - &566 name: targets description: | A comma-separated list of rule targets to filter by. @@ -35427,7 +35450,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 +35485,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 +35498,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 +35563,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 +35587,7 @@ paths: match. items: type: string - - &245 + - &246 title: Organization ruleset conditions type: object description: |- @@ -35578,7 +35601,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 +35635,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 +35657,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 +35670,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 +35703,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 +35725,7 @@ paths: type: string enum: - creation - - &544 + - &248 title: update description: Only allow users with bypass permission to update matching refs. @@ -35723,7 +35746,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 +35758,7 @@ paths: type: string enum: - deletion - - &547 + - &250 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -35747,7 +35770,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 +35848,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 +35872,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 +35884,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 +35946,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 +35994,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 +36006,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 +36042,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 +36078,7 @@ paths: required: - operator - pattern - - &556 + - &258 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -36091,7 +36114,7 @@ paths: required: - operator - pattern - - &557 + - &259 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -36127,7 +36150,7 @@ paths: required: - operator - pattern - - &558 + - &260 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -36163,7 +36186,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 +36211,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 +36235,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 +36258,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 +36283,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 +36333,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 +36467,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 +36538,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 +36595,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 +36610,7 @@ paths: in: query schema: type: string - - &567 + - &569 name: time_period description: |- The time period to filter by. @@ -36579,14 +36626,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 +36653,7 @@ paths: description: Response content: application/json: - schema: &570 + schema: &572 title: Rule Suites description: Response type: array @@ -36661,7 +36708,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 +36752,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 +36768,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &575 title: Rule Suite description: Response type: object @@ -36820,7 +36867,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 +36940,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *248 + default: *268 '404': *6 '500': *97 put: @@ -36939,16 +36986,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 +37030,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *248 + default: *268 '404': *6 '500': *97 delete: @@ -37042,7 +37089,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 +37113,7 @@ paths: type: string format: date-time examples: - default: &576 + default: &578 value: - version_id: 3 actor: @@ -37119,9 +37166,9 @@ paths: description: Response content: application/json: - schema: &577 + schema: &579 allOf: - - *249 + - *270 - type: object required: - state @@ -37191,14 +37238,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 +37255,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 +37265,10 @@ paths: required: false schema: type: string - - *254 - - *255 - - *256 - - *257 + - *275 + - *276 + - *277 + - *278 responses: '200': description: Response @@ -37229,9 +37276,9 @@ paths: application/json: schema: type: array - items: *258 + items: *279 examples: - default: *259 + default: *280 headers: Link: *58 '404': *6 @@ -37301,7 +37348,7 @@ paths: application/json: schema: type: array - items: &600 + items: &602 description: A repository security advisory. type: object properties: @@ -37521,7 +37568,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 credits_detailed: type: array nullable: true @@ -37531,7 +37578,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 +37602,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 +37639,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 +38026,9 @@ paths: application/json: schema: type: array - items: *261 + items: *282 examples: - default: *215 + default: *216 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38005,7 +38052,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 +38078,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 +38113,7 @@ paths: description: Response content: application/json: - schema: &663 + schema: &665 type: object properties: total_minutes_used: @@ -38136,7 +38183,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &664 + default: &666 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -38172,7 +38219,7 @@ paths: description: Response content: application/json: - schema: &665 + schema: &667 type: object properties: total_gigabytes_bandwidth_used: @@ -38190,7 +38237,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 +38269,7 @@ paths: description: Response content: application/json: - schema: &667 + schema: &669 type: object properties: days_left_in_billing_cycle: @@ -38240,7 +38287,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 +38329,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 +38449,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 +38480,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 +38492,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *283 examples: - default: *263 + default: *284 headers: Link: *58 x-github: @@ -38469,7 +38516,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 +38555,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *283 examples: - default: *263 + default: *284 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -38530,7 +38577,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 +38685,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 +38717,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 +38751,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 headers: Link: *58 '403': *29 @@ -38800,7 +38847,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 +38910,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 +39157,7 @@ paths: - repos_count - organization examples: - default: &269 + default: &290 value: id: 1 node_id: MDQ6VGVhbTE= @@ -39181,15 +39228,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 +39258,7 @@ paths: url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - *96 - - *210 + - *211 requestBody: required: false content: @@ -39273,16 +39320,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 +39355,7 @@ paths: url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - *96 - - *210 + - *211 responses: '204': description: Response @@ -39335,7 +39382,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#list-discussions parameters: - *96 - - *210 + - *211 - *48 - *17 - *19 @@ -39352,7 +39399,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 +39498,7 @@ paths: - updated_at - url examples: - default: &615 + default: &617 value: - author: login: octocat @@ -39526,7 +39573,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#create-a-discussion parameters: - *96 - - *210 + - *211 requestBody: required: true content: @@ -39560,9 +39607,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: &271 + default: &292 value: author: login: octocat @@ -39635,8 +39682,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 +39695,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39673,8 +39720,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 +39744,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: &616 + default: &618 value: author: login: octocat @@ -39770,8 +39817,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 +39845,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 +39857,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 +39929,7 @@ paths: - updated_at - url examples: - default: &617 + default: &619 value: - author: login: octocat @@ -39951,8 +39998,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 +40021,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: &274 + default: &295 value: author: login: octocat @@ -40043,9 +40090,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 +40104,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *274 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40082,9 +40129,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 +40153,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: &618 + default: &620 value: author: login: octocat @@ -40173,9 +40220,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 +40249,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 +40277,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 +40320,7 @@ paths: - content - created_at examples: - default: &278 + default: &299 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -40324,9 +40371,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 +40406,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 +40437,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -40416,10 +40463,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 +40499,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 +40526,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -40508,8 +40555,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 +40588,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 +40621,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 +40648,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -40611,9 +40658,9 @@ paths: application/json: schema: type: array - items: *192 + items: *193 examples: - default: *193 + default: *194 headers: Link: *58 x-github: @@ -40636,7 +40683,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 +40706,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -40690,14 +40737,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 +40771,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 +40808,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 +40834,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 +40872,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 +40899,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-projects parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -40862,7 +40909,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 +40977,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 +41041,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 +41054,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 +41119,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 +41187,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 +41216,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -41181,7 +41228,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -41211,15 +41258,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 +41836,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 +41884,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 +41911,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - *96 - - *210 + - *211 - *17 - *19 responses: @@ -41874,9 +41921,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 +42050,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 +42062,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 +42129,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 +42185,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 +42212,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 '304': *37 '403': *29 '401': *25 @@ -42194,7 +42241,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 +42285,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 +42396,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 +42408,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 +42454,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 +42489,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 +42513,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *310 examples: - default: *290 + default: *311 '304': *37 '403': *29 '401': *25 @@ -42493,7 +42540,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 +42569,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 +42590,7 @@ paths: application/json: schema: type: array - items: *286 + items: *307 examples: default: value: @@ -42602,7 +42649,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 +42689,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *307 examples: - default: *287 + default: *308 '304': *37 '403': *29 '401': *25 @@ -42700,7 +42747,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 +42807,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 +42872,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 +42918,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 +42941,7 @@ paths: items: type: string '401': *25 - '410': *292 + '410': *313 '422': *7 x-github: githubCloudOnly: false @@ -42917,7 +42964,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 +42985,7 @@ paths: items: type: string '401': *25 - '410': *292 + '410': *313 '404': *6 x-github: githubCloudOnly: false @@ -42962,7 +43009,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 +43036,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -43019,7 +43066,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 +43119,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 +43151,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 +43225,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 +43235,7 @@ paths: application/json: schema: type: array - items: *289 + items: *310 examples: default: value: @@ -43226,7 +43273,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 +43296,7 @@ paths: description: Response content: application/json: - schema: *289 + schema: *310 examples: default: value: @@ -43314,7 +43361,7 @@ paths: resources: type: object properties: - core: &293 + core: &314 title: Rate Limit type: object properties: @@ -43331,21 +43378,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 +43496,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 +44004,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *295 + '301': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43975,8 +44022,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 +44270,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 +44302,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 +44325,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 +44349,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 +44376,7 @@ paths: type: integer artifacts: type: array - items: &298 + items: &319 title: Artifact description: An artifact type: object @@ -44407,7 +44454,7 @@ paths: - expires_at - updated_at examples: - default: &324 + default: &345 value: total_count: 2 artifacts: @@ -44468,9 +44515,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 +44529,7 @@ paths: description: Response content: application/json: - schema: *298 + schema: *319 examples: default: value: @@ -44520,9 +44567,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 +44593,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 +44609,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 +44632,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 +44665,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 +44703,7 @@ paths: description: Response content: application/json: - schema: &302 + schema: &323 title: Repository actions caches description: Repository actions caches type: object @@ -44698,7 +44745,7 @@ paths: - total_count - actions_caches examples: - default: &303 + default: &324 value: total_count: 1 actions_caches: @@ -44730,23 +44777,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 +44813,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 +44845,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 +44859,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 +45166,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 +45196,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 +45243,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 +45294,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 +45358,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 +45377,7 @@ paths: type: integer secrets: type: array - items: &329 + items: &350 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -45350,7 +45397,7 @@ paths: - created_at - updated_at examples: - default: &330 + default: &351 value: total_count: 2 secrets: @@ -45383,9 +45430,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 +45449,7 @@ paths: type: integer variables: type: array - items: &333 + items: &354 title: Actions Variable type: object properties: @@ -45432,7 +45479,7 @@ paths: - created_at - updated_at examples: - default: &334 + default: &355 value: total_count: 2 variables: @@ -45465,8 +45512,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 +45522,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 +45553,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 +45565,7 @@ paths: schema: type: object properties: - enabled: *307 + enabled: *328 allowed_actions: *111 required: - enabled @@ -45548,14 +45595,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 +45619,7 @@ paths: required: - access_level examples: - default: &309 + default: &330 value: access_level: organization x-github: @@ -45596,15 +45643,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 +45675,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 +45703,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 +45736,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 +45766,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 +45778,7 @@ paths: required: true content: application/json: - schema: *311 + schema: *332 examples: default: *117 x-github: @@ -45760,8 +45807,8 @@ paths: in: query schema: type: string - - *283 - - *284 + - *304 + - *305 - *17 - *19 responses: @@ -45805,8 +45852,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 +45861,9 @@ paths: application/json: schema: type: array - items: *312 + items: *333 examples: - default: *313 + default: *334 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45838,8 +45885,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 +45929,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *314 + '201': *335 '404': *6 '422': *7 '409': *47 @@ -45913,8 +45960,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 +45969,7 @@ paths: application/json: schema: *126 examples: - default: *315 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45950,8 +45997,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 +46006,7 @@ paths: application/json: schema: *126 examples: - default: *316 + default: *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45981,8 +46028,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 +46038,7 @@ paths: application/json: schema: *124 examples: - default: *317 + default: *338 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46012,8 +46059,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 +46087,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 +46113,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 +46163,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 +46214,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 +46245,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 +46276,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 +46286,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 +46294,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 +46303,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 +46330,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 +46339,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 +46348,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 +46377,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 +46472,7 @@ paths: that triggered the run. type: array nullable: true - items: &362 + items: &383 title: Pull Request Minimal type: object properties: @@ -46544,7 +46591,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &366 + properties: &387 id: type: string description: SHA for the commit @@ -46595,7 +46642,7 @@ paths: - name - email nullable: true - required: &367 + required: &388 - id - tree_id - message @@ -46642,7 +46689,7 @@ paths: - workflow_url - pull_requests examples: - default: &344 + default: &365 value: total_count: 1 workflow_runs: @@ -46878,24 +46925,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 +47183,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 +47208,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 +47329,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 +47364,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 +47385,9 @@ paths: type: integer artifacts: type: array - items: *298 + items: *319 examples: - default: *324 + default: *345 headers: Link: *58 x-github: @@ -47364,25 +47411,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 +47452,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 +47473,9 @@ paths: type: integer jobs: type: array - items: *327 + items: *348 examples: - default: &328 + default: &349 value: total_count: 1 jobs: @@ -47541,10 +47588,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 +47619,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 +47654,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 +47723,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 +47758,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 +47790,9 @@ paths: type: integer jobs: type: array - items: *327 + items: *348 examples: - default: *328 + default: *349 headers: Link: *58 x-github: @@ -47770,9 +47817,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 +47846,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 +47875,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 +47937,7 @@ paths: items: type: object properties: - type: &446 + type: &467 type: string description: The type of reviewer. enum: @@ -47900,7 +47947,7 @@ paths: reviewer: anyOf: - *4 - - *154 + - *155 required: - environment - wait_timer @@ -47975,9 +48022,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 +48071,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 +48177,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 +48233,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 +48279,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 +48334,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 +48473,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 +48492,9 @@ paths: type: integer secrets: type: array - items: *329 + items: *350 examples: - default: *330 + default: *351 headers: Link: *58 x-github: @@ -48472,16 +48519,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 +48550,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 +48586,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 +48645,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 +48672,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 +48691,9 @@ paths: type: integer variables: type: array - items: *333 + items: *354 examples: - default: *334 + default: *355 headers: Link: *58 x-github: @@ -48669,8 +48716,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 +48769,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 +48805,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 +48849,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 +48876,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 +48895,7 @@ paths: type: integer workflows: type: array - items: &335 + items: &356 title: Workflow description: A GitHub Actions workflow type: object @@ -48955,9 +49002,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 +49019,7 @@ paths: description: Response content: application/json: - schema: *335 + schema: *356 examples: default: value: @@ -49005,9 +49052,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 +49079,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 +49132,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 +49161,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 +49189,9 @@ paths: type: integer workflow_runs: type: array - items: *321 + items: *342 examples: - default: *344 + default: *365 headers: Link: *58 x-github: @@ -49176,9 +49223,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 +49286,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 +49451,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 +49464,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -49442,8 +49489,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 +49526,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 +49639,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 +49694,7 @@ paths: bundle_url: type: string examples: - default: *345 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49667,8 +49714,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 +49723,7 @@ paths: application/json: schema: type: array - items: &346 + items: &367 title: Autolink reference description: An autolink reference. type: object @@ -49726,8 +49773,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 +49813,9 @@ paths: description: response content: application/json: - schema: *346 + schema: *367 examples: - default: &347 + default: &368 value: id: 1 key_prefix: TICKET- @@ -49799,9 +49846,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 +49860,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *367 examples: - default: *347 + default: *368 '404': *6 x-github: githubCloudOnly: false @@ -49835,9 +49882,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 +49908,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 +49957,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 +49979,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 +50000,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 +50039,7 @@ paths: - url protected: type: boolean - protection: &350 + protection: &371 title: Branch Protection description: Branch Protection type: object @@ -50034,7 +50081,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 +50096,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 +50117,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 +50146,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 +50172,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 +50479,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 +50495,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 +50536,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 +50551,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 +50572,7 @@ paths: required: - sha - url - verification: &466 + verification: &487 title: Verification type: object properties: @@ -50595,7 +50642,7 @@ paths: type: integer files: type: array - items: &429 + items: &450 title: Diff Entry description: Diff Entry type: object @@ -50678,7 +50725,7 @@ paths: - self protected: type: boolean - protection: *350 + protection: *371 protection_url: type: string format: uri @@ -50785,7 +50832,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 +50854,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 +51056,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 +51313,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 +51389,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 apps: type: array items: *5 @@ -51360,7 +51407,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 apps: type: array items: *5 @@ -51418,7 +51465,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *352 + restrictions: *373 required_conversation_resolution: type: object properties: @@ -51530,9 +51577,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 +51604,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 +51636,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 +51665,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 +51692,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 +51798,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 +51898,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *376 examples: - default: *356 + default: *377 '422': *15 x-github: githubCloudOnly: false @@ -51874,9 +51921,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 +51950,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 +51983,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 +52013,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 +52040,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 +52076,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 +52130,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *379 examples: - default: *359 + default: *380 '404': *6 '422': *15 x-github: @@ -52107,9 +52154,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 +52180,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 +52216,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 +52285,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 +52351,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 +52419,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 +52518,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 +52543,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 +52555,7 @@ paths: type: array items: *5 examples: - default: &360 + default: &381 value: - id: 1 slug: octoapp @@ -52565,9 +52612,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 +52648,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52622,9 +52669,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 +52705,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52679,9 +52726,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 +52762,7 @@ paths: type: array items: *5 examples: - default: *360 + default: *381 '422': *15 x-github: githubCloudOnly: false @@ -52737,9 +52784,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 +52794,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '404': *6 x-github: githubCloudOnly: false @@ -52769,9 +52816,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 +52854,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52830,9 +52877,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 +52915,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52891,9 +52938,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 +52975,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 '422': *15 x-github: githubCloudOnly: false @@ -52952,9 +52999,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 +53011,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '404': *6 x-github: githubCloudOnly: false @@ -52988,9 +53035,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 +53070,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53048,9 +53095,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 +53130,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53108,9 +53155,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 +53190,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '422': *15 x-github: githubCloudOnly: false @@ -53170,9 +53217,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 +53241,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *382 examples: default: value: @@ -53310,8 +53357,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 +53637,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 +53756,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 +54037,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 +54051,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *384 examples: - default: &365 + default: &386 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -54106,9 +54153,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 +54395,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *384 examples: - default: *365 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54370,9 +54417,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 +54514,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 +54560,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 +54583,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 +54647,7 @@ paths: nullable: true pull_requests: type: array - items: *362 + items: *383 nullable: true app: title: GitHub app @@ -54622,12 +54669,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 +54702,7 @@ paths: - check_runs_url - pull_requests examples: - default: &369 + default: &390 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -54946,9 +54993,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 +55014,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 +55324,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 +55338,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *389 examples: - default: *369 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55316,17 +55363,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 +55412,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 +55516,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 +55551,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 +55590,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 +55612,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 +55623,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 +55750,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 +55777,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 +55793,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &405 type: object properties: number: *54 @@ -55754,7 +55801,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 +55812,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 +55867,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 +55964,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 +55984,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 +56001,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 +56021,7 @@ paths: description: Response content: application/json: - schema: *384 + schema: *405 examples: default: value: @@ -56050,7 +56097,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 +56124,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 +56158,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 +56175,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 +56200,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 +56254,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 +56301,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 +56326,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 +56340,7 @@ paths: application/json: schema: type: array - items: *381 + items: *402 examples: default: value: @@ -56332,7 +56379,7 @@ paths: end_column: 50 classifications: - source - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56366,25 +56413,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 +56452,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 +56492,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 +56554,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *382 + '403': *403 '404': *6 '503': *65 x-github: @@ -56543,8 +56590,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 +56604,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *415 examples: response: summary: application/json response @@ -56611,7 +56658,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 +56745,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 +56799,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 +56821,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 +56830,7 @@ paths: application/json: schema: type: array - items: &395 + items: &416 title: CodeQL Database description: A CodeQL database. type: object @@ -56894,7 +56941,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 +56970,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 +56983,7 @@ paths: description: Response content: application/json: - schema: *395 + schema: *416 examples: default: value: @@ -56968,9 +57015,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 +57039,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 +57050,7 @@ paths: responses: '204': description: Response - '403': *388 + '403': *409 '404': *6 '503': *65 x-github: @@ -57031,8 +57078,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 +57088,7 @@ paths: type: object additionalProperties: false properties: - language: &396 + language: &417 type: string description: The language targeted by the CodeQL query enum: @@ -57120,7 +57167,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 +57177,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 +57224,7 @@ paths: items: type: object properties: - repository: &397 + repository: &418 title: Repository Identifier description: Repository Identifier type: object @@ -57213,7 +57260,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 +57292,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 +57306,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 +57328,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 +57345,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 +57497,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 +57528,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 +57541,9 @@ paths: description: Response content: application/json: - schema: *400 + schema: *421 examples: - default: *399 + default: *420 '404': *6 '503': *65 x-github: @@ -57519,7 +57566,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 +57601,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 +57726,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 +57812,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 +57833,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 +57926,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 +57997,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 +58006,7 @@ paths: schema: type: object properties: - commit_sha: *402 + commit_sha: *423 ref: type: string description: |- @@ -58017,7 +58064,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 +58078,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 +58101,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 +58148,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 +58173,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 +58230,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 +58255,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 +58376,8 @@ paths: parameters: - *17 - *19 - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -58346,7 +58393,7 @@ paths: type: integer codespaces: type: array - items: *201 + items: *202 examples: default: value: @@ -58644,8 +58691,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 +58755,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 +58794,8 @@ paths: parameters: - *17 - *19 - - *283 - - *284 + - *304 + - *305 responses: '200': description: Response @@ -58812,8 +58859,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 +58895,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 +58942,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 +59027,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 +59094,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 +59113,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 +59133,7 @@ paths: - created_at - updated_at examples: - default: *406 + default: *427 headers: Link: *58 x-github: @@ -59109,16 +59156,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 +59185,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 +59215,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 +59269,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 +59299,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 +59342,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &411 + properties: &432 login: type: string example: octocat @@ -59388,7 +59435,7 @@ paths: user_view_type: type: string example: public - required: &412 + required: &433 - avatar_url - events_url - followers_url @@ -59462,8 +59509,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 +59557,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 +59585,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 +59814,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 +59847,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 +59869,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *411 - required: *412 + properties: *432 + required: *433 nullable: true required: - permission @@ -59878,8 +59925,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 +59936,7 @@ paths: application/json: schema: type: array - items: &413 + items: &434 title: Commit Comment description: Commit Comment type: object @@ -59947,7 +59994,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 +60053,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 +60120,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 +60144,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *434 examples: default: value: @@ -60148,8 +60195,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 +60218,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 +60246,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -60222,8 +60269,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 +60303,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 +60334,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 +60386,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 +60443,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 +60539,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 +60613,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 +60625,9 @@ paths: application/json: schema: type: array - items: *413 + items: *434 examples: - default: *416 + default: *437 headers: Link: *58 x-github: @@ -60608,9 +60655,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 +60692,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 +60722,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 +60734,7 @@ paths: application/json: schema: type: array - items: &521 + items: &542 title: Pull Request Simple description: Pull Request Simple type: object @@ -60793,8 +60840,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 +60886,7 @@ paths: nullable: true requested_teams: type: array - items: *154 + items: *155 nullable: true head: type: object @@ -60890,7 +60937,7 @@ paths: _links: type: object properties: - comments: &420 + comments: &441 title: Link description: Hypermedia Link type: object @@ -60899,13 +60946,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 +60963,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 +61026,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 +61563,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 +61582,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 +61697,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 +61735,9 @@ paths: type: integer check_runs: type: array - items: *363 + items: *384 examples: - default: *424 + default: *445 headers: Link: *58 x-github: @@ -61715,9 +61762,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 +61772,7 @@ paths: schema: type: integer example: 1 - - *422 + - *443 - *17 - *19 responses: @@ -61743,7 +61790,7 @@ paths: type: integer check_suites: type: array - items: *368 + items: *389 examples: default: value: @@ -61943,9 +61990,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 +62190,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 +62202,7 @@ paths: application/json: schema: type: array - items: &605 + items: &607 title: Status description: The status of a commit. type: object @@ -62236,7 +62283,7 @@ paths: site_admin: false headers: Link: *58 - '301': *295 + '301': *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62264,8 +62311,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 +62341,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 +62368,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 +62514,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 +62558,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 +62579,10 @@ paths: example: 6 commits: type: array - items: *414 + items: *435 files: type: array - items: *429 + items: *450 required: - url - html_url @@ -62821,8 +62868,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 +63012,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 +63144,7 @@ paths: - size - type - url - - &535 + - &556 title: Content File description: Content File type: object @@ -63298,7 +63345,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 +63414,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 +63437,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 +63531,7 @@ paths: description: Response content: application/json: - schema: &432 + schema: &453 title: File Commit description: File Commit type: object @@ -63636,7 +63683,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *453 examples: example-for-creating-a-file: value: @@ -63690,7 +63737,7 @@ paths: schema: oneOf: - *3 - - &461 + - &482 description: Repository rule violation was detected type: object properties: @@ -63711,7 +63758,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 +63790,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 +63852,7 @@ paths: description: Response content: application/json: - schema: *432 + schema: *453 examples: default: value: @@ -63860,8 +63907,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 +64031,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 +64066,8 @@ paths: default: 30 - *40 - *41 - - *163 - *164 + - *165 responses: '200': description: Response @@ -64028,7 +64075,7 @@ paths: application/json: schema: type: array - items: &435 + items: &456 type: object description: A Dependabot alert. properties: @@ -64074,7 +64121,7 @@ paths: - unknown - direct - transitive - security_advisory: *433 + security_advisory: *454 security_vulnerability: *52 url: *56 html_url: *57 @@ -64105,7 +64152,7 @@ paths: nullable: true maxLength: 280 fixed_at: *140 - auto_dismissed_at: *434 + auto_dismissed_at: *455 required: - number - state @@ -64335,9 +64382,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 +64399,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *456 examples: default: value: @@ -64465,9 +64512,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 +64559,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *456 examples: default: value: @@ -64641,8 +64688,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 +64707,7 @@ paths: type: integer secrets: type: array - items: &439 + items: &460 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -64713,16 +64760,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 +64789,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 +64823,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 +64877,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 +64901,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 +65062,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 +65302,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 +65378,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 +65411,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 +65424,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 +65553,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 +65594,9 @@ paths: application/json: schema: type: array - items: *441 + items: *462 examples: - default: *442 + default: *463 headers: Link: *58 x-github: @@ -65615,8 +65662,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 +65744,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *462 examples: simple-example: summary: Simple example @@ -65770,9 +65817,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 +65831,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *462 examples: default: value: @@ -65849,9 +65896,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 +65920,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 +65932,7 @@ paths: application/json: schema: type: array - items: &444 + items: &465 title: Deployment Status description: The status of a deployment. type: object @@ -66046,9 +66093,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 +66170,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 +66228,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 +66241,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *465 examples: - default: *445 + default: *466 '404': *6 x-github: githubCloudOnly: false @@ -66221,8 +66268,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 +66326,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 +66344,7 @@ paths: type: integer environments: type: array - items: &447 + items: &468 title: Environment description: Details of a deployment environment type: object @@ -66349,7 +66396,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 +66433,11 @@ paths: items: type: object properties: - type: *446 + type: *467 reviewer: anyOf: - *4 - - *154 + - *155 required: - id - node_id @@ -66410,7 +66457,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 +66573,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 +66588,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *468 examples: - default: &451 + default: &472 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -66627,9 +66674,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 +66685,7 @@ paths: type: object nullable: true properties: - wait_timer: *449 + wait_timer: *470 prevent_self_review: type: boolean example: false @@ -66655,13 +66702,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 +66728,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 +66754,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 +66781,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 +66801,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 +66858,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 +66906,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 +66950,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 +66965,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *473 examples: - default: *453 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66939,10 +66986,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 +67017,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *473 examples: - default: *453 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66991,10 +67038,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 +67066,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 +67084,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 +67103,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 +67202,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 +67225,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 +67262,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 +67283,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *456 + items: *477 examples: default: value: @@ -67271,10 +67318,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 +67333,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *476 examples: - default: *457 + default: *478 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67309,10 +67356,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 +67385,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 +67405,9 @@ paths: type: integer secrets: type: array - items: *329 + items: *350 examples: - default: *330 + default: *351 headers: Link: *58 x-github: @@ -67385,17 +67432,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 +67464,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 +67497,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 +67557,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 +67585,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 +67605,9 @@ paths: type: integer variables: type: array - items: *333 + items: *354 examples: - default: *334 + default: *355 headers: Link: *58 x-github: @@ -67583,9 +67630,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 +67684,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 +67716,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 +67761,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 +67786,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 +67864,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 +68024,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 +68057,9 @@ paths: description: Response content: application/json: - schema: *294 + schema: *315 examples: - default: *296 + default: *317 '400': *14 '422': *15 '403': *29 @@ -68033,8 +68080,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 +68141,7 @@ paths: schema: oneOf: - *100 - - *461 + - *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68119,8 +68166,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 +68266,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 +68376,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 +68590,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 +68654,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 +68673,7 @@ paths: application/json: schema: type: array - items: &464 + items: &485 title: Git Reference description: Git references within a repository type: object @@ -68701,17 +68748,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 +68787,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 +68817,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 +68845,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 +68876,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *485 examples: - default: *465 + default: *486 '422': *15 '409': *47 x-github: @@ -68849,9 +68896,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 +68953,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 +69021,7 @@ paths: description: Response content: application/json: - schema: &467 + schema: &488 title: Git Tag description: Metadata for a Git tag type: object @@ -69025,7 +69072,7 @@ paths: - sha - type - url - verification: *466 + verification: *487 required: - sha - url @@ -69035,7 +69082,7 @@ paths: - tag - message examples: - default: &468 + default: &489 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -69108,8 +69155,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 +69167,9 @@ paths: description: Response content: application/json: - schema: *467 + schema: *488 examples: - default: *468 + default: *489 '404': *6 '409': *47 x-github: @@ -69146,8 +69193,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 +69267,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 +69363,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 +69387,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *490 examples: default-response: summary: Default response @@ -69399,8 +69446,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 +69457,7 @@ paths: application/json: schema: type: array - items: &470 + items: &491 title: Webhook description: Webhooks for repositories. type: object @@ -69464,7 +69511,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 +69585,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 +69638,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *491 examples: - default: &471 + default: &492 value: type: Repository id: 12345678 @@ -69641,17 +69688,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 +69718,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 +69765,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *491 examples: - default: *471 + default: *492 '422': *15 '404': *6 x-github: @@ -69741,9 +69788,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 +69814,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 +69843,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 +69889,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 +69901,9 @@ paths: application/json: schema: type: array - items: *174 + items: *175 examples: - default: *175 + default: *176 '400': *14 '422': *15 x-github: @@ -69875,18 +69922,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 +69952,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 +69977,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 +70004,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 +70064,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 +70170,7 @@ paths: - html_url - authors_url examples: - default: &475 + default: &496 value: vcs: subversion use_lfs: true @@ -70139,7 +70186,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 +70215,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 +70264,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *493 examples: default: value: @@ -70242,7 +70289,7 @@ paths: type: string '422': *15 '404': *6 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70270,8 +70317,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 +70367,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *493 examples: example-1: summary: Example 1 @@ -70368,7 +70415,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 +70438,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 +70469,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 +70485,7 @@ paths: application/json: schema: type: array - items: &474 + items: &495 title: Porter Author description: Porter Author type: object @@ -70492,7 +70539,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 +70564,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 +70595,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *495 examples: default: value: @@ -70561,7 +70608,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 +70632,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 +70674,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *473 + '503': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70655,8 +70702,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 +70730,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 +70757,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 +70766,8 @@ paths: application/json: schema: *22 examples: - default: *476 - '301': *295 + default: *497 + '301': *316 '404': *6 x-github: githubCloudOnly: false @@ -70740,8 +70787,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 +70796,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 +70826,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 +70844,9 @@ paths: description: Response content: application/json: - schema: *190 + schema: *191 examples: - default: *478 + default: *499 '409': description: Response x-github: @@ -70821,8 +70868,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 +70892,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 +70903,9 @@ paths: application/json: schema: type: array - items: *479 + items: *500 examples: - default: &648 + default: &650 value: - id: 1 repository: @@ -70989,9 +71036,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 +71067,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *500 examples: default: value: @@ -71151,9 +71198,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 +71231,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 +71280,7 @@ paths: required: false schema: type: string - - *198 + - *199 - name: sort description: What to sort results by. in: query @@ -71258,7 +71305,7 @@ paths: type: array items: *77 examples: - default: &490 + default: &511 value: - id: 1 node_id: MDU6SXNzdWUx @@ -71406,7 +71453,7 @@ paths: state_reason: completed headers: Link: *58 - '301': *295 + '301': *316 '422': *15 '404': *6 x-github: @@ -71435,8 +71482,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 +71567,7 @@ paths: application/json: schema: *77 examples: - default: &485 + default: &506 value: id: 1 node_id: MDU6SXNzdWUx @@ -71676,7 +71723,7 @@ paths: '422': *15 '503': *65 '404': *6 - '410': *292 + '410': *313 x-github: triggersNotification: true githubCloudOnly: false @@ -71704,8 +71751,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 +71773,9 @@ paths: application/json: schema: type: array - items: *480 + items: *501 examples: - default: &487 + default: &508 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71786,17 +71833,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 +71897,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 +71921,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *501 examples: - default: *481 + default: *502 '422': *15 x-github: githubCloudOnly: false @@ -71894,8 +71941,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 +71963,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 +71991,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -71967,8 +72014,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 +72048,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 +72079,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 +72102,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 +72113,7 @@ paths: application/json: schema: type: array - items: &484 + items: &505 title: Issue Event description: Issue Event type: object @@ -72109,8 +72156,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 +72201,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 +72464,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 +72476,7 @@ paths: description: Response content: application/json: - schema: *484 + schema: *505 examples: default: value: @@ -72622,7 +72669,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *292 + '410': *313 '403': *29 x-github: githubCloudOnly: false @@ -72656,9 +72703,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 +72719,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 +72747,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 +72855,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 +72879,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 +72909,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72878,9 +72925,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 +72954,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72929,9 +72976,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 +73018,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 +73031,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 +73066,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 +73090,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 +73119,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 +73135,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 +73189,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &492 + - &513 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -73278,7 +73325,7 @@ paths: - performed_via_github_app - assignee - assigner - - &493 + - &514 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -73329,7 +73376,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &494 + - &515 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -73380,7 +73427,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &495 + - &516 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -73434,7 +73481,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 +73515,7 @@ paths: properties: *61 required: *62 review_requester: *4 - requested_team: *154 + requested_team: *155 requested_reviewer: *4 required: - review_requester @@ -73481,7 +73528,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 +73562,7 @@ paths: properties: *61 required: *62 review_requester: *4 - requested_team: *154 + requested_team: *155 requested_reviewer: *4 required: - review_requester @@ -73528,7 +73575,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 +73635,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &499 + - &520 title: Locked Issue Event description: Locked Issue Event type: object @@ -73636,7 +73683,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 +73749,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 +73815,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 +73881,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 +73972,7 @@ paths: color: red headers: Link: *58 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73942,9 +73989,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 +74001,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 +74048,7 @@ paths: - color - default examples: - default: &489 + default: &510 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -74019,9 +74066,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 +74085,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 +74146,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 +74168,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 +74230,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 +74252,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 +74279,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 +74294,7 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: default: value: @@ -74258,9 +74305,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 +74327,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 +74357,7 @@ paths: '204': description: Response '403': *29 - '410': *292 + '410': *313 '404': *6 '422': *15 x-github: @@ -74328,9 +74375,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 +74399,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 +74427,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 +74451,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 +74485,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 +74516,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 +74548,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 +74574,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 @@ -74560,9 +74607,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 +74621,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 +74653,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 +74684,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 +74711,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 +74746,7 @@ paths: application/json: schema: *77 examples: - default: *485 + default: *506 '403': *29 '404': *6 '422': *7 @@ -74721,9 +74768,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 +74785,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 +75102,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 +75311,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 +75600,7 @@ paths: headers: Link: *58 '404': *6 - '410': *292 + '410': *313 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75570,8 +75617,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 +75628,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 +75693,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 +75730,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 +75766,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 +75780,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *525 examples: - default: *505 + default: *526 '404': *6 x-github: githubCloudOnly: false @@ -75753,9 +75800,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 +75822,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 +75833,9 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 + default: *510 headers: Link: *58 '404': *6 @@ -75809,8 +75856,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 +75893,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: - default: &507 + default: &528 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -75880,8 +75927,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 +75939,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: - default: *507 + default: *528 '404': *6 x-github: githubCloudOnly: false @@ -75911,8 +75958,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 +75998,7 @@ paths: description: Response content: application/json: - schema: *488 + schema: *509 examples: default: value: @@ -75977,8 +76024,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 +76051,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 +76091,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 +76238,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 +76304,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 +76339,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 +76366,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 +76408,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 +76469,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 +76510,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 +76571,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 +76585,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *530 examples: - default: *510 + default: *531 '404': *6 x-github: githubCloudOnly: false @@ -76557,9 +76604,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 +76644,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *530 examples: - default: *510 + default: *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76615,9 +76662,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 +76685,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 +76697,9 @@ paths: application/json: schema: type: array - items: *488 + items: *509 examples: - default: *489 + default: *510 headers: Link: *58 x-github: @@ -76671,12 +76718,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 +76735,7 @@ paths: type: array items: *90 examples: - default: *515 + default: *536 headers: Link: *58 x-github: @@ -76712,8 +76759,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 +76818,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 +76950,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 +76991,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 +77046,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *537 examples: - default: *517 + default: *538 '422': *15 '409': *47 x-github: @@ -77024,8 +77071,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 +77171,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 +77198,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 +77209,7 @@ paths: application/json: schema: type: array - items: &518 + items: &539 title: Page Build description: Page Build type: object @@ -77256,8 +77303,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 +77349,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 +77406,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 +77418,9 @@ paths: description: Response content: application/json: - schema: *518 + schema: *539 examples: - default: *519 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77393,8 +77440,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 +77546,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 +77606,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 +77635,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 +77894,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 +77932,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 +77954,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 +77978,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 +78000,7 @@ paths: application/json: schema: type: array - items: *232 + items: *233 examples: default: value: @@ -77993,7 +78040,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *292 + '410': *313 '422': *7 x-github: githubCloudOnly: false @@ -78016,8 +78063,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 +78090,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 +78119,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 +78128,7 @@ paths: application/json: schema: type: array - items: *237 + items: *238 examples: default: value: @@ -78112,8 +78159,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 +78172,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 +78222,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 +78283,9 @@ paths: application/json: schema: type: array - items: *521 + items: *542 examples: - default: *522 + default: *543 headers: Link: *58 '304': *37 @@ -78270,8 +78317,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 +78383,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 +78494,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 +78540,7 @@ paths: nullable: true requested_teams: type: array - items: *261 + items: *282 nullable: true head: type: object @@ -78532,14 +78579,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 +78597,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 +78689,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 +79216,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 +79246,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 +79325,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 +79410,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 +79434,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: - default: *525 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79405,8 +79452,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 +79475,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 +79503,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -79479,8 +79526,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 +79560,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 +79591,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 +79637,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 +79652,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 +79689,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 +79733,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *547 examples: - default: *527 + default: *548 '422': *15 '403': *29 x-github: @@ -79710,9 +79757,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 +79819,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 +79859,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 +79882,9 @@ paths: application/json: schema: type: array - items: *524 + items: *545 examples: - default: *529 + default: *550 headers: Link: *58 x-github: @@ -79870,9 +79917,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 +80024,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: example-for-a-multi-line-comment: value: @@ -80065,9 +80112,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 +80137,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *545 examples: default: value: @@ -80176,9 +80223,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 +80235,9 @@ paths: application/json: schema: type: array - items: *414 + items: *435 examples: - default: *530 + default: *551 headers: Link: *58 x-github: @@ -80220,9 +80267,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 +80279,7 @@ paths: application/json: schema: type: array - items: *429 + items: *450 examples: default: value: @@ -80270,9 +80317,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 +80342,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 +80455,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 +80473,7 @@ paths: items: *4 teams: type: array - items: *154 + items: *155 required: - users - teams @@ -80485,9 +80532,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 +80571,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *542 examples: default: value: @@ -81060,9 +81107,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 +81143,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *542 examples: default: value: @@ -81601,9 +81648,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 +81660,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 +81811,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 +81899,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: &533 + default: &554 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81917,10 +81964,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 +81979,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: &534 + default: &555 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81993,10 +82040,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 +82066,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: default: value: @@ -82081,18 +82128,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 +82166,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 +82252,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 +82404,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 +82435,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: default: value: @@ -82451,10 +82498,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 +82536,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *552 examples: - default: *534 + default: *555 '404': *6 '422': *7 '403': *29 @@ -82513,9 +82560,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 +82625,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 +82639,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *556 examples: - default: &536 + default: &557 value: type: file encoding: base64 @@ -82636,8 +82683,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 +82704,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *556 examples: - default: *536 + default: *557 '404': *6 '422': *15 x-github: @@ -82681,8 +82728,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 +82739,7 @@ paths: application/json: schema: type: array - items: &537 + items: &558 title: Release description: A release. type: object @@ -82759,7 +82806,7 @@ paths: author: *4 assets: type: array - items: &538 + items: &559 title: Release Asset description: Data related to a release. type: object @@ -82946,8 +82993,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 +83070,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 +83177,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 +83191,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 +83228,7 @@ paths: type: User site_admin: false '404': *6 - '302': *431 + '302': *452 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83197,9 +83244,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 +83274,9 @@ paths: description: Response content: application/json: - schema: *538 + schema: *559 examples: - default: *540 + default: *561 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83245,9 +83292,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 +83318,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 +83404,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 +83430,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 +83444,9 @@ paths: description: Response content: application/json: - schema: *537 + schema: *558 examples: - default: *541 + default: *562 '404': *6 x-github: githubCloudOnly: false @@ -83421,9 +83468,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 +83484,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 +83504,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 +83570,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 +83593,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 +83615,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 +83627,7 @@ paths: application/json: schema: type: array - items: *538 + items: *559 examples: default: value: @@ -83661,9 +83708,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 +83736,7 @@ paths: description: Response for successful upload content: application/json: - schema: *538 + schema: *559 examples: response-for-successful-upload: value: @@ -83744,9 +83791,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 +83817,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 '404': *6 @@ -83793,9 +83840,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 +83872,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 +83903,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 +83930,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 +83948,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 +83969,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 +84066,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - *17 - *19 - name: includes_parents @@ -84031,7 +84078,7 @@ paths: schema: type: boolean default: true - - *565 + - *566 responses: '200': description: Response @@ -84039,7 +84086,7 @@ paths: application/json: schema: type: array - items: *247 + items: *267 examples: default: value: @@ -84086,8 +84133,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 requestBody: description: Request body required: true @@ -84107,16 +84154,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 +84194,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 +84243,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 +84256,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *572 examples: - default: *571 + default: *573 '404': *6 '500': *97 x-github: @@ -84232,17 +84279,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 +84317,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84291,9 +84338,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *575 + default: *577 '404': *6 '500': *97 put: @@ -84311,8 +84358,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84337,16 +84384,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 +84421,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *267 examples: - default: *575 + default: *577 '404': *6 '500': *97 delete: @@ -84394,8 +84441,8 @@ paths: category: repos subcategory: rules parameters: - - *283 - - *284 + - *304 + - *305 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84418,8 +84465,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 +84482,9 @@ paths: application/json: schema: type: array - items: *249 + items: *270 examples: - default: *576 + default: *578 '404': *6 '500': *97 x-github: @@ -84456,8 +84503,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 +84522,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *579 examples: default: value: @@ -84530,21 +84577,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 +84599,7 @@ paths: application/json: schema: type: array - items: &583 + items: &585 type: object properties: number: *54 @@ -84571,8 +84618,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 +84715,7 @@ paths: pull request. ' - oneOf: *582 + oneOf: *584 nullable: true has_more_locations: type: boolean @@ -84818,16 +84865,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 +84926,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 +84936,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 +84955,7 @@ paths: description: Response content: application/json: - schema: *583 + schema: *585 examples: default: value: @@ -84983,9 +85030,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 +85043,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &736 + items: &738 type: object properties: type: @@ -85022,8 +85069,6 @@ paths: example: commit details: oneOf: - - *584 - - *585 - *586 - *587 - *588 @@ -85035,6 +85080,8 @@ paths: - *594 - *595 - *596 + - *597 + - *598 examples: default: value: @@ -85120,8 +85167,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 +85176,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 +85200,7 @@ paths: schema: type: object properties: - reason: *598 + reason: *600 expire_at: type: string format: date-time @@ -85196,8 +85243,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 +85259,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 +85285,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 +85363,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 +85408,9 @@ paths: application/json: schema: type: array - items: *600 + items: *602 examples: - default: *601 + default: *603 '400': *14 '404': *6 x-github: @@ -85386,8 +85433,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 +85507,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 required: - login - type @@ -85547,9 +85594,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 +85829,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 +85934,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *602 examples: default: value: @@ -86034,17 +86081,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 +86115,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 +86190,7 @@ paths: login: type: string description: The username of the user credited. - type: *260 + type: *281 required: - login - type @@ -86229,10 +86276,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 +86317,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 +86346,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 +86382,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 +86482,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 +86492,7 @@ paths: application/json: schema: type: array - items: &604 + items: &606 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -86458,7 +86505,7 @@ paths: - 1124 - -435 '202': *39 - '204': *148 + '204': *149 '422': description: Repository contains more than 10,000 commits x-github: @@ -86478,8 +86525,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 +86575,7 @@ paths: total: 89 week: 1336280400 '202': *39 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86555,8 +86602,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 +86677,7 @@ paths: d: 77 c: 10 '202': *39 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86652,8 +86699,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 +86854,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 +86865,7 @@ paths: application/json: schema: type: array - items: *604 + items: *606 examples: default: value: @@ -86831,7 +86878,7 @@ paths: - - 0 - 2 - 21 - '204': *148 + '204': *149 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86851,8 +86898,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 +86953,7 @@ paths: description: Response content: application/json: - schema: *605 + schema: *607 examples: default: value: @@ -86960,8 +87007,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 +87020,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -86993,14 +87040,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 +87115,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 +87142,7 @@ paths: description: Response content: application/json: - schema: *606 + schema: *608 examples: default: value: @@ -87122,8 +87169,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 +87190,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 +87270,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 +87279,7 @@ paths: application/json: schema: type: array - items: &607 + items: &609 title: Tag protection description: Tag protection type: object @@ -87284,8 +87331,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 +87355,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *609 examples: default: value: @@ -87339,8 +87386,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 +87424,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 +87461,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 +87472,9 @@ paths: application/json: schema: type: array - items: *154 + items: *155 examples: - default: *215 + default: *216 headers: Link: *58 '404': *6 @@ -87447,8 +87494,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 +87503,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 +87515,7 @@ paths: required: - names examples: - default: &609 + default: &611 value: names: - octocat @@ -87491,8 +87538,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 +87570,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *610 examples: - default: *609 + default: *611 '404': *6 '422': *7 x-github: @@ -87546,9 +87593,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 +87624,7 @@ paths: example: 128 clones: type: array - items: &611 + items: &613 title: Traffic type: object properties: @@ -87664,8 +87711,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 +87802,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 +87863,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 +87884,7 @@ paths: example: 3782 views: type: array - items: *611 + items: *613 required: - uniques - count @@ -87914,8 +87961,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 +88236,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 +88260,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 +88283,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 +88310,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 +88403,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 +88653,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &612 + text_matches: &614 title: Search Result Text Matches type: array items: @@ -88768,7 +88815,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 +88886,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *349 + properties: *370 nullable: true comment_count: type: integer @@ -88859,7 +88906,7 @@ paths: url: type: string format: uri - verification: *466 + verification: *487 required: - author - committer @@ -88878,7 +88925,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 +88943,7 @@ paths: type: number node_id: type: string - text_matches: *612 + text_matches: *614 required: - sha - node_id @@ -89078,7 +89125,7 @@ paths: - interactions - created - updated - - *613 + - *615 - *17 - *19 - name: advanced_search @@ -89205,8 +89252,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 +89267,7 @@ paths: type: string format: date-time nullable: true - text_matches: *612 + text_matches: *614 pull_request: type: object properties: @@ -89264,7 +89311,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 +89495,7 @@ paths: enum: - created - updated - - *613 + - *615 - *17 - *19 responses: @@ -89492,7 +89539,7 @@ paths: nullable: true score: type: number - text_matches: *612 + text_matches: *614 required: - id - node_id @@ -89577,7 +89624,7 @@ paths: - forks - help-wanted-issues - updated - - *613 + - *615 - *17 - *19 responses: @@ -89816,7 +89863,7 @@ paths: - admin - pull - push - text_matches: *612 + text_matches: *614 temp_clone_token: type: string allow_merge_commit: @@ -90116,7 +90163,7 @@ paths: type: string format: uri nullable: true - text_matches: *612 + text_matches: *614 related: type: array nullable: true @@ -90307,7 +90354,7 @@ paths: - followers - repositories - joined - - *613 + - *615 - *17 - *19 responses: @@ -90411,7 +90458,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *612 + text_matches: *614 blog: type: string nullable: true @@ -90490,7 +90537,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 +90549,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *289 examples: - default: *269 + default: *290 '404': *6 x-github: githubCloudOnly: false @@ -90531,7 +90578,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 +90641,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 +90678,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 +90709,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 +90720,9 @@ paths: application/json: schema: type: array - items: *270 + items: *291 examples: - default: *615 + default: *617 headers: Link: *58 x-github: @@ -90704,7 +90751,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 +90785,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *271 + default: *292 x-github: triggersNotification: true githubCloudOnly: false @@ -90767,16 +90814,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 +90848,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 +90872,9 @@ paths: description: Response content: application/json: - schema: *270 + schema: *291 examples: - default: *616 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90852,8 +90899,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 +90929,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 +90941,9 @@ paths: application/json: schema: type: array - items: *273 + items: *294 examples: - default: *617 + default: *619 headers: Link: *58 x-github: @@ -90925,8 +90972,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 +90995,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *274 + default: *295 x-github: triggersNotification: true githubCloudOnly: false @@ -90977,17 +91024,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 +91059,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 +91083,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *294 examples: - default: *618 + default: *620 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91063,9 +91110,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 +91141,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 +91169,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -91153,9 +91200,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 +91234,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91215,8 +91262,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 +91289,9 @@ paths: application/json: schema: type: array - items: *276 + items: *297 examples: - default: *278 + default: *299 headers: Link: *58 x-github: @@ -91273,8 +91320,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 +91353,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *297 examples: - default: *277 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -91332,7 +91379,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 +91389,9 @@ paths: application/json: schema: type: array - items: *192 + items: *193 examples: - default: *193 + default: *194 headers: Link: *58 x-github: @@ -91370,7 +91417,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 +91440,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '404': *6 @@ -91421,7 +91468,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 +91505,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 +91545,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 +91582,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 +91624,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 +91650,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 +91686,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 +91715,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 +91725,9 @@ paths: application/json: schema: type: array - items: *281 + items: *302 examples: - default: *621 + default: *623 headers: Link: *58 '404': *6 @@ -91706,16 +91753,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 +91786,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 +91854,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 +91882,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 +91894,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '404': *6 @@ -91877,15 +91924,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 +92083,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 +92135,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 +92162,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 +92172,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 +92207,7 @@ paths: application/json: schema: oneOf: - - &626 + - &628 title: Private User description: Private User type: object @@ -92363,7 +92410,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 +92563,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *628 examples: default: value: @@ -92595,7 +92642,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 '304': *37 '404': *6 '403': *29 @@ -92719,9 +92766,9 @@ paths: type: integer codespaces: type: array - items: *201 + items: *202 examples: - default: *202 + default: *203 '304': *37 '500': *97 '401': *25 @@ -92860,17 +92907,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 +92961,7 @@ paths: type: integer secrets: type: array - items: &627 + items: &629 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -92954,7 +93001,7 @@ paths: - visibility - selected_repositories_url examples: - default: *406 + default: *427 headers: Link: *58 x-github: @@ -93030,7 +93077,7 @@ paths: description: Response content: application/json: - schema: *627 + schema: *629 examples: default: value: @@ -93176,7 +93223,7 @@ paths: type: array items: *122 examples: - default: *628 + default: *630 '401': *25 '403': *29 '404': *6 @@ -93320,15 +93367,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 +93401,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 +93431,9 @@ paths: description: Response content: application/json: - schema: *201 + schema: *202 examples: - default: *403 + default: *424 '401': *25 '403': *29 '404': *6 @@ -93408,7 +93455,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 +93484,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 +93531,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 +93563,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 +93576,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *631 examples: - default: *630 + default: *632 '404': *6 x-github: githubCloudOnly: false @@ -93552,7 +93599,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 +93615,9 @@ paths: type: integer machines: type: array - items: *631 + items: *633 examples: - default: *632 + default: *634 '304': *37 '500': *97 '401': *25 @@ -93599,7 +93646,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 +93696,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 +94476,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 +94516,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 +94554,9 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: &645 + default: &647 value: - id: 197 name: hello_docker @@ -94610,7 +94657,7 @@ paths: application/json: schema: type: array - items: &633 + items: &635 title: Email description: Email type: object @@ -94675,9 +94722,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 +94799,7 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: default: value: @@ -94862,7 +94909,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '304': *37 @@ -94895,7 +94942,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 '304': *37 @@ -95008,7 +95055,7 @@ paths: application/json: schema: type: array - items: &634 + items: &636 title: GPG Key description: A unique encryption key type: object @@ -95139,7 +95186,7 @@ paths: - subkeys - revoked examples: - default: &661 + default: &663 value: - id: 3 name: Octocat's GPG Key @@ -95224,9 +95271,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 +95330,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 +95342,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *636 examples: - default: *635 + default: *637 '404': *6 '304': *37 '403': *29 @@ -95320,7 +95367,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 +95558,7 @@ paths: type: array items: *60 examples: - default: *637 + default: *639 headers: Link: *58 '404': *6 @@ -95596,12 +95643,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 +95672,7 @@ paths: required: true content: application/json: - schema: *477 + schema: *498 examples: default: value: @@ -95636,7 +95683,7 @@ paths: description: Response content: application/json: - schema: *190 + schema: *191 examples: default: value: @@ -95717,7 +95764,7 @@ paths: - closed - all default: open - - *198 + - *199 - name: sort description: What to sort results by. in: query @@ -95742,7 +95789,7 @@ paths: type: array items: *77 examples: - default: *199 + default: *200 headers: Link: *58 '404': *6 @@ -95775,7 +95822,7 @@ paths: application/json: schema: type: array - items: &638 + items: &640 title: Key description: Key type: object @@ -95872,9 +95919,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *640 examples: - default: &639 + default: &641 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -95907,15 +95954,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 +95985,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 +96018,7 @@ paths: application/json: schema: type: array - items: &640 + items: &642 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -96039,7 +96086,7 @@ paths: - account - plan examples: - default: &641 + default: &643 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -96101,9 +96148,9 @@ paths: application/json: schema: type: array - items: *640 + items: *642 examples: - default: *641 + default: *643 headers: Link: *58 '304': *37 @@ -96143,7 +96190,7 @@ paths: application/json: schema: type: array - items: *206 + items: *207 examples: default: value: @@ -96251,7 +96298,7 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: default: value: @@ -96334,7 +96381,7 @@ paths: description: Response content: application/json: - schema: *206 + schema: *207 examples: default: value: @@ -96402,7 +96449,7 @@ paths: application/json: schema: type: array - items: *208 + items: *209 examples: default: value: @@ -96655,7 +96702,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -96835,7 +96882,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 +96895,7 @@ paths: description: Response content: application/json: - schema: *208 + schema: *209 examples: default: value: @@ -97042,7 +97089,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 +97115,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 +97144,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 +97169,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 +97181,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '404': *6 @@ -97169,9 +97216,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *643 + default: *645 headers: Link: *58 '304': *37 @@ -97213,7 +97260,7 @@ paths: - docker - nuget - container - - *644 + - *646 - *19 - *17 responses: @@ -97223,10 +97270,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 +97293,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 +97415,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 +97446,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 +97479,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 +97500,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -97502,15 +97549,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 +97593,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 +97625,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 +97683,7 @@ paths: description: Response content: application/json: - schema: *232 + schema: *233 examples: default: value: @@ -97708,9 +97755,9 @@ paths: application/json: schema: type: array - items: *633 + items: *635 examples: - default: *647 + default: *649 headers: Link: *58 '304': *37 @@ -97823,7 +97870,7 @@ paths: type: array items: *60 examples: - default: &654 + default: &656 summary: Default response value: - id: 1296269 @@ -98127,9 +98174,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 +98214,9 @@ paths: application/json: schema: type: array - items: *479 + items: *500 examples: - default: *648 + default: *650 headers: Link: *58 '304': *37 @@ -98192,7 +98239,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 +98262,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 +98295,7 @@ paths: application/json: schema: type: array - items: &649 + items: &651 title: Social account description: Social media account type: object @@ -98263,7 +98310,7 @@ paths: - provider - url examples: - default: &650 + default: &652 value: - provider: twitter url: https://twitter.com/github @@ -98325,9 +98372,9 @@ paths: application/json: schema: type: array - items: *649 + items: *651 examples: - default: *650 + default: *652 '422': *15 '304': *37 '404': *6 @@ -98414,7 +98461,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 +98481,7 @@ paths: - title - created_at examples: - default: &673 + default: &675 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98500,9 +98547,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: &652 + default: &654 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -98533,7 +98580,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 +98592,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *653 examples: - default: *652 + default: *654 '404': *6 '304': *37 '403': *29 @@ -98570,7 +98617,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 +98646,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 +98671,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 +98831,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 +98860,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 +98885,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 +98921,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 '304': *37 @@ -98911,7 +98958,7 @@ paths: application/json: schema: type: array - items: *268 + items: *289 examples: default: value: @@ -98997,10 +99044,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 +99082,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 +99142,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *655 + - *657 - *17 responses: '200': @@ -99106,7 +99153,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: example: ; rel="next" @@ -99144,11 +99191,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 +99244,8 @@ paths: required: - subject_digests examples: - default: *658 - withPredicateType: *659 + default: *660 + withPredicateType: *661 responses: '200': description: Response @@ -99251,7 +99298,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 +99500,7 @@ paths: bundle_url: type: string examples: - default: *345 + default: *366 '201': description: Response content: @@ -99492,9 +99539,9 @@ paths: application/json: schema: type: array - items: *216 + items: *217 examples: - default: *645 + default: *647 '403': *29 '401': *25 x-github: @@ -99777,7 +99824,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -99808,7 +99855,7 @@ paths: type: array items: *4 examples: - default: *200 + default: *201 headers: Link: *58 x-github: @@ -99898,9 +99945,9 @@ paths: application/json: schema: type: array - items: *634 + items: *636 examples: - default: *661 + default: *663 headers: Link: *58 x-github: @@ -100004,7 +100051,7 @@ paths: application/json: schema: *22 examples: - default: *476 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100083,9 +100130,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *643 + default: *645 headers: Link: *58 x-github: @@ -100124,7 +100171,7 @@ paths: - docker - nuget - container - - *644 + - *646 - *135 - *19 - *17 @@ -100135,12 +100182,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 +100207,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 +100238,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 +100272,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 +100306,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 +100316,7 @@ paths: application/json: schema: type: array - items: *220 + items: *221 examples: default: value: @@ -100327,16 +100374,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 +100418,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 +100453,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 +100503,7 @@ paths: application/json: schema: type: array - items: *232 + items: *233 examples: default: value: @@ -100739,7 +100786,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -100769,9 +100816,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *665 examples: - default: *664 + default: *666 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100799,9 +100846,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *667 examples: - default: *666 + default: *668 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100829,9 +100876,9 @@ paths: description: Response content: application/json: - schema: *667 + schema: *669 examples: - default: *668 + default: *670 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100852,10 +100899,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 +101001,9 @@ paths: application/json: schema: type: array - items: *649 + items: *651 examples: - default: *650 + default: *652 headers: Link: *58 x-github: @@ -100986,9 +101033,9 @@ paths: application/json: schema: type: array - items: *651 + items: *653 examples: - default: *673 + default: *675 headers: Link: *58 x-github: @@ -101013,7 +101060,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 +101072,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 +101107,7 @@ paths: type: array items: *122 examples: - default: *222 + default: *223 headers: Link: *58 x-github: @@ -101188,7 +101235,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 +101293,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 +101312,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 +101372,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 +102061,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 +102212,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 +102291,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 +102518,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 +102705,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 +102793,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 +102846,7 @@ x-webhooks: type: string pull_requests: type: array - items: *362 + items: *383 repository: *122 status: example: completed @@ -102837,7 +102884,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *681 + deployment: *683 details_url: example: https://example.com type: string @@ -102887,7 +102934,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 +102969,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 +103364,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 +103763,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 +104171,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 +105151,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 +105824,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 +106491,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 +106657,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 +106802,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 +106977,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 +107207,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 +107307,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 +107475,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 +107643,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 +107809,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 +107911,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 +108079,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 +108182,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 +108322,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 +108584,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 +108667,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 +108688,7 @@ x-webhooks: enum: - tag - branch - repository: *679 + repository: *681 sender: *4 required: - ref @@ -108723,10 +108770,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 +108858,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 +108937,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 +109017,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 +109097,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 +109185,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 +109280,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 +109368,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 +109456,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 +109542,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 +109628,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 +109715,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 +109801,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 +109882,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 +109920,8 @@ x-webhooks: - verified - created_at - read_only - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -109951,11 +109998,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 +110563,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 +111294,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 +111371,7 @@ x-webhooks: type: string enum: - approved - approver: &688 + approver: &690 type: object properties: avatar_url: @@ -111367,11 +111414,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 +111497,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &690 + workflow_job_run: &692 type: object properties: conclusion: @@ -112181,18 +112228,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 +112943,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 +114848,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 +115533,7 @@ x-webhooks: type: string enum: - answered - answer: &694 + answer: &696 type: object properties: author_association: @@ -115643,7 +115690,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &692 + discussion: &694 title: Discussion description: A Discussion in a repository. type: object @@ -115929,7 +115976,7 @@ x-webhooks: - id labels: type: array - items: *488 + items: *509 required: - repository_url - category @@ -115951,10 +115998,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 +116128,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 +116215,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 +116301,7 @@ x-webhooks: type: string enum: - created - comment: &693 + comment: &695 type: object properties: author_association: @@ -116411,11 +116458,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 +116545,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 +116645,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 +116734,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 +116820,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 +116924,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 +117010,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 +117045,8 @@ x-webhooks: - color - default - description - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -117082,11 +117129,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 +117215,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 +117301,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 +117390,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 +117482,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 +117567,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 +117655,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 +117741,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 +117818,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 +118478,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 +118626,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 +118665,7 @@ x-webhooks: - action - sha - html_url - repository: *679 + repository: *681 sender: *4 required: - pages @@ -118694,10 +118741,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 +118770,8 @@ x-webhooks: - name - full_name - private - repository: *679 - requester: *696 + repository: *681 + requester: *698 sender: *4 required: - action @@ -118799,11 +118846,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 +118926,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 +119006,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 +119055,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 +119142,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 +119172,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 +119253,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 +119435,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 +119517,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 +119773,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 +120597,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -120883,8 +120930,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -120964,7 +121011,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 +121176,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 +121996,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -122284,8 +122331,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -122365,7 +122412,7 @@ x-webhooks: type: string enum: - edited - changes: &728 + changes: &730 description: The changes to the comment. type: object properties: @@ -122377,9 +122424,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 +123248,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -123534,8 +123581,8 @@ x-webhooks: - state - locked - assignee - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -123617,10 +123664,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 +124485,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -124539,8 +124586,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -124620,8 +124667,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 +125491,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -125680,8 +125727,8 @@ x-webhooks: required: - state - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -125760,8 +125807,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 +126622,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -126675,8 +126722,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -126755,8 +126802,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 +127639,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -127671,7 +127718,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 +127856,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -127909,8 +127956,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 +128772,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -128829,9 +128876,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 +128958,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 +129773,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -129830,9 +129877,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 +129959,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 +130798,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *195 + type: *196 title: description: Title of the issue type: string @@ -130832,8 +130879,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -130912,8 +130959,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 +131795,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -131826,9 +131873,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 +132849,7 @@ x-webhooks: required: - login - id - type: *195 + type: *196 required: - id - number @@ -133271,8 +133318,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 +134137,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -134190,8 +134237,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -134271,9 +134318,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 +135132,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -135185,8 +135232,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -135265,8 +135312,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 +136230,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 +137127,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -137648,11 +137695,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 +137779,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 +137865,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &731 + assignee: &733 title: User type: object nullable: true @@ -137888,11 +137935,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 +138018,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 +138103,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 +138943,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *195 + type: *196 updated_at: type: string format: date-time @@ -138974,8 +139021,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -139055,11 +139102,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 +139185,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 +139270,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 +139352,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 +139466,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 +139552,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 +139637,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 +139718,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -139751,10 +139798,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 +139884,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -139919,10 +139966,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 +140051,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *679 + repository: *681 sender: *4 required: - action @@ -140085,8 +140132,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 +140215,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 +140297,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 +140404,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 +140508,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 +140591,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 +140673,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 +140753,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 +140943,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 +141024,7 @@ x-webhooks: required: - login - id - team: *706 + team: *708 required: - action - scope @@ -141059,8 +141106,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 +141126,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 +141220,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 +141296,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 +141405,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 +141495,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 +141578,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 +141717,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -141750,11 +141797,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 +141911,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 +141995,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 +142078,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 +142161,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 +142244,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 +142353,8 @@ x-webhooks: - role - organization_url - user - organization: *678 - repository: *679 + organization: *680 + repository: *681 sender: *4 required: - action @@ -142385,11 +142432,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 +142515,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 +142632,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 +142713,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 +142804,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 +142884,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 +143385,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &713 + items: &715 title: Ruby Gems metadata type: object properties: @@ -143433,7 +143480,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -143509,9 +143556,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 +143911,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *713 + items: *715 source_url: type: string format: uri @@ -143934,7 +143981,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -144111,12 +144158,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 +144240,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 +144386,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 +144466,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 +144546,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 +144625,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 +144734,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 +144766,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 +145012,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 +145134,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -145168,11 +145215,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 +145299,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 +145429,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 +145524,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 +145622,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 +145814,7 @@ x-webhooks: type: string required: - after_id - repository: *679 + repository: *681 sender: *4 required: - action @@ -145847,10 +145894,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 +146021,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -146054,10 +146101,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 +146143,7 @@ x-webhooks: - name - created_at - updated_at - repository: *679 + repository: *681 sender: *4 required: - action @@ -146175,18 +146222,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 +146323,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 +146407,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 +146491,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 +146575,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 +146688,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 +146771,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 +146856,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 +147001,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 +147084,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 +147203,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 +147288,7 @@ x-webhooks: type: string enum: - archived - changes: &723 + changes: &725 type: object properties: archived_at: @@ -147255,9 +147302,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 +147438,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 +147522,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 +147605,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 +147713,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 +147731,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 +147754,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *721 - - *722 + - *723 + - *724 required: - field_value - type: object @@ -147724,9 +147771,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 +147868,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 +147953,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 +148038,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 +148121,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 +148250,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 +148388,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 +148461,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 +148541,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 +150830,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -150865,11 +150912,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 +153194,7 @@ x-webhooks: - draft reason: type: string - repository: *679 + repository: *681 sender: *4 required: - action @@ -153229,11 +153276,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 +155558,7 @@ x-webhooks: - draft reason: type: string - repository: *679 + repository: *681 sender: *4 required: - action @@ -155593,13 +155640,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 +155708,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *679 + repository: *681 sender: *4 required: - action @@ -155742,12 +155789,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 +155874,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 +158141,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -158173,11 +158220,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 +160506,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *679 + repository: *681 sender: *4 required: - action @@ -160583,12 +160630,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 +160715,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 +162986,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -163019,11 +163066,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 +165352,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -165386,10 +165433,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 +167716,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -167749,12 +167796,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 +167880,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 +167966,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 +168051,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 +168422,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 +170594,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -170627,7 +170674,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 +170959,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 +173119,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -173152,11 +173199,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 +175364,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *679 + repository: *681 sender: *4 required: - action @@ -175398,9 +175445,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 +177620,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 +177863,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 +179919,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 +180149,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 +182437,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_reviewer: title: User type: object @@ -182474,12 +182521,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 +184816,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 +185008,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 +187298,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 requested_reviewer: title: User type: object @@ -187336,12 +187383,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 +189664,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 +189845,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 +192022,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 - review: *730 + repository: *681 + review: *732 sender: *4 required: - action @@ -192056,9 +192103,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 +194175,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 + repository: *681 sender: *4 thread: type: object @@ -194511,9 +194558,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 +196616,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *679 + repository: *681 sender: *4 thread: type: object @@ -196955,10 +197002,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 +199276,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -199311,11 +199358,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 +201645,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -201677,11 +201724,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 +204001,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -204035,10 +204082,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 +206350,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *679 + repository: *681 sender: *4 required: - action @@ -206503,7 +206550,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 +206642,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 +207218,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 +207666,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *713 + items: *715 summary: type: string tag_name: @@ -207673,7 +207720,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -207751,9 +207798,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 +208108,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *713 + items: *715 summary: type: string tag_name: @@ -208110,7 +208157,7 @@ x-webhooks: - owner - package_version - registry - repository: *679 + repository: *681 sender: *4 required: - action @@ -208187,10 +208234,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 +208550,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *679 + repository: *681 sender: *4 required: - action @@ -208580,11 +208627,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 +208748,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 +208830,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 +209149,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *679 + repository: *681 sender: *4 required: - action @@ -209178,10 +209225,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 +209542,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *679 + repository: *681 sender: *4 required: - action @@ -209571,11 +209618,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 +209698,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 +209778,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 +209858,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 +209938,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 +210018,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 +210099,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 +210186,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 +210301,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 +210376,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 +210460,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 +210540,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 +210637,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 +210720,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 +210802,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 +210884,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 +210907,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 +210949,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 +211192,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 +211273,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 +211354,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 +211475,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 +211684,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 +211765,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 +211968,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 +212049,7 @@ x-webhooks: type: string enum: - created - alert: &735 + alert: &737 type: object properties: number: *54 @@ -212113,10 +212160,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 +212244,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 +212486,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 +212568,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 +212650,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 +212732,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 +212862,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 +212943,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 +213130,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 +213207,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 +213394,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 +213476,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 +213782,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 +213875,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 +213957,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 +214041,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &740 + changes: &742 type: object properties: tier: @@ -214038,13 +214085,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 +214168,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 +214248,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 +214334,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 +214757,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 +214880,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 +214972,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 +215064,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 +215156,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 +215235,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 +215430,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 +215890,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -215919,9 +215966,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 +216426,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -216456,9 +216503,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 +216963,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -217060,9 +217107,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 +217567,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - changes @@ -217598,9 +217645,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 +218105,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *741 + team: *743 required: - action - team @@ -218134,10 +218181,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 +218257,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 +218348,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 +218588,7 @@ x-webhooks: type: string required: - conclusion - deployment: *441 + deployment: *462 required: - action - repository @@ -218620,10 +218667,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 +218930,7 @@ x-webhooks: required: - status - steps - deployment: *441 + deployment: *462 required: - action - repository @@ -218962,10 +219009,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 +219147,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *441 + deployment: *462 required: - action - repository @@ -219179,10 +219226,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 +219365,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *441 + deployment: *462 required: - action - repository @@ -219398,12 +219445,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 +220449,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 +221438,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..da735a8e7b 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", @@ -169428,83 +169409,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 +173861,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 +277280,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", diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index c8df19fcc2..76b6376033 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 @@ -43199,7 +43248,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 +43338,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 +43368,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: @@ -43410,7 +43459,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 +43505,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 +43678,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: default: value: @@ -43667,7 +43716,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &396 + '410': &418 description: Gone content: application/json: @@ -43833,7 +43882,7 @@ paths: required: true content: application/json: - schema: *330 + schema: *351 examples: default: value: @@ -43936,7 +43985,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 +44072,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 +44125,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -44096,7 +44145,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 +44170,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 +44192,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 +44263,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -44419,7 +44468,7 @@ paths: description: Response content: application/json: - schema: &398 + schema: &420 title: Full Repository description: Full Repository type: object @@ -44696,8 +44745,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 +44833,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 +44861,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 +44877,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 +44966,7 @@ paths: - network_count - subscribers_count examples: - default: &400 + default: &422 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -45443,9 +45492,9 @@ paths: application/json: schema: type: array - items: *335 + items: *356 examples: - default: *336 + default: *357 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45470,7 +45519,7 @@ paths: - *73 - *17 - *19 - - &666 + - &668 name: targets description: | A comma-separated list of rule targets to filter by. @@ -45488,7 +45537,7 @@ paths: application/json: schema: type: array - items: *133 + items: *152 examples: default: value: @@ -45561,11 +45610,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 +45676,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 +45733,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 +45743,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 +45772,7 @@ paths: description: Response content: application/json: - schema: &670 + schema: &673 title: Rule Suites description: Response type: array @@ -45754,7 +45827,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 +45871,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 +45887,7 @@ paths: description: Response content: application/json: - schema: &673 + schema: &676 title: Rule Suite description: Response type: object @@ -45913,7 +45986,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 +46059,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *338 + default: *359 '404': *6 '500': *88 put: @@ -46037,11 +46110,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 +46149,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *338 + default: *359 '404': *6 '500': *88 delete: @@ -46135,9 +46208,9 @@ paths: application/json: schema: type: array - items: *136 + items: *156 examples: - default: *339 + default: *361 '404': *6 '500': *88 x-github: @@ -46174,7 +46247,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *362 examples: default: value: @@ -46237,14 +46310,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 +46327,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 +46337,10 @@ paths: required: false schema: type: string - - *345 - - *346 - - *347 - - *348 + - *367 + - *368 + - *369 + - *370 responses: '200': description: Response @@ -46275,13 +46348,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 +46420,7 @@ paths: application/json: schema: type: array - items: &698 + items: &701 description: A repository security advisory. type: object properties: @@ -46567,7 +46640,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 credits_detailed: type: array nullable: true @@ -46577,7 +46650,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 +46674,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 +46711,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 +47098,9 @@ paths: application/json: schema: type: array - items: *352 + items: *374 examples: - default: *312 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47051,7 +47124,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 +47150,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 +47185,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *375 examples: - default: *354 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47139,7 +47212,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 +47220,9 @@ paths: description: Success content: application/json: - schema: *356 + schema: *378 examples: - default: *357 + default: *379 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -47177,9 +47250,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *380 examples: - default: *359 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47207,9 +47280,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *382 examples: - default: *361 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47249,7 +47322,7 @@ paths: type: array items: *116 examples: - default: *362 + default: *384 headers: Link: *40 x-github: @@ -47450,15 +47523,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 +47569,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 +47615,7 @@ paths: type: string nullable: true examples: - default: &388 + default: &410 value: groups: - group_id: '123' @@ -47588,7 +47661,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 +47693,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 +47727,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 headers: Link: *40 '403': *29 @@ -47750,7 +47823,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 +47886,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 +48133,7 @@ paths: - repos_count - organization examples: - default: &367 + default: &389 value: id: 1 node_id: MDQ6VGVhbTE= @@ -48131,15 +48204,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 +48234,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 +48296,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 +48331,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 +48358,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - *73 - - *309 + - *330 - *91 - *17 - *19 @@ -48302,7 +48375,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 +48454,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 +48474,7 @@ paths: - updated_at - url examples: - default: &739 + default: &742 value: - author: login: octocat @@ -48476,7 +48549,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 +48583,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: &369 + default: &391 value: author: login: octocat @@ -48585,8 +48658,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 +48671,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *369 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48623,8 +48696,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 +48720,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: &740 + default: &743 value: author: login: octocat @@ -48720,8 +48793,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 +48821,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 +48833,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 +48890,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 +48905,7 @@ paths: - updated_at - url examples: - default: &741 + default: &744 value: - author: login: octocat @@ -48901,8 +48974,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 +48997,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: &372 + default: &394 value: author: login: octocat @@ -48993,9 +49066,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 +49080,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *372 + default: *394 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49032,9 +49105,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 +49129,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: &742 + default: &745 value: author: login: octocat @@ -49123,9 +49196,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 +49225,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 +49253,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 +49296,7 @@ paths: - content - created_at examples: - default: &376 + default: &398 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -49274,9 +49347,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 +49382,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 +49413,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49366,10 +49439,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 +49475,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 +49502,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -49458,8 +49531,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 +49564,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 +49597,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 +49623,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 +49651,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 +49674,9 @@ paths: description: Response content: application/json: - schema: *380 + schema: *402 examples: - default: *381 + default: *403 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -49623,7 +49696,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 +49721,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 +49731,9 @@ paths: application/json: schema: type: array - items: *292 + items: *313 examples: - default: *293 + default: *314 headers: Link: *40 x-github: @@ -49683,7 +49756,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 +49779,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -49737,14 +49810,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 +49844,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 +49881,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 +49907,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 +49945,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 +49972,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 +49982,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 +50050,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 +50114,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 +50127,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 +50192,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 +50260,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 +50289,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 +50299,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -50258,15 +50331,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 +50362,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 +50909,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 +50957,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 +50986,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 +51017,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 +51060,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *409 examples: default: value: @@ -51020,7 +51093,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 +51103,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 +51232,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 +51244,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 +51311,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 +51367,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 +51394,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *412 examples: - default: *391 + default: *413 '304': *37 '403': *29 '401': *25 @@ -51350,7 +51423,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 +51467,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 +51578,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 +51590,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 +51636,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 +51671,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 +51695,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *415 examples: - default: *394 + default: *416 '304': *37 '403': *29 '401': *25 @@ -51649,7 +51722,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 +51751,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 +51772,7 @@ paths: application/json: schema: type: array - items: *390 + items: *412 examples: default: value: @@ -51758,7 +51831,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 +51871,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *412 examples: - default: *391 + default: *413 '304': *37 '403': *29 '401': *25 @@ -51810,8 +51883,8 @@ paths: application/json: schema: oneOf: - - *187 - - *188 + - *207 + - *208 '503': description: Response content: @@ -51856,7 +51929,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 +51989,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 +52054,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 +52100,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 +52123,7 @@ paths: items: type: string '401': *25 - '410': *396 + '410': *418 '422': *7 x-github: githubCloudOnly: false @@ -52073,7 +52146,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 +52167,7 @@ paths: items: type: string '401': *25 - '410': *396 + '410': *418 '404': *6 x-github: githubCloudOnly: false @@ -52118,7 +52191,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 +52218,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -52175,8 +52248,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 +52301,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 +52333,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 +52407,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 +52417,7 @@ paths: application/json: schema: type: array - items: *393 + items: *415 examples: default: value: @@ -52382,7 +52455,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 +52478,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *415 examples: default: value: @@ -52470,7 +52543,7 @@ paths: resources: type: object properties: - core: &397 + core: &419 title: Rate Limit type: object properties: @@ -52487,21 +52560,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 +52678,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 +53190,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *399 + '301': *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53135,8 +53208,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 +53466,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 +53498,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 +53521,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 +53545,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 +53572,7 @@ paths: type: integer artifacts: type: array - items: &402 + items: &424 title: Artifact description: An artifact type: object @@ -53577,7 +53650,7 @@ paths: - expires_at - updated_at examples: - default: &417 + default: &439 value: total_count: 2 artifacts: @@ -53638,9 +53711,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 +53725,7 @@ paths: description: Response content: application/json: - schema: *402 + schema: *424 examples: default: value: @@ -53690,9 +53763,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 +53789,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 +53805,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 +53828,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 +53861,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 +53899,7 @@ paths: description: Response content: application/json: - schema: &406 + schema: &428 title: Repository actions caches description: Repository actions caches type: object @@ -53868,7 +53941,7 @@ paths: - total_count - actions_caches examples: - default: &407 + default: &429 value: total_count: 1 actions_caches: @@ -53900,23 +53973,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 +54009,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 +54041,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 +54055,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 +54362,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 +54392,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 +54415,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -54366,8 +54439,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 +54490,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 +54525,7 @@ paths: description: Empty response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -54481,8 +54554,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 +54573,7 @@ paths: type: integer secrets: type: array - items: &422 + items: &444 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -54520,7 +54593,7 @@ paths: - created_at - updated_at examples: - default: &423 + default: &445 value: total_count: 2 secrets: @@ -54553,9 +54626,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 +54645,7 @@ paths: type: integer variables: type: array - items: &426 + items: &448 title: Actions Variable type: object properties: @@ -54602,7 +54675,7 @@ paths: - created_at - updated_at examples: - default: &427 + default: &449 value: total_count: 2 variables: @@ -54635,8 +54708,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 +54718,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 +54751,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 +54763,7 @@ paths: schema: type: object properties: - enabled: *410 + enabled: *432 allowed_actions: *49 required: - enabled @@ -54721,14 +54794,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 +54819,7 @@ paths: required: - access_level examples: - default: &412 + default: &434 value: access_level: organization x-github: @@ -54771,15 +54844,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 +54876,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 +54908,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 +54941,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 +54971,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 +54983,7 @@ paths: required: true content: application/json: - schema: *201 + schema: *221 examples: default: *55 x-github: @@ -54939,8 +55012,8 @@ paths: in: query schema: type: string - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -54984,8 +55057,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 +55066,9 @@ paths: application/json: schema: type: array - items: *205 + items: *225 examples: - default: *206 + default: *226 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55017,8 +55090,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 +55134,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *207 + '201': *227 '404': *6 '422': *7 '409': *99 @@ -55092,8 +55165,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 +55174,7 @@ paths: application/json: schema: *65 examples: - default: *208 + default: *228 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55129,8 +55202,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 +55211,7 @@ paths: application/json: schema: *65 examples: - default: *209 + default: *229 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55160,8 +55233,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 +55243,7 @@ paths: application/json: schema: *62 examples: - default: *210 + default: *230 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55191,8 +55264,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 +55292,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 +55318,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 +55368,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 +55419,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 +55450,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 +55481,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 +55491,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 +55499,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 +55508,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 +55535,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 +55544,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 +55553,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 +55582,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 +55677,7 @@ paths: that triggered the run. type: array nullable: true - items: &457 + items: &479 title: Pull Request Minimal type: object properties: @@ -55723,7 +55796,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &461 + properties: &483 id: type: string description: SHA for the commit @@ -55774,7 +55847,7 @@ paths: - name - email nullable: true - required: &462 + required: &484 - id - tree_id - message @@ -55782,8 +55855,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 +55894,7 @@ paths: - workflow_url - pull_requests examples: - default: &437 + default: &459 value: total_count: 1 workflow_runs: @@ -56057,24 +56130,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 +56388,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 +56413,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 +56534,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 +56569,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 +56590,9 @@ paths: type: integer artifacts: type: array - items: *402 + items: *424 examples: - default: *417 + default: *439 headers: Link: *40 x-github: @@ -56543,25 +56616,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 +56657,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 +56678,9 @@ paths: type: integer jobs: type: array - items: *420 + items: *442 examples: - default: &421 + default: &443 value: total_count: 1 jobs: @@ -56720,10 +56793,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 +56824,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 +56859,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 +56928,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 +56963,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 +56995,9 @@ paths: type: integer jobs: type: array - items: *420 + items: *442 examples: - default: *421 + default: *443 headers: Link: *40 x-github: @@ -56949,9 +57022,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 +57051,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 +57080,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 +57142,7 @@ paths: items: type: object properties: - type: &547 + type: &569 type: string description: The type of reviewer. enum: @@ -57079,7 +57152,7 @@ paths: reviewer: anyOf: - *4 - - *235 + - *255 required: - environment - wait_timer @@ -57154,9 +57227,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 +57276,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 +57364,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 +57382,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 +57438,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 +57461,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57411,9 +57484,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 +57507,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57467,9 +57540,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 +57679,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 +57698,9 @@ paths: type: integer secrets: type: array - items: *422 + items: *444 examples: - default: *423 + default: *445 headers: Link: *40 x-github: @@ -57652,16 +57725,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 +57756,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 +57792,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 +57825,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57778,9 +57851,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 +57878,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 +57897,9 @@ paths: type: integer variables: type: array - items: *426 + items: *448 examples: - default: *427 + default: *449 headers: Link: *40 x-github: @@ -57849,8 +57922,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 +57950,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57902,17 +57975,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 +58011,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 +58055,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 +58082,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 +58101,7 @@ paths: type: integer workflows: type: array - items: &428 + items: &450 title: Workflow description: A GitHub Actions workflow type: object @@ -58135,9 +58208,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 +58225,7 @@ paths: description: Response content: application/json: - schema: *428 + schema: *450 examples: default: value: @@ -58185,9 +58258,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 +58285,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 +58338,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 +58367,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 +58395,9 @@ paths: type: integer workflow_runs: type: array - items: *414 + items: *436 examples: - default: *437 + default: *459 headers: Link: *40 x-github: @@ -58357,9 +58430,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 +58493,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 +58658,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 +58671,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -58623,8 +58696,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 +58733,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 +58846,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 +58901,7 @@ paths: bundle_url: type: string examples: - default: *438 + default: *460 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58848,8 +58921,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 +58930,7 @@ paths: application/json: schema: type: array - items: &439 + items: &461 title: Autolink reference description: An autolink reference. type: object @@ -58907,8 +58980,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 +59020,9 @@ paths: description: response content: application/json: - schema: *439 + schema: *461 examples: - default: &440 + default: &462 value: id: 1 key_prefix: TICKET- @@ -58980,9 +59053,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 +59067,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *461 examples: - default: *440 + default: *462 '404': *6 x-github: githubCloudOnly: false @@ -59016,9 +59089,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 +59115,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 +59164,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 +59186,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 +59207,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 +59246,7 @@ paths: - url protected: type: boolean - protection: &443 + protection: &465 title: Branch Protection description: Branch Protection type: object @@ -59215,7 +59288,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 +59303,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 +59324,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 +59353,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 +59379,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 +59686,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 +59702,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 +59743,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 +59758,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 +59779,7 @@ paths: required: - sha - url - verification: &567 + verification: &589 title: Verification type: object properties: @@ -59740,12 +59813,12 @@ paths: nullable: true oneOf: - *4 - - *215 + - *235 committer: nullable: true oneOf: - *4 - - *215 + - *235 parents: type: array items: @@ -59776,7 +59849,7 @@ paths: type: integer files: type: array - items: &521 + items: &543 title: Diff Entry description: Diff Entry type: object @@ -59859,7 +59932,7 @@ paths: - self protected: type: boolean - protection: *443 + protection: *465 protection_url: type: string format: uri @@ -59966,7 +60039,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 +60061,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 +60263,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 +60520,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 +60596,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 apps: type: array items: *5 @@ -60541,7 +60614,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 apps: type: array items: *5 @@ -60599,7 +60672,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *445 + restrictions: *467 required_conversation_resolution: type: object properties: @@ -60711,9 +60784,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 +60811,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 +60843,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 +60872,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 +60899,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 +61005,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 +61105,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *470 examples: - default: *449 + default: *471 '422': *15 x-github: githubCloudOnly: false @@ -61055,9 +61128,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 +61157,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 +61190,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 +61220,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 +61247,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 +61283,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 +61337,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *473 examples: - default: *452 + default: *474 '404': *6 '422': *15 x-github: @@ -61288,9 +61361,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 +61387,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 +61423,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 +61492,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 +61558,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 +61626,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 +61725,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 +61750,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 +61762,7 @@ paths: type: array items: *5 examples: - default: &453 + default: &475 value: - id: 1 slug: octoapp @@ -61746,9 +61819,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 +61855,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61803,9 +61876,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 +61912,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61860,9 +61933,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 +61969,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61918,9 +61991,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 +62001,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '404': *6 x-github: githubCloudOnly: false @@ -61950,9 +62023,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 +62061,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62011,9 +62084,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 +62122,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62072,9 +62145,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 +62182,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62133,9 +62206,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 +62218,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '404': *6 x-github: githubCloudOnly: false @@ -62169,9 +62242,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 +62277,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62229,9 +62302,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 +62337,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62289,9 +62362,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 +62397,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62351,9 +62424,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 +62448,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *476 examples: default: value: @@ -62489,12 +62562,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 +62577,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 +62599,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62541,7 +62614,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *251 examples: default: value: @@ -62600,12 +62673,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 +62688,9 @@ paths: application/json: schema: type: array - items: *455 + items: *477 examples: - default: *456 + default: *478 '404': *6 '403': *29 '500': *88 @@ -62641,8 +62714,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62654,7 +62727,7 @@ paths: description: A single bypass request. content: application/json: - schema: *455 + schema: *477 examples: default: value: @@ -62712,8 +62785,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62784,8 +62857,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_response_id in: path required: true @@ -62818,8 +62891,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 +63171,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 +63282,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 +63358,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 +63571,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 +63585,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *480 examples: - default: &460 + default: &482 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -63614,9 +63687,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 +63929,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *480 examples: - default: *460 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63878,9 +63951,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 +64048,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 +64094,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 +64117,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 +64181,7 @@ paths: nullable: true pull_requests: type: array - items: *457 + items: *479 nullable: true app: title: GitHub app @@ -64119,9 +64192,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 +64203,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 +64236,7 @@ paths: - check_runs_url - pull_requests examples: - default: &464 + default: &486 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -64454,9 +64527,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 +64548,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 +64610,7 @@ paths: required: - app_id - setting - repository: *204 + repository: *224 examples: default: value: @@ -64785,9 +64858,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 +64872,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *485 examples: - default: *464 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64824,17 +64897,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 +64946,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 +65050,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 +65085,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 +65124,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 +65146,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 +65157,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 +65284,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 +65311,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 +65327,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &498 type: object properties: number: *103 @@ -65262,7 +65335,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 +65346,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 +65401,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 +65498,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 +65518,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 +65535,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 +65555,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *498 examples: default: value: @@ -65558,14 +65631,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 +65658,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 +65692,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 +65709,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 +65734,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 +65766,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65715,9 +65788,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 +65835,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 +65860,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 +65874,7 @@ paths: application/json: schema: type: array - items: *473 + items: *495 examples: default: value: @@ -65840,9 +65913,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 +65947,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 +65986,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 +66026,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 +66088,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 +66124,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 +66138,7 @@ paths: description: Response content: application/json: - schema: *486 + schema: *508 examples: response: summary: application/json response @@ -66119,14 +66192,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 +66279,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 +66333,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 +66355,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 +66364,7 @@ paths: application/json: schema: type: array - items: &487 + items: &509 title: CodeQL Database description: A CodeQL database. type: object @@ -66402,9 +66475,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 +66504,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 +66517,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *509 examples: default: value: @@ -66476,11 +66549,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 +66573,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 +66584,9 @@ paths: responses: '204': description: Response - '403': *480 + '403': *502 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66539,8 +66612,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 +66622,7 @@ paths: type: object additionalProperties: false properties: - language: &488 + language: &510 type: string description: The language targeted by the CodeQL query enum: @@ -66628,7 +66701,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 +66711,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 +66758,7 @@ paths: items: type: object properties: - repository: &489 + repository: &511 title: Repository Identifier description: Repository Identifier type: object @@ -66721,7 +66794,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 +66826,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 +66840,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 +66862,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 +66879,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 +67031,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 +67062,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 +67075,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 +67100,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 +67135,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 +67239,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67187,8 +67260,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 +67346,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 +67367,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 +67435,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -67387,7 +67460,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 +67474,7 @@ paths: content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67458,8 +67531,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 +67540,7 @@ paths: schema: type: object properties: - commit_sha: *494 + commit_sha: *516 ref: type: string description: |- @@ -67525,7 +67598,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 +67612,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 +67635,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 +67682,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 +67707,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 +67789,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 +67910,8 @@ paths: parameters: - *17 - *19 - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -67854,7 +67927,7 @@ paths: type: integer codespaces: type: array - items: *301 + items: *322 examples: default: value: @@ -68152,8 +68225,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 +68289,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 +68328,8 @@ paths: parameters: - *17 - *19 - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -68320,8 +68393,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 +68429,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 +68476,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 +68561,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 +68607,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68555,8 +68628,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 +68647,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 +68667,7 @@ paths: - created_at - updated_at examples: - default: *498 + default: *520 headers: Link: *40 x-github: @@ -68617,16 +68690,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 +68719,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 +68749,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 +68779,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -68730,9 +68803,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 +68833,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 +68876,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &503 + properties: &525 login: type: string example: octocat @@ -68896,7 +68969,7 @@ paths: user_view_type: type: string example: public - required: &504 + required: &526 - avatar_url - events_url - followers_url @@ -68970,9 +69043,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 +69091,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 +69119,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 +69130,7 @@ paths: example: 42 type: integer format: int64 - repository: *204 + repository: *224 invitee: title: Simple User description: A GitHub user. @@ -69235,7 +69308,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 +69348,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 +69381,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 +69403,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *503 - required: *504 + properties: *525 + required: *526 nullable: true required: - permission @@ -69386,8 +69459,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 +69470,7 @@ paths: application/json: schema: type: array - items: &505 + items: &527 title: Commit Comment description: Commit Comment type: object @@ -69438,8 +69511,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 +69528,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 +69587,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 +69654,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 +69678,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *527 examples: default: value: @@ -69656,9 +69729,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 +69752,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 +69780,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -69730,9 +69803,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 +69837,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 +69868,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 +69920,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 +69977,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 +70073,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 +70147,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 +70159,9 @@ paths: application/json: schema: type: array - items: *505 + items: *527 examples: - default: *508 + default: *530 headers: Link: *40 x-github: @@ -70116,9 +70189,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 +70226,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 +70256,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 +70268,7 @@ paths: application/json: schema: type: array - items: &622 + items: &644 title: Pull Request Simple description: Pull Request Simple type: object @@ -70301,8 +70374,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 +70420,7 @@ paths: nullable: true requested_teams: type: array - items: *235 + items: *255 nullable: true head: type: object @@ -70398,7 +70471,7 @@ paths: _links: type: object properties: - comments: &512 + comments: &534 title: Link description: Hypermedia Link type: object @@ -70407,13 +70480,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 +70496,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 +70560,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 +71097,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 +71116,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 +71205,7 @@ paths: '422': *15 '404': *6 '500': *88 - '503': *137 + '503': *157 '409': *99 x-github: githubCloudOnly: false @@ -71158,11 +71231,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 +71269,9 @@ paths: type: integer check_runs: type: array - items: *458 + items: *480 examples: - default: *516 + default: *538 headers: Link: *40 x-github: @@ -71223,9 +71296,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 +71306,7 @@ paths: schema: type: integer example: 1 - - *514 + - *536 - *17 - *19 responses: @@ -71251,7 +71324,7 @@ paths: type: integer check_suites: type: array - items: *463 + items: *485 examples: default: value: @@ -71451,9 +71524,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 +71593,7 @@ paths: type: string total_count: type: integer - repository: *204 + repository: *224 commit_url: type: string format: uri @@ -71651,9 +71724,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 +71736,7 @@ paths: application/json: schema: type: array - items: &703 + items: &706 title: Status description: The status of a commit. type: object @@ -71744,7 +71817,7 @@ paths: site_admin: false headers: Link: *40 - '301': *399 + '301': *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71772,8 +71845,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 +71875,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 +71896,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 +72048,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 +72092,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 +72113,10 @@ paths: example: 6 commits: type: array - items: *506 + items: *528 files: type: array - items: *521 + items: *543 required: - url - html_url @@ -72287,7 +72360,7 @@ paths: module Test" '404': *6 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72329,8 +72402,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 +72546,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 +72678,7 @@ paths: - size - type - url - - &636 + - &658 title: Content File description: Content File type: object @@ -72806,7 +72879,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 +72948,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 +72971,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 +73065,7 @@ paths: description: Response content: application/json: - schema: &524 + schema: &546 title: File Commit description: File Commit type: object @@ -73144,7 +73217,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *546 examples: example-for-creating-a-file: value: @@ -73198,7 +73271,7 @@ paths: schema: oneOf: - *3 - - &562 + - &584 description: Repository rule violation was detected type: object properties: @@ -73219,7 +73292,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 +73324,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 +73386,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *546 examples: default: value: @@ -73348,7 +73421,7 @@ paths: '422': *15 '404': *6 '409': *99 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73368,8 +73441,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 +73565,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 +73600,8 @@ paths: default: 30 - *89 - *90 - - *263 - - *264 + - *284 + - *285 responses: '200': description: Response @@ -73536,7 +73609,7 @@ paths: application/json: schema: type: array - items: &527 + items: &549 type: object description: A Dependabot alert. properties: @@ -73582,7 +73655,7 @@ paths: - unknown - direct - transitive - security_advisory: *525 + security_advisory: *547 security_vulnerability: *107 url: *108 html_url: *109 @@ -73613,7 +73686,7 @@ paths: nullable: true maxLength: 280 fixed_at: *113 - auto_dismissed_at: *526 + auto_dismissed_at: *548 required: - number - state @@ -73843,9 +73916,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 +73933,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *549 examples: default: value: @@ -73973,9 +74046,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 +74093,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *549 examples: default: value: @@ -74149,8 +74222,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 +74241,7 @@ paths: type: integer secrets: type: array - items: &531 + items: &553 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -74221,16 +74294,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 +74323,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 +74357,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 +74387,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -74338,9 +74411,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 +74435,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 +74596,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 +74836,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 +74912,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 +74945,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 +74958,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 +75087,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 +75128,9 @@ paths: application/json: schema: type: array - items: *533 + items: *555 examples: - default: *534 + default: *556 headers: Link: *40 x-github: @@ -75123,8 +75196,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 +75278,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *555 examples: simple-example: summary: Simple example @@ -75278,9 +75351,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 +75365,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *555 examples: default: value: @@ -75357,9 +75430,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 +75454,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 +75466,7 @@ paths: application/json: schema: type: array - items: &536 + items: &558 title: Deployment Status description: The status of a deployment. type: object @@ -75484,8 +75557,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 +75627,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 +75704,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 +75762,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 +75775,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *558 examples: - default: *537 + default: *559 '404': *6 x-github: githubCloudOnly: false @@ -75731,12 +75804,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 +75819,9 @@ paths: application/json: schema: type: array - items: *542 + items: *564 examples: - default: *543 + default: *565 '404': *6 '403': *29 '500': *88 @@ -75772,8 +75845,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75785,7 +75858,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *542 + schema: *564 examples: default: value: @@ -75841,8 +75914,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75901,12 +75974,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 +75989,9 @@ paths: application/json: schema: type: array - items: *545 + items: *567 examples: - default: *546 + default: *568 '404': *6 '403': *29 '500': *88 @@ -75943,8 +76016,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75956,7 +76029,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *545 + schema: *567 examples: default: value: @@ -76014,8 +76087,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -76084,8 +76157,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 +76215,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 +76233,7 @@ paths: type: integer environments: type: array - items: &548 + items: &570 title: Environment description: Details of a deployment environment type: object @@ -76212,7 +76285,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 +76322,11 @@ paths: items: type: object properties: - type: *547 + type: *569 reviewer: anyOf: - *4 - - *235 + - *255 required: - id - node_id @@ -76273,7 +76346,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 +76462,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 +76477,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *570 examples: - default: &552 + default: &574 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -76490,9 +76563,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 +76574,7 @@ paths: type: object nullable: true properties: - wait_timer: *550 + wait_timer: *572 prevent_self_review: type: boolean example: false @@ -76518,13 +76591,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 +76617,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 +76643,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 +76670,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 +76690,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 +76747,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 +76795,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 +76839,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 +76854,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *575 examples: - default: *554 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76802,10 +76875,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 +76906,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *575 examples: - default: *554 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76854,10 +76927,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 +76955,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 +76973,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 +76992,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 +77091,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 +77114,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 +77151,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 +77172,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *557 + items: *579 examples: default: value: @@ -77134,10 +77207,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 +77222,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *578 examples: - default: *558 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77172,10 +77245,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 +77274,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 +77294,9 @@ paths: type: integer secrets: type: array - items: *422 + items: *444 examples: - default: *423 + default: *445 headers: Link: *40 x-github: @@ -77248,17 +77321,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 +77353,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 +77386,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 +77420,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -77373,10 +77446,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 +77474,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 +77494,9 @@ paths: type: integer variables: type: array - items: *426 + items: *448 examples: - default: *427 + default: *449 headers: Link: *40 x-github: @@ -77446,9 +77519,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 +77548,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -77500,18 +77573,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 +77605,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 +77650,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 +77675,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 +77686,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: 200-response: value: @@ -77680,8 +77753,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 +77776,7 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: default: value: @@ -77840,8 +77913,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 +77946,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 + default: *422 '400': *14 '422': *15 '403': *29 @@ -77896,8 +77969,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 +78029,8 @@ paths: application/json: schema: oneOf: - - *187 - - *562 + - *207 + - *584 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77982,8 +78055,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 +78155,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 +78265,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 +78479,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 +78543,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 +78562,7 @@ paths: application/json: schema: type: array - items: &565 + items: &587 title: Git Reference description: Git references within a repository type: object @@ -78564,17 +78637,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 +78676,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 +78706,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 +78734,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 +78765,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *587 examples: - default: *566 + default: *588 '422': *15 '409': *99 x-github: @@ -78712,9 +78785,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 +78842,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 +78910,7 @@ paths: description: Response content: application/json: - schema: &568 + schema: &590 title: Git Tag description: Metadata for a Git tag type: object @@ -78888,7 +78961,7 @@ paths: - sha - type - url - verification: *567 + verification: *589 required: - sha - url @@ -78898,7 +78971,7 @@ paths: - tag - message examples: - default: &569 + default: &591 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -78971,8 +79044,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 +79056,9 @@ paths: description: Response content: application/json: - schema: *568 + schema: *590 examples: - default: *569 + default: *591 '404': *6 '409': *99 x-github: @@ -79009,8 +79082,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 +79156,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 +79252,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 +79276,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *592 examples: default-response: summary: Default response @@ -79262,8 +79335,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 +79346,7 @@ paths: application/json: schema: type: array - items: &571 + items: &593 title: Webhook description: Webhooks for repositories. type: object @@ -79327,7 +79400,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 +79474,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 +79527,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *593 examples: - default: &572 + default: &594 value: type: Repository id: 12345678 @@ -79504,17 +79577,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 +79607,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 +79654,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *593 examples: - default: *572 + default: *594 '422': *15 '404': *6 x-github: @@ -79604,9 +79677,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 +79703,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 +79732,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 +79778,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 +79790,9 @@ paths: application/json: schema: type: array - items: *274 + items: *295 examples: - default: *275 + default: *296 '400': *14 '422': *15 x-github: @@ -79738,18 +79811,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 +79841,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 +79866,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 +79893,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 +79953,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 +80059,7 @@ paths: - html_url - authors_url examples: - default: &576 + default: &598 value: vcs: subversion use_lfs: true @@ -80002,7 +80075,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 +80104,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 +80153,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *595 examples: default: value: @@ -80105,7 +80178,7 @@ paths: type: string '422': *15 '404': *6 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80133,8 +80206,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 +80256,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *595 examples: example-1: summary: Example 1 @@ -80231,7 +80304,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 +80327,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 +80358,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 +80374,7 @@ paths: application/json: schema: type: array - items: &575 + items: &597 title: Porter Author description: Porter Author type: object @@ -80355,7 +80428,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 +80453,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 +80484,7 @@ paths: description: Response content: application/json: - schema: *575 + schema: *597 examples: default: value: @@ -80424,7 +80497,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 +80521,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 +80563,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80518,8 +80591,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 +80619,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 +80646,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 +80655,8 @@ paths: application/json: schema: *22 examples: - default: *577 - '301': *399 + default: *599 + '301': *421 '404': *6 x-github: githubCloudOnly: false @@ -80603,8 +80676,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 +80685,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 +80715,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 +80733,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *311 examples: - default: *579 + default: *601 '409': description: Response x-github: @@ -80684,8 +80757,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 +80781,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 +80792,9 @@ paths: application/json: schema: type: array - items: *580 + items: *602 examples: - default: &772 + default: &775 value: - id: 1 repository: @@ -80852,9 +80925,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 +80956,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *602 examples: default: value: @@ -81014,9 +81087,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 +81120,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 +81169,7 @@ paths: required: false schema: type: string - - *298 + - *319 - name: sort description: What to sort results by. in: query @@ -81109,7 +81182,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - *17 - *19 responses: @@ -81119,9 +81192,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: &591 + default: &613 value: - id: 1 node_id: MDU6SXNzdWUx @@ -81269,7 +81342,7 @@ paths: state_reason: completed headers: Link: *40 - '301': *399 + '301': *421 '422': *15 '404': *6 x-github: @@ -81298,8 +81371,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 +81454,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: &586 + default: &608 value: id: 1 node_id: MDU6SXNzdWUx @@ -81537,9 +81610,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 +81640,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 +81652,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -81589,9 +81662,9 @@ paths: application/json: schema: type: array - items: *581 + items: *603 examples: - default: &588 + default: &610 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81649,17 +81722,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 +81786,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 +81810,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *603 examples: - default: *582 + default: *604 '422': *15 x-github: githubCloudOnly: false @@ -81757,9 +81830,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 +81852,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 +81880,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -81830,9 +81903,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 +81937,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 +81968,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 +81991,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 +82002,7 @@ paths: application/json: schema: type: array - items: &585 + items: &607 title: Issue Event description: Issue Event type: object @@ -81972,8 +82045,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 +82090,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 +82155,7 @@ paths: required: - from - to - author_association: *147 + author_association: *167 lock_reason: type: string nullable: true @@ -82095,8 +82168,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 +82353,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 +82365,7 @@ paths: description: Response content: application/json: - schema: *585 + schema: *607 examples: default: value: @@ -82485,7 +82558,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *396 + '410': *418 '403': *29 x-github: githubCloudOnly: false @@ -82519,9 +82592,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 +82606,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 +82636,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 +82742,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 +82768,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 +82796,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82741,9 +82814,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 +82841,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82792,9 +82865,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 +82907,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 +82920,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 +82955,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 +82979,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 +83008,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 +83024,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 +83055,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 +83078,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &593 + - &615 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -83036,8 +83109,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 +83198,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 +83214,7 @@ paths: - performed_via_github_app - assignee - assigner - - &594 + - &616 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -83172,8 +83245,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 +83265,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &595 + - &617 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -83223,8 +83296,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 +83316,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &596 + - &618 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -83274,8 +83347,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 +83370,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 +83401,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 +83417,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 +83448,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 +83464,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 +83495,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 +83524,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &600 + - &622 title: Locked Issue Event description: Locked Issue Event type: object @@ -83482,8 +83555,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 +83572,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 +83603,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 +83638,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 +83669,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 +83704,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 +83735,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 +83770,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 +83861,7 @@ paths: color: red headers: Link: *40 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83805,9 +83878,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 +83890,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 +83937,7 @@ paths: - color - default examples: - default: &590 + default: &612 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83882,9 +83955,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 +83974,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 +84035,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 +84057,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 +84119,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 +84141,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 +84168,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 +84183,7 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: default: value: @@ -84121,9 +84194,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 +84216,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 +84246,7 @@ paths: '204': description: Response '403': *29 - '410': *396 + '410': *418 '404': *6 '422': *15 x-github: @@ -84191,9 +84264,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 +84288,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 +84316,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 +84340,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 +84374,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 +84405,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 +84437,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 +84461,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 @@ -84423,9 +84496,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 +84508,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 +84542,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 +84571,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 +84600,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 +84633,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 +84657,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 +84674,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 +84729,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 +84739,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 +84772,7 @@ paths: properties: type: type: string - issue: *160 + issue: *180 required: - event - created_at @@ -84895,7 +84968,7 @@ paths: type: string body_text: type: string - author_association: *147 + author_association: *167 required: - event - id @@ -84918,7 +84991,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 +85080,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 +85164,7 @@ paths: enum: - line - file - reactions: *148 + reactions: *168 body_html: type: string example: '"

comment body

"' @@ -85127,7 +85200,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 +85231,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 +85275,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 +85319,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 +85489,7 @@ paths: headers: Link: *40 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85433,8 +85506,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 +85517,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 +85582,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 +85619,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 +85655,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 +85669,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *627 examples: - default: *606 + default: *628 '404': *6 x-github: githubCloudOnly: false @@ -85616,9 +85689,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 +85711,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 +85722,9 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 + default: *612 headers: Link: *40 '404': *6 @@ -85672,8 +85745,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 +85782,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: - default: &608 + default: &630 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -85743,8 +85816,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 +85828,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: - default: *608 + default: *630 '404': *6 x-github: githubCloudOnly: false @@ -85774,8 +85847,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 +85887,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: default: value: @@ -85840,8 +85913,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 +85940,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 +85977,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 +86006,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 +86033,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 +86097,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true required: - _links @@ -86107,8 +86180,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 +86246,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 +86281,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 +86308,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 +86350,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 +86411,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 +86452,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 +86513,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 +86527,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *632 examples: - default: *611 + default: *633 '404': *6 x-github: githubCloudOnly: false @@ -86473,9 +86546,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 +86586,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *632 examples: - default: *611 + default: *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86531,9 +86604,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 +86627,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 +86639,9 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 + default: *612 headers: Link: *40 x-github: @@ -86587,12 +86660,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 +86675,9 @@ paths: application/json: schema: type: array - items: *173 + items: *193 examples: - default: *616 + default: *638 headers: Link: *40 x-github: @@ -86628,8 +86701,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 +86760,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 +86892,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 +86933,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 +86988,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *639 examples: - default: *618 + default: *640 '422': *15 '409': *99 x-github: @@ -86940,8 +87013,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 +87121,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 +87148,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 +87159,7 @@ paths: application/json: schema: type: array - items: &619 + items: &641 title: Page Build description: Page Build type: object @@ -87180,8 +87253,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 +87299,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 +87356,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 +87368,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *641 examples: - default: *620 + default: *642 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87317,8 +87390,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 +87496,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 +87556,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 +87585,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 +87817,7 @@ paths: description: Empty response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -87771,8 +87844,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 +87882,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 +87904,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 +87928,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 +87950,7 @@ paths: application/json: schema: type: array - items: *329 + items: *350 examples: default: value: @@ -87917,7 +87990,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *396 + '410': *418 '422': *7 x-github: githubCloudOnly: false @@ -87940,8 +88013,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 +88040,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 +88069,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 +88078,7 @@ paths: application/json: schema: type: array - items: *331 + items: *352 examples: default: value: @@ -88036,8 +88109,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 +88122,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 +88172,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 +88233,9 @@ paths: application/json: schema: type: array - items: *622 + items: *644 examples: - default: *623 + default: *645 headers: Link: *40 '304': *37 @@ -88194,8 +88267,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 +88333,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 +88444,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 +88490,7 @@ paths: nullable: true requested_teams: type: array - items: *352 + items: *374 nullable: true head: type: object @@ -88456,14 +88529,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 +88546,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 +88639,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 +89166,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 +89186,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -89123,9 +89196,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 +89275,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 +89360,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 +89384,9 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: - default: *626 + default: *648 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89329,9 +89402,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 +89425,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 +89453,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -89403,9 +89476,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 +89510,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 +89541,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 +89587,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 +89602,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 +89613,7 @@ paths: application/json: schema: *3 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89566,9 +89639,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 +89683,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *649 examples: - default: *628 + default: *650 '422': *15 '403': *29 x-github: @@ -89634,9 +89707,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 +89769,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 +89809,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 +89822,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -89759,9 +89832,9 @@ paths: application/json: schema: type: array - items: *625 + items: *647 examples: - default: *630 + default: *652 headers: Link: *40 x-github: @@ -89794,9 +89867,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 +89974,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: example-for-a-multi-line-comment: value: @@ -89989,10 +90062,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 +90087,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: default: value: @@ -90100,9 +90173,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 +90185,9 @@ paths: application/json: schema: type: array - items: *506 + items: *528 examples: - default: *631 + default: *653 headers: Link: *40 x-github: @@ -90144,9 +90217,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 +90229,7 @@ paths: application/json: schema: type: array - items: *521 + items: *543 examples: default: value: @@ -90175,7 +90248,7 @@ paths: Link: *40 '422': *15 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90194,9 +90267,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 +90292,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 +90405,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 +90423,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 required: - users - teams @@ -90409,9 +90482,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 +90521,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *644 examples: default: value: @@ -90984,9 +91057,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 +91093,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *644 examples: default: value: @@ -91525,9 +91598,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 +91610,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 +91679,7 @@ paths: type: string body_text: type: string - author_association: *147 + author_association: *167 required: - id - node_id @@ -91688,9 +91761,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 +91849,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: &634 + default: &656 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91841,10 +91914,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 +91929,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: &635 + default: &657 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91917,10 +91990,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 +92016,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: default: value: @@ -92005,18 +92078,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 +92116,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 +92198,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 +92213,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 +92354,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 +92385,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: default: value: @@ -92375,10 +92448,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 +92486,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: *635 + default: *657 '404': *6 '422': *7 '403': *29 @@ -92437,9 +92510,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 +92575,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 +92589,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *658 examples: - default: &637 + default: &659 value: type: file encoding: base64 @@ -92560,8 +92633,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 +92654,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *658 examples: - default: *637 + default: *659 '404': *6 '422': *15 x-github: @@ -92605,8 +92678,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 +92689,7 @@ paths: application/json: schema: type: array - items: &638 + items: &660 title: Release description: A release. type: object @@ -92683,7 +92756,7 @@ paths: author: *4 assets: type: array - items: &639 + items: &661 title: Release Asset description: Data related to a release. type: object @@ -92758,7 +92831,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *148 + reactions: *168 required: - assets_url - upload_url @@ -92870,8 +92943,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 +93020,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 +93127,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 +93141,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 +93178,7 @@ paths: type: User site_admin: false '404': *6 - '302': *523 + '302': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93121,9 +93194,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 +93224,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *661 examples: - default: *641 + default: *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93169,9 +93242,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 +93268,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 +93354,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 +93380,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 +93394,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *660 examples: - default: *642 + default: *664 '404': *6 x-github: githubCloudOnly: false @@ -93345,9 +93418,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 +93434,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 +93454,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 +93520,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 +93543,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 +93565,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 +93577,7 @@ paths: application/json: schema: type: array - items: *639 + items: *661 examples: default: value: @@ -93586,9 +93659,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 +93687,7 @@ paths: description: Response for successful upload content: application/json: - schema: *639 + schema: *661 examples: response-for-successful-upload: value: @@ -93669,9 +93742,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 +93768,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -93718,9 +93791,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 +93823,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 +93854,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 +93881,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 +93899,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 +93920,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 +94017,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 - name: includes_parents @@ -93956,7 +94029,7 @@ paths: schema: type: boolean default: true - - *666 + - *668 responses: '200': description: Response @@ -93964,7 +94037,7 @@ paths: application/json: schema: type: array - items: *133 + items: *152 examples: default: value: @@ -94011,8 +94084,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 requestBody: description: Request body required: true @@ -94041,7 +94114,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *132 + items: *669 required: - name - enforcement @@ -94072,9 +94145,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 +94194,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 +94207,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *673 examples: - default: *671 + default: *674 '404': *6 '500': *88 x-github: @@ -94157,17 +94230,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 +94268,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94216,9 +94289,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *675 + default: *678 '404': *6 '500': *88 put: @@ -94236,8 +94309,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94271,7 +94344,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *132 + items: *669 examples: default: value: @@ -94299,9 +94372,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *675 + default: *678 '404': *6 '500': *88 delete: @@ -94319,8 +94392,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94343,8 +94416,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 +94433,9 @@ paths: application/json: schema: type: array - items: *136 + items: *156 examples: - default: *339 + default: *361 '404': *6 '500': *88 x-github: @@ -94381,8 +94454,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 +94473,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *362 examples: default: value: @@ -94455,21 +94528,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 +94550,7 @@ paths: application/json: schema: type: array - items: &681 + items: &684 type: object properties: number: *103 @@ -94496,8 +94569,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 +94666,7 @@ paths: pull request. ' - oneOf: *680 + oneOf: *683 nullable: true has_more_locations: type: boolean @@ -94721,7 +94794,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 +94816,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 +94856,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 +94877,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 +94887,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 +94906,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *684 examples: default: value: @@ -94886,7 +94959,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 +94981,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 +94994,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &857 + items: &860 type: object properties: type: @@ -94947,9 +95020,6 @@ paths: example: commit details: oneOf: - - *682 - - *683 - - *684 - *685 - *686 - *687 @@ -94960,6 +95030,9 @@ paths: - *692 - *693 - *694 + - *695 + - *696 + - *697 examples: default: value: @@ -95023,7 +95096,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 +95118,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 +95127,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 +95151,7 @@ paths: schema: type: object properties: - reason: *696 + reason: *699 expire_at: type: string format: date-time @@ -95101,7 +95174,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 +95194,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 +95210,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 +95236,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 +95314,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 +95359,9 @@ paths: application/json: schema: type: array - items: *698 + items: *701 examples: - default: *699 + default: *702 '400': *14 '404': *6 x-github: @@ -95311,8 +95384,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 +95458,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 required: - login - type @@ -95472,9 +95545,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 +95780,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 +95885,7 @@ paths: description: Response content: application/json: - schema: *698 + schema: *701 examples: default: value: @@ -95959,17 +96032,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 +96066,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 +96141,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 required: - login - type @@ -96154,17 +96227,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 +96268,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 +96297,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 +96333,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 +96433,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 +96443,7 @@ paths: application/json: schema: type: array - items: &702 + items: &705 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -96403,8 +96476,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 +96553,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 +96650,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 +96805,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 +96816,7 @@ paths: application/json: schema: type: array - items: *702 + items: *705 examples: default: value: @@ -96776,8 +96849,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 +96904,7 @@ paths: description: Response content: application/json: - schema: *703 + schema: *706 examples: default: value: @@ -96885,8 +96958,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 +96971,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -96918,14 +96991,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 +97066,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 +97093,7 @@ paths: description: Response content: application/json: - schema: *704 + schema: *707 examples: default: value: @@ -97047,8 +97120,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 +97141,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 +97221,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 +97230,7 @@ paths: application/json: schema: type: array - items: &705 + items: &708 title: Tag protection description: Tag protection type: object @@ -97209,8 +97282,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 +97306,7 @@ paths: description: Response content: application/json: - schema: *705 + schema: *708 examples: default: value: @@ -97264,8 +97337,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 +97375,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 +97412,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 +97423,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 headers: Link: *40 '404': *6 @@ -97372,8 +97445,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 +97454,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 +97466,7 @@ paths: required: - names examples: - default: &707 + default: &710 value: names: - octocat @@ -97416,8 +97489,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 +97521,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *709 examples: - default: *707 + default: *710 '404': *6 '422': *7 x-github: @@ -97471,9 +97544,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 +97575,7 @@ paths: example: 128 clones: type: array - items: &709 + items: &712 title: Traffic type: object properties: @@ -97589,8 +97662,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 +97753,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 +97814,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 +97835,7 @@ paths: example: 3782 views: type: array - items: *709 + items: *712 required: - uniques - count @@ -97839,8 +97912,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 +97949,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *224 examples: default: value: @@ -98114,8 +98187,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 +98211,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 +98234,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 +98261,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 +98354,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 +98397,7 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: default: value: @@ -98434,7 +98507,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 +98516,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 +98527,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 +98569,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &711 + items: &714 allOf: - type: object required: @@ -98571,7 +98644,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 +98704,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 +98752,7 @@ paths: required: true content: application/json: - schema: &720 + schema: &723 type: object required: - schemas @@ -98735,9 +98808,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 +98829,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 +98852,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 +98860,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 +98894,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 +98926,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 +98960,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 +99026,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 +99052,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 +99096,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *722 - - *723 + - *725 + - *726 - *41 responses: '200': @@ -99057,7 +99130,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &726 + items: &729 allOf: - type: object required: @@ -99136,7 +99209,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 +99265,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 +99302,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 +99330,7 @@ paths: required: true content: application/json: - schema: &729 + schema: &732 type: object required: - schemas @@ -99339,9 +99412,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 +99461,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 +99489,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 +99512,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 +99525,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 +99555,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 +99613,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 +99659,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 +99690,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 +99787,7 @@ paths: example: 1 Resources: type: array - items: &732 + items: &735 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -99945,22 +100018,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 +100059,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 +100084,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 +100192,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 +100226,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 +100350,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 +100453,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 +100573,7 @@ paths: html_url: type: string format: uri - repository: *204 + repository: *224 score: type: number file_size: @@ -100518,7 +100591,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &736 + text_matches: &739 title: Search Result Text Matches type: array items: @@ -100632,7 +100705,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 +100754,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 +100825,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *442 + properties: *464 nullable: true comment_count: type: integer @@ -100772,7 +100845,7 @@ paths: url: type: string format: uri - verification: *567 + verification: *589 required: - author - committer @@ -100791,7 +100864,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 +100877,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 +101065,7 @@ paths: - interactions - created - updated - - *737 + - *740 - *17 - *19 - name: advanced_search @@ -101119,8 +101192,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 +101207,7 @@ paths: type: string format: date-time nullable: true - text_matches: *736 + text_matches: *739 pull_request: type: object properties: @@ -101167,7 +101240,7 @@ paths: type: string score: type: number - author_association: *147 + author_association: *167 draft: type: boolean repository: *64 @@ -101178,7 +101251,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 +101261,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 +101379,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *137 + '503': *157 '422': *15 '304': *37 '403': *29 @@ -101362,7 +101435,7 @@ paths: enum: - created - updated - - *737 + - *740 - *17 - *19 responses: @@ -101406,7 +101479,7 @@ paths: nullable: true score: type: number - text_matches: *736 + text_matches: *739 required: - id - node_id @@ -101492,7 +101565,7 @@ paths: - forks - help-wanted-issues - updated - - *737 + - *740 - *17 - *19 responses: @@ -101711,8 +101784,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 +101804,7 @@ paths: - admin - pull - push - text_matches: *736 + text_matches: *739 temp_clone_token: type: string allow_merge_commit: @@ -101933,7 +102006,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 +102105,7 @@ paths: type: string format: uri nullable: true - text_matches: *736 + text_matches: *739 related: type: array nullable: true @@ -102225,7 +102298,7 @@ paths: - followers - repositories - joined - - *737 + - *740 - *17 - *19 responses: @@ -102329,7 +102402,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *736 + text_matches: *739 blog: type: string nullable: true @@ -102388,7 +102461,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 +102481,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 +102493,9 @@ paths: description: Response content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '404': *6 x-github: githubCloudOnly: false @@ -102449,7 +102522,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 +102585,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 +102622,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 +102653,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 +102664,9 @@ paths: application/json: schema: type: array - items: *368 + items: *390 examples: - default: *739 + default: *742 headers: Link: *40 x-github: @@ -102622,7 +102695,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 +102729,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *369 + default: *391 x-github: triggersNotification: true githubCloudOnly: false @@ -102685,16 +102758,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 +102792,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 +102816,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *740 + default: *743 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102770,8 +102843,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 +102873,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 +102885,9 @@ paths: application/json: schema: type: array - items: *371 + items: *393 examples: - default: *741 + default: *744 headers: Link: *40 x-github: @@ -102843,8 +102916,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 +102939,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *372 + default: *394 x-github: triggersNotification: true githubCloudOnly: false @@ -102895,17 +102968,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 +103003,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 +103027,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *742 + default: *745 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102981,9 +103054,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 +103085,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 +103113,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -103071,9 +103144,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 +103178,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103133,8 +103206,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 +103233,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -103191,8 +103264,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 +103297,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103250,7 +103323,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 +103333,9 @@ paths: application/json: schema: type: array - items: *292 + items: *313 examples: - default: *293 + default: *314 headers: Link: *40 x-github: @@ -103288,7 +103361,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 +103384,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -103339,8 +103412,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 +103449,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 +103489,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 +103526,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 +103568,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 +103594,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 +103630,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 +103659,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 +103669,9 @@ paths: application/json: schema: type: array - items: *383 + items: *405 examples: - default: *745 + default: *748 headers: Link: *40 '404': *6 @@ -103624,16 +103697,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 +103730,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 +103798,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 +103826,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 +103836,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '404': *6 @@ -103795,15 +103868,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 +104027,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 +104079,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 +104110,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 +104145,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 +104202,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *409 examples: default: value: @@ -104160,7 +104233,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 +104243,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 +104278,7 @@ paths: application/json: schema: oneOf: - - &750 + - &753 title: Private User description: Private User type: object @@ -104408,7 +104481,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 +104634,7 @@ paths: description: Response content: application/json: - schema: *750 + schema: *753 examples: default: value: @@ -104640,7 +104713,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '304': *37 '404': *6 '403': *29 @@ -104663,7 +104736,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 +104764,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 +104788,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 +104837,9 @@ paths: type: integer codespaces: type: array - items: *301 + items: *322 examples: - default: *302 + default: *323 '304': *37 '500': *88 '401': *25 @@ -104905,21 +104978,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 +105032,7 @@ paths: type: integer secrets: type: array - items: &751 + items: &754 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -104999,7 +105072,7 @@ paths: - visibility - selected_repositories_url examples: - default: *498 + default: *520 headers: Link: *40 x-github: @@ -105069,13 +105142,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 +105178,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 +105223,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -105178,7 +105251,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 +105276,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 +105292,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: *752 + default: *755 '401': *25 '403': *29 '404': *6 @@ -105246,7 +105319,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 +105373,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 +105406,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 +105438,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 +105472,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 +105502,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '401': *25 '403': *29 '404': *6 @@ -105453,7 +105526,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 +105555,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 +105602,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 +105634,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 +105647,9 @@ paths: description: Response content: application/json: - schema: *753 + schema: *756 examples: - default: *754 + default: *757 '404': *6 x-github: githubCloudOnly: false @@ -105597,7 +105670,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 +105686,9 @@ paths: type: integer machines: type: array - items: *755 + items: *758 examples: - default: *756 + default: *759 '304': *37 '500': *88 '401': *25 @@ -105644,7 +105717,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 +105767,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 +106547,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 +106587,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 +106625,9 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: &769 + default: &772 value: - id: 197 name: hello_docker @@ -106655,7 +106728,7 @@ paths: application/json: schema: type: array - items: &757 + items: &760 title: Email description: Email type: object @@ -106720,9 +106793,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 +106870,7 @@ paths: application/json: schema: type: array - items: *757 + items: *760 examples: default: value: @@ -106907,7 +106980,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '304': *37 @@ -106940,7 +107013,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '304': *37 @@ -106962,7 +107035,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 +107065,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 +107090,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 +107126,7 @@ paths: application/json: schema: type: array - items: &758 + items: &761 title: GPG Key description: A unique encryption key type: object @@ -107184,7 +107257,7 @@ paths: - subkeys - revoked examples: - default: &785 + default: &788 value: - id: 3 name: Octocat's GPG Key @@ -107269,9 +107342,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 +107401,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 +107413,9 @@ paths: description: Response content: application/json: - schema: *758 + schema: *761 examples: - default: *759 + default: *762 '404': *6 '304': *37 '403': *29 @@ -107365,7 +107438,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 +107629,7 @@ paths: type: array items: *64 examples: - default: *761 + default: *764 headers: Link: *40 '404': *6 @@ -107581,7 +107654,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 +107680,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 +107714,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 +107743,7 @@ paths: required: true content: application/json: - schema: *578 + schema: *600 examples: default: value: @@ -107681,7 +107754,7 @@ paths: description: Response content: application/json: - schema: *290 + schema: *311 examples: default: value: @@ -107762,7 +107835,7 @@ paths: - closed - all default: open - - *298 + - *319 - name: sort description: What to sort results by. in: query @@ -107775,7 +107848,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - *17 - *19 responses: @@ -107785,9 +107858,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: *299 + default: *320 headers: Link: *40 '404': *6 @@ -107820,7 +107893,7 @@ paths: application/json: schema: type: array - items: &762 + items: &765 title: Key description: Key type: object @@ -107917,9 +107990,9 @@ paths: description: Response content: application/json: - schema: *762 + schema: *765 examples: - default: &763 + default: &766 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107952,15 +108025,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 +108056,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 +108089,7 @@ paths: application/json: schema: type: array - items: &764 + items: &767 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -108073,7 +108146,7 @@ paths: - id - type - login - plan: *164 + plan: *184 required: - billing_cycle - next_billing_date @@ -108084,7 +108157,7 @@ paths: - account - plan examples: - default: &765 + default: &768 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -108146,9 +108219,9 @@ paths: application/json: schema: type: array - items: *764 + items: *767 examples: - default: *765 + default: *768 headers: Link: *40 '304': *37 @@ -108188,7 +108261,7 @@ paths: application/json: schema: type: array - items: *304 + items: *325 examples: default: value: @@ -108296,7 +108369,7 @@ paths: description: Response content: application/json: - schema: *304 + schema: *325 examples: default: value: @@ -108379,7 +108452,7 @@ paths: description: Response content: application/json: - schema: *304 + schema: *325 examples: default: value: @@ -108447,7 +108520,7 @@ paths: application/json: schema: type: array - items: *306 + items: *327 examples: default: value: @@ -108700,7 +108773,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -108880,7 +108953,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 +108966,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -109087,7 +109160,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 +109186,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 +109215,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 +109240,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 +109250,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '404': *6 @@ -109216,7 +109289,7 @@ paths: type: array items: *59 examples: - default: *767 + default: *770 headers: Link: *40 '304': *37 @@ -109258,7 +109331,7 @@ paths: - docker - nuget - container - - *768 + - *771 - *19 - *17 responses: @@ -109268,10 +109341,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 +109364,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 +109486,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 +109517,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 +109550,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 +109571,7 @@ paths: application/json: schema: type: array - items: *317 + items: *338 examples: default: value: @@ -109547,15 +109620,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 +109664,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 +109696,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 +109754,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: default: value: @@ -109753,9 +109826,9 @@ paths: application/json: schema: type: array - items: *757 + items: *760 examples: - default: *771 + default: *774 headers: Link: *40 '304': *37 @@ -109868,7 +109941,7 @@ paths: type: array items: *64 examples: - default: &778 + default: &781 summary: Default response value: - id: 1296269 @@ -110172,9 +110245,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 +110285,9 @@ paths: application/json: schema: type: array - items: *580 + items: *602 examples: - default: *772 + default: *775 headers: Link: *40 '304': *37 @@ -110237,7 +110310,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 +110333,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 +110366,7 @@ paths: application/json: schema: type: array - items: &773 + items: &776 title: Social account description: Social media account type: object @@ -110308,7 +110381,7 @@ paths: - provider - url examples: - default: &774 + default: &777 value: - provider: twitter url: https://twitter.com/github @@ -110370,9 +110443,9 @@ paths: application/json: schema: type: array - items: *773 + items: *776 examples: - default: *774 + default: *777 '422': *15 '304': *37 '404': *6 @@ -110459,7 +110532,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 +110552,7 @@ paths: - title - created_at examples: - default: &787 + default: &790 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110545,9 +110618,9 @@ paths: description: Response content: application/json: - schema: *775 + schema: *778 examples: - default: &776 + default: &779 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110578,7 +110651,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 +110663,9 @@ paths: description: Response content: application/json: - schema: *775 + schema: *778 examples: - default: *776 + default: *779 '404': *6 '304': *37 '403': *29 @@ -110615,7 +110688,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 +110717,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 +110742,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 +110902,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 +110931,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 +110956,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 +110990,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '304': *37 @@ -110956,7 +111029,7 @@ paths: application/json: schema: type: array - items: *366 + items: *388 examples: default: value: @@ -111034,7 +111107,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 +111115,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 +111153,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 +111213,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 +111224,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: example: ; rel="next" @@ -111181,7 +111254,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 +111262,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 +111292,7 @@ paths: - *17 - *89 - *90 - - *226 + - *246 requestBody: required: true content: @@ -111242,8 +111315,8 @@ paths: required: - subject_digests examples: - default: *782 - withPredicateType: *783 + default: *785 + withPredicateType: *786 responses: '200': description: Response @@ -111296,7 +111369,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 +111387,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 +111452,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 +111483,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 +111521,7 @@ paths: - *17 - *89 - *90 - - *226 + - *246 - name: subject_digest description: Subject Digest in: path @@ -111498,12 +111571,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 +111602,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 +111610,9 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: *769 + default: *772 '403': *29 '401': *25 x-github: @@ -111562,7 +111635,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 +111645,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111643,7 +111716,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 +111727,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111733,7 +111806,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 +111816,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111810,7 +111883,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 +111895,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -111841,7 +111914,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 +111926,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -111872,7 +111945,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 +111972,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 +111983,9 @@ paths: application/json: schema: type: array - items: *151 + items: *171 examples: - default: *152 + default: *172 headers: Link: *40 '422': *15 @@ -111933,7 +112006,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 +112016,9 @@ paths: application/json: schema: type: array - items: *758 + items: *761 examples: - default: *785 + default: *788 headers: Link: *40 x-github: @@ -111969,7 +112042,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 +112114,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 +112122,7 @@ paths: application/json: schema: *22 examples: - default: *577 + default: *599 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112067,7 +112140,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 +112191,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 +112203,7 @@ paths: type: array items: *59 examples: - default: *767 + default: *770 headers: Link: *40 x-github: @@ -112169,8 +112242,8 @@ paths: - docker - nuget - container - - *768 - - *226 + - *771 + - *246 - *19 - *17 responses: @@ -112180,12 +112253,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 +112278,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 +112309,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 +112343,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 +112377,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 +112387,7 @@ paths: application/json: schema: type: array - items: *317 + items: *338 examples: default: value: @@ -112372,16 +112445,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 +112489,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 +112524,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 +112553,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 +112574,7 @@ paths: application/json: schema: type: array - items: *329 + items: *350 examples: default: value: @@ -112563,7 +112636,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 +112646,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -112652,7 +112725,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 +112735,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -112739,7 +112812,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 +112855,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -112808,15 +112881,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 +112911,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 +112941,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 +112969,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 +113044,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112989,7 +113062,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 +113072,9 @@ paths: application/json: schema: type: array - items: *773 + items: *776 examples: - default: *774 + default: *777 headers: Link: *40 x-github: @@ -113021,7 +113094,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 +113104,9 @@ paths: application/json: schema: type: array - items: *775 + items: *778 examples: - default: *787 + default: *790 headers: Link: *40 x-github: @@ -113057,8 +113130,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 +113143,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 +113166,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 +113176,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -113233,7 +113306,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 +113364,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 +113383,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 +113443,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 +113469,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 +114132,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 +114283,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 +114362,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 +114589,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 +114776,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 +114851,7 @@ x-webhooks: required: true content: application/json: - schema: &797 + schema: &800 title: Exemption request cancellation event type: object properties: @@ -114786,11 +114859,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 +115096,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 +115204,7 @@ x-webhooks: required: true content: application/json: - schema: &798 + schema: &801 title: Exemption request completed event type: object properties: @@ -115139,11 +115212,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 +115286,7 @@ x-webhooks: required: true content: application/json: - schema: &799 + schema: &802 title: Exemption request created event type: object properties: @@ -115221,11 +115294,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 +115368,7 @@ x-webhooks: required: true content: application/json: - schema: &800 + schema: &803 title: Exemption response dismissed event type: object properties: @@ -115303,12 +115376,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 +115453,7 @@ x-webhooks: required: true content: application/json: - schema: &801 + schema: &804 title: Exemption response submitted event type: object properties: @@ -115388,12 +115461,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 +115539,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 +115606,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 +115673,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 +115740,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 +115808,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 +115886,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 +115939,8 @@ x-webhooks: type: string pull_requests: type: array - items: *457 - repository: *204 + items: *479 + repository: *224 status: example: completed type: string @@ -115904,7 +115977,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *802 + deployment: *805 details_url: example: https://example.com type: string @@ -115954,7 +116027,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 +116062,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 +116457,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 +116856,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 +117264,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 +118244,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 +118917,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 +119584,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 +119750,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 +119895,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 +120070,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 +120300,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 +120400,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 +120568,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 +120736,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 +120902,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 +121004,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 +121172,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 +121275,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 +121415,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 +121677,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 +121760,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 +121781,7 @@ x-webhooks: enum: - tag - branch - repository: *793 + repository: *796 sender: *4 required: - ref @@ -121791,9 +121864,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 +121951,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 +122031,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 +122111,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 +122190,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 +122278,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 +122373,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 +122461,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 +122549,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 +122635,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 +122721,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 +122808,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 +122894,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 +122975,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 +123013,8 @@ x-webhooks: - verified - created_at - read_only - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -123018,11 +123091,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 +123656,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 +124387,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 +124464,7 @@ x-webhooks: type: string enum: - approved - approver: &809 + approver: &812 type: object properties: avatar_url: @@ -124434,11 +124507,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 +124590,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &811 + workflow_job_run: &814 type: object properties: conclusion: @@ -125248,18 +125321,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 +126036,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 +127941,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 +128626,7 @@ x-webhooks: type: string enum: - answered - answer: &815 + answer: &818 type: object properties: author_association: @@ -128710,7 +128783,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &813 + discussion: &816 title: Discussion description: A Discussion in a repository. type: object @@ -128996,7 +129069,7 @@ x-webhooks: - id labels: type: array - items: *589 + items: *611 required: - repository_url - category @@ -129018,10 +129091,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 +129221,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 +129308,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 +129394,7 @@ x-webhooks: type: string enum: - created - comment: &814 + comment: &817 type: object properties: author_association: @@ -129478,11 +129551,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 +129638,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 +129738,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 +129827,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 +129913,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 +130017,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 +130103,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 +130138,8 @@ x-webhooks: - color - default - description - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130149,11 +130222,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 +130308,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 +130394,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 +130483,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 +130575,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 +130660,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 +130748,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 +130834,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 +130907,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 +130970,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 +131036,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 +131102,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 +131168,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 +131234,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 +131300,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 +131367,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 +132027,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 +132175,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 +132214,7 @@ x-webhooks: - action - sha - html_url - repository: *793 + repository: *796 sender: *4 required: - pages @@ -132217,10 +132290,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 +132319,8 @@ x-webhooks: - name - full_name - private - repository: *793 - requester: *817 + repository: *796 + requester: *820 sender: *4 required: - action @@ -132322,11 +132395,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 +132475,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 +132555,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 +132604,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 +132691,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 +132721,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 +132802,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 +132985,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 +133067,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 +133195,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 +133323,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 +134147,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -134407,8 +134480,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -134488,7 +134561,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 +134726,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 +135546,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -135808,8 +135881,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -135889,7 +135962,7 @@ x-webhooks: type: string enum: - edited - changes: &849 + changes: &852 description: The changes to the comment. type: object properties: @@ -135901,9 +135974,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 +136798,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -137058,8 +137131,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -137141,10 +137214,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 +138035,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -138063,8 +138136,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -138144,8 +138217,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 +139041,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -139204,8 +139277,8 @@ x-webhooks: required: - state - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -139284,8 +139357,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 +140172,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -140199,8 +140272,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -140279,8 +140352,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 +141189,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -141195,7 +141268,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 +141406,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -141433,8 +141506,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 +142322,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -142353,9 +142426,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 +142508,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 +143323,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -143354,9 +143427,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 +143509,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 +144348,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -144356,8 +144429,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -144436,8 +144509,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 +145345,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -145350,9 +145423,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 +146399,7 @@ x-webhooks: required: - login - id - type: *295 + type: *316 required: - id - number @@ -146795,8 +146868,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 +147687,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -147714,8 +147787,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -147795,9 +147868,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 +148682,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -148709,8 +148782,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -148789,8 +148862,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 +149780,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 +150677,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -151172,11 +151245,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 +151329,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 +151415,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &852 + assignee: &855 title: User type: object nullable: true @@ -151412,11 +151485,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 +151568,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 +151653,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 +152493,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -152498,8 +152571,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152579,11 +152652,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 +152735,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 +152820,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 +152902,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 +153016,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 +153102,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 +153187,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 +153268,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153275,10 +153348,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 +153434,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153443,10 +153516,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 +153601,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153609,8 +153682,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 +153765,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 +153847,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 +153954,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 +154058,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 +154141,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 +154223,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 +154303,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 +154493,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 +154574,7 @@ x-webhooks: required: - login - id - team: *827 + team: *830 required: - action - scope @@ -154583,8 +154656,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 +154676,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 +154770,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 +154846,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 +154955,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 +155045,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 +155128,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 +155267,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155274,11 +155347,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 +155461,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 +155545,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 +155628,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 +155711,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 +155794,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 +155903,8 @@ x-webhooks: - role - organization_url - user - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155909,11 +155982,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 +156065,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 +156182,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 +156263,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 +156354,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 +156434,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 +156935,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &834 + items: &837 title: Ruby Gems metadata type: object properties: @@ -156957,7 +157030,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -157033,9 +157106,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 +157461,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *834 + items: *837 source_url: type: string format: uri @@ -157458,7 +157531,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -157635,12 +157708,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 +157790,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 +157936,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 +158016,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 +158096,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 +158175,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 +158284,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 +158316,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 +158562,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 +158684,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -158692,11 +158765,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 +158849,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 +158979,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 +159074,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 +159172,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 +159364,7 @@ x-webhooks: type: string required: - after_id - repository: *793 + repository: *796 sender: *4 required: - action @@ -159371,10 +159444,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 +159571,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -159578,10 +159651,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 +159693,7 @@ x-webhooks: - name - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -159699,18 +159772,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 +159873,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 +159957,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 +160041,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 +160125,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 +160238,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 +160321,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 +160406,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 +160551,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 +160634,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 +160753,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 +160838,7 @@ x-webhooks: type: string enum: - archived - changes: &844 + changes: &847 type: object properties: archived_at: @@ -160779,9 +160852,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 +160988,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 +161072,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 +161155,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 +161263,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 +161281,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 +161304,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *842 - - *843 + - *845 + - *846 required: - field_value - type: object @@ -161248,9 +161321,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 +161418,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 +161503,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 +161588,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 +161671,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 +161800,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 +161938,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 +162011,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 +162091,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 +164380,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -164389,11 +164462,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 +166744,7 @@ x-webhooks: - draft reason: type: string - repository: *793 + repository: *796 sender: *4 required: - action @@ -166753,11 +166826,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 +169108,7 @@ x-webhooks: - draft reason: type: string - repository: *793 + repository: *796 sender: *4 required: - action @@ -169117,13 +169190,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 +169258,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *793 + repository: *796 sender: *4 required: - action @@ -169266,12 +169339,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 +169424,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 +171691,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -171697,11 +171770,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 +174056,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *793 + repository: *796 sender: *4 required: - action @@ -174107,12 +174180,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 +174265,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 +176536,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -176543,11 +176616,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 +178902,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -178910,10 +178983,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 +181266,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -181273,12 +181346,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 +181430,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 +181516,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 +181601,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 +181972,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 +184144,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -184151,7 +184224,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 +184509,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 +186669,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -186676,11 +186749,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 +188914,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -188922,9 +188995,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 +191170,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 +191413,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 +193469,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 +193699,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 +195987,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_reviewer: title: User type: object @@ -195998,12 +196071,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 +198366,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 +198558,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 +200848,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_reviewer: title: User type: object @@ -200860,12 +200933,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 +203214,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 +203395,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 +205572,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 - review: *851 + repository: *796 + review: *854 sender: *4 required: - action @@ -205580,9 +205653,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 +207725,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 + repository: *796 sender: *4 thread: type: object @@ -208035,9 +208108,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 +210166,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 + repository: *796 sender: *4 thread: type: object @@ -210479,10 +210552,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 +212826,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -212835,11 +212908,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 +215195,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -215201,11 +215274,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 +217551,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -217559,10 +217632,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 +219900,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -220027,7 +220100,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 +220192,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 +220768,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 +221216,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *834 + items: *837 summary: type: string tag_name: @@ -221197,7 +221270,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -221275,9 +221348,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 +221658,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *834 + items: *837 summary: type: string tag_name: @@ -221634,7 +221707,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -221711,10 +221784,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 +222100,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *793 + repository: *796 sender: *4 required: - action @@ -222104,11 +222177,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 +222298,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 +222380,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 +222699,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *793 + repository: *796 sender: *4 required: - action @@ -222702,10 +222775,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 +223092,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *793 + repository: *796 sender: *4 required: - action @@ -223095,11 +223168,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 +223248,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 +223328,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 +223408,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 +223488,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 +223568,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 +223649,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 +223736,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 +223851,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 +223926,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 +224010,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 +224090,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 +224187,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 +224270,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 +224352,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 +224434,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 +224499,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 +224742,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 +224823,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 +224904,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 +225025,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 +225234,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 +225315,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 +225518,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 +225599,7 @@ x-webhooks: type: string enum: - created - alert: &856 + alert: &859 type: object properties: number: *103 @@ -225637,10 +225710,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 +225794,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 +226036,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 +226118,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 +226200,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 +226282,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 +226412,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 +226493,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 +226680,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 +226757,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 +226944,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 +227026,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 +227332,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 +227425,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 +227507,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 +227591,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &861 + changes: &864 type: object properties: tier: @@ -227562,13 +227635,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 +227718,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 +227798,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 +227884,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 +228307,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 +228424,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 +228516,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 +228608,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 +228700,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 +228785,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 +228980,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 +229440,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -229443,9 +229516,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 +229976,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -229980,9 +230053,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 +230513,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -230584,9 +230657,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 +231117,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - changes @@ -231122,9 +231195,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 +231655,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -231658,10 +231731,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 +231807,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 +231898,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 +232138,7 @@ x-webhooks: type: string required: - conclusion - deployment: *533 + deployment: *555 required: - action - repository @@ -232144,10 +232217,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 +232480,7 @@ x-webhooks: required: - status - steps - deployment: *533 + deployment: *555 required: - action - repository @@ -232486,10 +232559,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 +232697,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *533 + deployment: *555 required: - action - repository @@ -232703,10 +232776,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 +232915,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *533 + deployment: *555 required: - action - repository @@ -232922,12 +232995,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 +233999,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 +234988,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..da735a8e7b 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", @@ -169428,83 +169409,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 +173861,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 +277280,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", diff --git a/descriptions/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index c8df19fcc2..76b6376033 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 @@ -43199,7 +43248,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 +43338,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 +43368,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: @@ -43410,7 +43459,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 +43505,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 +43678,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: default: value: @@ -43667,7 +43716,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': &396 + '410': &418 description: Gone content: application/json: @@ -43833,7 +43882,7 @@ paths: required: true content: application/json: - schema: *330 + schema: *351 examples: default: value: @@ -43936,7 +43985,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 +44072,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 +44125,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -44096,7 +44145,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 +44170,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 +44192,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 +44263,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -44419,7 +44468,7 @@ paths: description: Response content: application/json: - schema: &398 + schema: &420 title: Full Repository description: Full Repository type: object @@ -44696,8 +44745,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 +44833,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 +44861,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 +44877,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 +44966,7 @@ paths: - network_count - subscribers_count examples: - default: &400 + default: &422 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -45443,9 +45492,9 @@ paths: application/json: schema: type: array - items: *335 + items: *356 examples: - default: *336 + default: *357 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45470,7 +45519,7 @@ paths: - *73 - *17 - *19 - - &666 + - &668 name: targets description: | A comma-separated list of rule targets to filter by. @@ -45488,7 +45537,7 @@ paths: application/json: schema: type: array - items: *133 + items: *152 examples: default: value: @@ -45561,11 +45610,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 +45676,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 +45733,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 +45743,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 +45772,7 @@ paths: description: Response content: application/json: - schema: &670 + schema: &673 title: Rule Suites description: Response type: array @@ -45754,7 +45827,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 +45871,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 +45887,7 @@ paths: description: Response content: application/json: - schema: &673 + schema: &676 title: Rule Suite description: Response type: object @@ -45913,7 +45986,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 +46059,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *338 + default: *359 '404': *6 '500': *88 put: @@ -46037,11 +46110,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 +46149,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *338 + default: *359 '404': *6 '500': *88 delete: @@ -46135,9 +46208,9 @@ paths: application/json: schema: type: array - items: *136 + items: *156 examples: - default: *339 + default: *361 '404': *6 '500': *88 x-github: @@ -46174,7 +46247,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *362 examples: default: value: @@ -46237,14 +46310,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 +46327,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 +46337,10 @@ paths: required: false schema: type: string - - *345 - - *346 - - *347 - - *348 + - *367 + - *368 + - *369 + - *370 responses: '200': description: Response @@ -46275,13 +46348,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 +46420,7 @@ paths: application/json: schema: type: array - items: &698 + items: &701 description: A repository security advisory. type: object properties: @@ -46567,7 +46640,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 credits_detailed: type: array nullable: true @@ -46577,7 +46650,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 +46674,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 +46711,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 +47098,9 @@ paths: application/json: schema: type: array - items: *352 + items: *374 examples: - default: *312 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47051,7 +47124,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 +47150,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 +47185,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *375 examples: - default: *354 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47139,7 +47212,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 +47220,9 @@ paths: description: Success content: application/json: - schema: *356 + schema: *378 examples: - default: *357 + default: *379 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -47177,9 +47250,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *380 examples: - default: *359 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47207,9 +47280,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *382 examples: - default: *361 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47249,7 +47322,7 @@ paths: type: array items: *116 examples: - default: *362 + default: *384 headers: Link: *40 x-github: @@ -47450,15 +47523,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 +47569,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 +47615,7 @@ paths: type: string nullable: true examples: - default: &388 + default: &410 value: groups: - group_id: '123' @@ -47588,7 +47661,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 +47693,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 +47727,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 headers: Link: *40 '403': *29 @@ -47750,7 +47823,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 +47886,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 +48133,7 @@ paths: - repos_count - organization examples: - default: &367 + default: &389 value: id: 1 node_id: MDQ6VGVhbTE= @@ -48131,15 +48204,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 +48234,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 +48296,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 +48331,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 +48358,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - *73 - - *309 + - *330 - *91 - *17 - *19 @@ -48302,7 +48375,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 +48454,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 +48474,7 @@ paths: - updated_at - url examples: - default: &739 + default: &742 value: - author: login: octocat @@ -48476,7 +48549,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 +48583,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: &369 + default: &391 value: author: login: octocat @@ -48585,8 +48658,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 +48671,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *369 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48623,8 +48696,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 +48720,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: &740 + default: &743 value: author: login: octocat @@ -48720,8 +48793,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 +48821,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 +48833,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 +48890,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 +48905,7 @@ paths: - updated_at - url examples: - default: &741 + default: &744 value: - author: login: octocat @@ -48901,8 +48974,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 +48997,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: &372 + default: &394 value: author: login: octocat @@ -48993,9 +49066,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 +49080,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *372 + default: *394 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49032,9 +49105,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 +49129,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: &742 + default: &745 value: author: login: octocat @@ -49123,9 +49196,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 +49225,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 +49253,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 +49296,7 @@ paths: - content - created_at examples: - default: &376 + default: &398 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -49274,9 +49347,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 +49382,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 +49413,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49366,10 +49439,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 +49475,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 +49502,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -49458,8 +49531,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 +49564,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 +49597,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 +49623,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 +49651,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 +49674,9 @@ paths: description: Response content: application/json: - schema: *380 + schema: *402 examples: - default: *381 + default: *403 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -49623,7 +49696,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 +49721,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 +49731,9 @@ paths: application/json: schema: type: array - items: *292 + items: *313 examples: - default: *293 + default: *314 headers: Link: *40 x-github: @@ -49683,7 +49756,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 +49779,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -49737,14 +49810,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 +49844,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 +49881,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 +49907,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 +49945,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 +49972,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 +49982,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 +50050,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 +50114,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 +50127,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 +50192,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 +50260,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 +50289,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 +50299,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -50258,15 +50331,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 +50362,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 +50909,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 +50957,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 +50986,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 +51017,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 +51060,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *409 examples: default: value: @@ -51020,7 +51093,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 +51103,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 +51232,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 +51244,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 +51311,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 +51367,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 +51394,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *412 examples: - default: *391 + default: *413 '304': *37 '403': *29 '401': *25 @@ -51350,7 +51423,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 +51467,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 +51578,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 +51590,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 +51636,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 +51671,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 +51695,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *415 examples: - default: *394 + default: *416 '304': *37 '403': *29 '401': *25 @@ -51649,7 +51722,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 +51751,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 +51772,7 @@ paths: application/json: schema: type: array - items: *390 + items: *412 examples: default: value: @@ -51758,7 +51831,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 +51871,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *412 examples: - default: *391 + default: *413 '304': *37 '403': *29 '401': *25 @@ -51810,8 +51883,8 @@ paths: application/json: schema: oneOf: - - *187 - - *188 + - *207 + - *208 '503': description: Response content: @@ -51856,7 +51929,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 +51989,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 +52054,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 +52100,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 +52123,7 @@ paths: items: type: string '401': *25 - '410': *396 + '410': *418 '422': *7 x-github: githubCloudOnly: false @@ -52073,7 +52146,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 +52167,7 @@ paths: items: type: string '401': *25 - '410': *396 + '410': *418 '404': *6 x-github: githubCloudOnly: false @@ -52118,7 +52191,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 +52218,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -52175,8 +52248,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 +52301,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 +52333,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 +52407,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 +52417,7 @@ paths: application/json: schema: type: array - items: *393 + items: *415 examples: default: value: @@ -52382,7 +52455,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 +52478,7 @@ paths: description: Response content: application/json: - schema: *393 + schema: *415 examples: default: value: @@ -52470,7 +52543,7 @@ paths: resources: type: object properties: - core: &397 + core: &419 title: Rate Limit type: object properties: @@ -52487,21 +52560,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 +52678,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 +53190,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *399 + '301': *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53135,8 +53208,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 +53466,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 +53498,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 +53521,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 +53545,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 +53572,7 @@ paths: type: integer artifacts: type: array - items: &402 + items: &424 title: Artifact description: An artifact type: object @@ -53577,7 +53650,7 @@ paths: - expires_at - updated_at examples: - default: &417 + default: &439 value: total_count: 2 artifacts: @@ -53638,9 +53711,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 +53725,7 @@ paths: description: Response content: application/json: - schema: *402 + schema: *424 examples: default: value: @@ -53690,9 +53763,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 +53789,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 +53805,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 +53828,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 +53861,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 +53899,7 @@ paths: description: Response content: application/json: - schema: &406 + schema: &428 title: Repository actions caches description: Repository actions caches type: object @@ -53868,7 +53941,7 @@ paths: - total_count - actions_caches examples: - default: &407 + default: &429 value: total_count: 1 actions_caches: @@ -53900,23 +53973,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 +54009,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 +54041,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 +54055,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 +54362,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 +54392,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 +54415,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -54366,8 +54439,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 +54490,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 +54525,7 @@ paths: description: Empty response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -54481,8 +54554,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 +54573,7 @@ paths: type: integer secrets: type: array - items: &422 + items: &444 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -54520,7 +54593,7 @@ paths: - created_at - updated_at examples: - default: &423 + default: &445 value: total_count: 2 secrets: @@ -54553,9 +54626,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 +54645,7 @@ paths: type: integer variables: type: array - items: &426 + items: &448 title: Actions Variable type: object properties: @@ -54602,7 +54675,7 @@ paths: - created_at - updated_at examples: - default: &427 + default: &449 value: total_count: 2 variables: @@ -54635,8 +54708,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 +54718,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 +54751,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 +54763,7 @@ paths: schema: type: object properties: - enabled: *410 + enabled: *432 allowed_actions: *49 required: - enabled @@ -54721,14 +54794,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 +54819,7 @@ paths: required: - access_level examples: - default: &412 + default: &434 value: access_level: organization x-github: @@ -54771,15 +54844,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 +54876,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 +54908,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 +54941,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 +54971,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 +54983,7 @@ paths: required: true content: application/json: - schema: *201 + schema: *221 examples: default: *55 x-github: @@ -54939,8 +55012,8 @@ paths: in: query schema: type: string - - *385 - - *386 + - *407 + - *408 - *17 - *19 responses: @@ -54984,8 +55057,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 +55066,9 @@ paths: application/json: schema: type: array - items: *205 + items: *225 examples: - default: *206 + default: *226 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55017,8 +55090,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 +55134,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *207 + '201': *227 '404': *6 '422': *7 '409': *99 @@ -55092,8 +55165,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 +55174,7 @@ paths: application/json: schema: *65 examples: - default: *208 + default: *228 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55129,8 +55202,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 +55211,7 @@ paths: application/json: schema: *65 examples: - default: *209 + default: *229 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55160,8 +55233,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 +55243,7 @@ paths: application/json: schema: *62 examples: - default: *210 + default: *230 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55191,8 +55264,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 +55292,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 +55318,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 +55368,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 +55419,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 +55450,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 +55481,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 +55491,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 +55499,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 +55508,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 +55535,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 +55544,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 +55553,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 +55582,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 +55677,7 @@ paths: that triggered the run. type: array nullable: true - items: &457 + items: &479 title: Pull Request Minimal type: object properties: @@ -55723,7 +55796,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &461 + properties: &483 id: type: string description: SHA for the commit @@ -55774,7 +55847,7 @@ paths: - name - email nullable: true - required: &462 + required: &484 - id - tree_id - message @@ -55782,8 +55855,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 +55894,7 @@ paths: - workflow_url - pull_requests examples: - default: &437 + default: &459 value: total_count: 1 workflow_runs: @@ -56057,24 +56130,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 +56388,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 +56413,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 +56534,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 +56569,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 +56590,9 @@ paths: type: integer artifacts: type: array - items: *402 + items: *424 examples: - default: *417 + default: *439 headers: Link: *40 x-github: @@ -56543,25 +56616,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 +56657,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 +56678,9 @@ paths: type: integer jobs: type: array - items: *420 + items: *442 examples: - default: &421 + default: &443 value: total_count: 1 jobs: @@ -56720,10 +56793,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 +56824,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 +56859,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 +56928,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 +56963,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 +56995,9 @@ paths: type: integer jobs: type: array - items: *420 + items: *442 examples: - default: *421 + default: *443 headers: Link: *40 x-github: @@ -56949,9 +57022,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 +57051,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 +57080,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 +57142,7 @@ paths: items: type: object properties: - type: &547 + type: &569 type: string description: The type of reviewer. enum: @@ -57079,7 +57152,7 @@ paths: reviewer: anyOf: - *4 - - *235 + - *255 required: - environment - wait_timer @@ -57154,9 +57227,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 +57276,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 +57364,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 +57382,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 +57438,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 +57461,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57411,9 +57484,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 +57507,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57467,9 +57540,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 +57679,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 +57698,9 @@ paths: type: integer secrets: type: array - items: *422 + items: *444 examples: - default: *423 + default: *445 headers: Link: *40 x-github: @@ -57652,16 +57725,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 +57756,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 +57792,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 +57825,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57778,9 +57851,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 +57878,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 +57897,9 @@ paths: type: integer variables: type: array - items: *426 + items: *448 examples: - default: *427 + default: *449 headers: Link: *40 x-github: @@ -57849,8 +57922,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 +57950,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -57902,17 +57975,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 +58011,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 +58055,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 +58082,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 +58101,7 @@ paths: type: integer workflows: type: array - items: &428 + items: &450 title: Workflow description: A GitHub Actions workflow type: object @@ -58135,9 +58208,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 +58225,7 @@ paths: description: Response content: application/json: - schema: *428 + schema: *450 examples: default: value: @@ -58185,9 +58258,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 +58285,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 +58338,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 +58367,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 +58395,9 @@ paths: type: integer workflow_runs: type: array - items: *414 + items: *436 examples: - default: *437 + default: *459 headers: Link: *40 x-github: @@ -58357,9 +58430,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 +58493,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 +58658,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 +58671,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -58623,8 +58696,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 +58733,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 +58846,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 +58901,7 @@ paths: bundle_url: type: string examples: - default: *438 + default: *460 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58848,8 +58921,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 +58930,7 @@ paths: application/json: schema: type: array - items: &439 + items: &461 title: Autolink reference description: An autolink reference. type: object @@ -58907,8 +58980,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 +59020,9 @@ paths: description: response content: application/json: - schema: *439 + schema: *461 examples: - default: &440 + default: &462 value: id: 1 key_prefix: TICKET- @@ -58980,9 +59053,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 +59067,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *461 examples: - default: *440 + default: *462 '404': *6 x-github: githubCloudOnly: false @@ -59016,9 +59089,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 +59115,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 +59164,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 +59186,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 +59207,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 +59246,7 @@ paths: - url protected: type: boolean - protection: &443 + protection: &465 title: Branch Protection description: Branch Protection type: object @@ -59215,7 +59288,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 +59303,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 +59324,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 +59353,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 +59379,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 +59686,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 +59702,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 +59743,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 +59758,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 +59779,7 @@ paths: required: - sha - url - verification: &567 + verification: &589 title: Verification type: object properties: @@ -59740,12 +59813,12 @@ paths: nullable: true oneOf: - *4 - - *215 + - *235 committer: nullable: true oneOf: - *4 - - *215 + - *235 parents: type: array items: @@ -59776,7 +59849,7 @@ paths: type: integer files: type: array - items: &521 + items: &543 title: Diff Entry description: Diff Entry type: object @@ -59859,7 +59932,7 @@ paths: - self protected: type: boolean - protection: *443 + protection: *465 protection_url: type: string format: uri @@ -59966,7 +60039,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 +60061,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 +60263,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 +60520,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 +60596,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 apps: type: array items: *5 @@ -60541,7 +60614,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 apps: type: array items: *5 @@ -60599,7 +60672,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *445 + restrictions: *467 required_conversation_resolution: type: object properties: @@ -60711,9 +60784,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 +60811,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 +60843,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 +60872,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 +60899,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 +61005,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 +61105,9 @@ paths: description: Response content: application/json: - schema: *448 + schema: *470 examples: - default: *449 + default: *471 '422': *15 x-github: githubCloudOnly: false @@ -61055,9 +61128,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 +61157,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 +61190,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 +61220,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 +61247,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 +61283,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 +61337,9 @@ paths: description: Response content: application/json: - schema: *451 + schema: *473 examples: - default: *452 + default: *474 '404': *6 '422': *15 x-github: @@ -61288,9 +61361,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 +61387,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 +61423,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 +61492,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 +61558,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 +61626,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 +61725,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 +61750,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 +61762,7 @@ paths: type: array items: *5 examples: - default: &453 + default: &475 value: - id: 1 slug: octoapp @@ -61746,9 +61819,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 +61855,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61803,9 +61876,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 +61912,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61860,9 +61933,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 +61969,7 @@ paths: type: array items: *5 examples: - default: *453 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -61918,9 +61991,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 +62001,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '404': *6 x-github: githubCloudOnly: false @@ -61950,9 +62023,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 +62061,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62011,9 +62084,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 +62122,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62072,9 +62145,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 +62182,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 '422': *15 x-github: githubCloudOnly: false @@ -62133,9 +62206,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 +62218,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '404': *6 x-github: githubCloudOnly: false @@ -62169,9 +62242,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 +62277,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62229,9 +62302,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 +62337,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62289,9 +62362,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 +62397,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '422': *15 x-github: githubCloudOnly: false @@ -62351,9 +62424,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 +62448,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *476 examples: default: value: @@ -62489,12 +62562,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 +62577,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 +62599,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62541,7 +62614,7 @@ paths: description: Response content: application/json: - schema: *231 + schema: *251 examples: default: value: @@ -62600,12 +62673,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 +62688,9 @@ paths: application/json: schema: type: array - items: *455 + items: *477 examples: - default: *456 + default: *478 '404': *6 '403': *29 '500': *88 @@ -62641,8 +62714,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62654,7 +62727,7 @@ paths: description: A single bypass request. content: application/json: - schema: *455 + schema: *477 examples: default: value: @@ -62712,8 +62785,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_request_number in: path required: true @@ -62784,8 +62857,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *385 - - *386 + - *407 + - *408 - name: bypass_response_id in: path required: true @@ -62818,8 +62891,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 +63171,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 +63282,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 +63358,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 +63571,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 +63585,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *480 examples: - default: &460 + default: &482 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -63614,9 +63687,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 +63929,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *480 examples: - default: *460 + default: *482 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63878,9 +63951,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 +64048,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 +64094,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 +64117,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 +64181,7 @@ paths: nullable: true pull_requests: type: array - items: *457 + items: *479 nullable: true app: title: GitHub app @@ -64119,9 +64192,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 +64203,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 +64236,7 @@ paths: - check_runs_url - pull_requests examples: - default: &464 + default: &486 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -64454,9 +64527,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 +64548,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 +64610,7 @@ paths: required: - app_id - setting - repository: *204 + repository: *224 examples: default: value: @@ -64785,9 +64858,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 +64872,9 @@ paths: description: Response content: application/json: - schema: *463 + schema: *485 examples: - default: *464 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64824,17 +64897,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 +64946,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 +65050,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 +65085,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 +65124,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 +65146,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 +65157,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 +65284,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 +65311,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 +65327,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &498 type: object properties: number: *103 @@ -65262,7 +65335,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 +65346,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 +65401,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 +65498,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 +65518,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 +65535,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 +65555,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *498 examples: default: value: @@ -65558,14 +65631,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 +65658,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 +65692,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 +65709,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 +65734,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 +65766,7 @@ paths: '404': *6 '422': description: Unprocessable Entity - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65715,9 +65788,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 +65835,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 +65860,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 +65874,7 @@ paths: application/json: schema: type: array - items: *473 + items: *495 examples: default: value: @@ -65840,9 +65913,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 +65947,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 +65986,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 +66026,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 +66088,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 +66124,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 +66138,7 @@ paths: description: Response content: application/json: - schema: *486 + schema: *508 examples: response: summary: application/json response @@ -66119,14 +66192,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 +66279,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 +66333,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 +66355,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 +66364,7 @@ paths: application/json: schema: type: array - items: &487 + items: &509 title: CodeQL Database description: A CodeQL database. type: object @@ -66402,9 +66475,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 +66504,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 +66517,7 @@ paths: description: Response content: application/json: - schema: *487 + schema: *509 examples: default: value: @@ -66476,11 +66549,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 +66573,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 +66584,9 @@ paths: responses: '204': description: Response - '403': *480 + '403': *502 '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66539,8 +66612,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 +66622,7 @@ paths: type: object additionalProperties: false properties: - language: &488 + language: &510 type: string description: The language targeted by the CodeQL query enum: @@ -66628,7 +66701,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 +66711,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 +66758,7 @@ paths: items: type: object properties: - repository: &489 + repository: &511 title: Repository Identifier description: Repository Identifier type: object @@ -66721,7 +66794,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 +66826,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 +66840,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 +66862,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 +66879,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 +67031,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 +67062,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 +67075,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 +67100,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 +67135,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 +67239,7 @@ paths: source_location_prefix: "/" artifact_url: https://example.com '404': *6 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67187,8 +67260,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 +67346,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 +67367,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 +67435,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -67387,7 +67460,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 +67474,7 @@ paths: content: application/json: schema: *3 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67458,8 +67531,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 +67540,7 @@ paths: schema: type: object properties: - commit_sha: *494 + commit_sha: *516 ref: type: string description: |- @@ -67525,7 +67598,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 +67612,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 +67635,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 +67682,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 +67707,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 +67789,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 +67910,8 @@ paths: parameters: - *17 - *19 - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -67854,7 +67927,7 @@ paths: type: integer codespaces: type: array - items: *301 + items: *322 examples: default: value: @@ -68152,8 +68225,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 +68289,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 +68328,8 @@ paths: parameters: - *17 - *19 - - *385 - - *386 + - *407 + - *408 responses: '200': description: Response @@ -68320,8 +68393,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 +68429,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 +68476,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 +68561,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 +68607,7 @@ paths: '403': *29 '404': *6 '422': *15 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68555,8 +68628,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 +68647,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 +68667,7 @@ paths: - created_at - updated_at examples: - default: *498 + default: *520 headers: Link: *40 x-github: @@ -68617,16 +68690,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 +68719,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 +68749,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 +68779,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -68730,9 +68803,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 +68833,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 +68876,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &503 + properties: &525 login: type: string example: octocat @@ -68896,7 +68969,7 @@ paths: user_view_type: type: string example: public - required: &504 + required: &526 - avatar_url - events_url - followers_url @@ -68970,9 +69043,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 +69091,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 +69119,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 +69130,7 @@ paths: example: 42 type: integer format: int64 - repository: *204 + repository: *224 invitee: title: Simple User description: A GitHub user. @@ -69235,7 +69308,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 +69348,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 +69381,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 +69403,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *503 - required: *504 + properties: *525 + required: *526 nullable: true required: - permission @@ -69386,8 +69459,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 +69470,7 @@ paths: application/json: schema: type: array - items: &505 + items: &527 title: Commit Comment description: Commit Comment type: object @@ -69438,8 +69511,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 +69528,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 +69587,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 +69654,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 +69678,7 @@ paths: description: Response content: application/json: - schema: *505 + schema: *527 examples: default: value: @@ -69656,9 +69729,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 +69752,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 +69780,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -69730,9 +69803,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 +69837,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 +69868,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 +69920,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 +69977,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 +70073,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 +70147,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 +70159,9 @@ paths: application/json: schema: type: array - items: *505 + items: *527 examples: - default: *508 + default: *530 headers: Link: *40 x-github: @@ -70116,9 +70189,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 +70226,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 +70256,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 +70268,7 @@ paths: application/json: schema: type: array - items: &622 + items: &644 title: Pull Request Simple description: Pull Request Simple type: object @@ -70301,8 +70374,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 +70420,7 @@ paths: nullable: true requested_teams: type: array - items: *235 + items: *255 nullable: true head: type: object @@ -70398,7 +70471,7 @@ paths: _links: type: object properties: - comments: &512 + comments: &534 title: Link description: Hypermedia Link type: object @@ -70407,13 +70480,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 +70496,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 +70560,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 +71097,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 +71116,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 +71205,7 @@ paths: '422': *15 '404': *6 '500': *88 - '503': *137 + '503': *157 '409': *99 x-github: githubCloudOnly: false @@ -71158,11 +71231,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 +71269,9 @@ paths: type: integer check_runs: type: array - items: *458 + items: *480 examples: - default: *516 + default: *538 headers: Link: *40 x-github: @@ -71223,9 +71296,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 +71306,7 @@ paths: schema: type: integer example: 1 - - *514 + - *536 - *17 - *19 responses: @@ -71251,7 +71324,7 @@ paths: type: integer check_suites: type: array - items: *463 + items: *485 examples: default: value: @@ -71451,9 +71524,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 +71593,7 @@ paths: type: string total_count: type: integer - repository: *204 + repository: *224 commit_url: type: string format: uri @@ -71651,9 +71724,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 +71736,7 @@ paths: application/json: schema: type: array - items: &703 + items: &706 title: Status description: The status of a commit. type: object @@ -71744,7 +71817,7 @@ paths: site_admin: false headers: Link: *40 - '301': *399 + '301': *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71772,8 +71845,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 +71875,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 +71896,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 +72048,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 +72092,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 +72113,10 @@ paths: example: 6 commits: type: array - items: *506 + items: *528 files: type: array - items: *521 + items: *543 required: - url - html_url @@ -72287,7 +72360,7 @@ paths: module Test" '404': *6 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72329,8 +72402,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 +72546,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 +72678,7 @@ paths: - size - type - url - - &636 + - &658 title: Content File description: Content File type: object @@ -72806,7 +72879,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 +72948,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 +72971,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 +73065,7 @@ paths: description: Response content: application/json: - schema: &524 + schema: &546 title: File Commit description: File Commit type: object @@ -73144,7 +73217,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *546 examples: example-for-creating-a-file: value: @@ -73198,7 +73271,7 @@ paths: schema: oneOf: - *3 - - &562 + - &584 description: Repository rule violation was detected type: object properties: @@ -73219,7 +73292,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 +73324,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 +73386,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *546 examples: default: value: @@ -73348,7 +73421,7 @@ paths: '422': *15 '404': *6 '409': *99 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73368,8 +73441,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 +73565,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 +73600,8 @@ paths: default: 30 - *89 - *90 - - *263 - - *264 + - *284 + - *285 responses: '200': description: Response @@ -73536,7 +73609,7 @@ paths: application/json: schema: type: array - items: &527 + items: &549 type: object description: A Dependabot alert. properties: @@ -73582,7 +73655,7 @@ paths: - unknown - direct - transitive - security_advisory: *525 + security_advisory: *547 security_vulnerability: *107 url: *108 html_url: *109 @@ -73613,7 +73686,7 @@ paths: nullable: true maxLength: 280 fixed_at: *113 - auto_dismissed_at: *526 + auto_dismissed_at: *548 required: - number - state @@ -73843,9 +73916,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 +73933,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *549 examples: default: value: @@ -73973,9 +74046,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 +74093,7 @@ paths: description: Response content: application/json: - schema: *527 + schema: *549 examples: default: value: @@ -74149,8 +74222,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 +74241,7 @@ paths: type: integer secrets: type: array - items: &531 + items: &553 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -74221,16 +74294,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 +74323,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 +74357,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 +74387,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -74338,9 +74411,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 +74435,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 +74596,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 +74836,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 +74912,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 +74945,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 +74958,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 +75087,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 +75128,9 @@ paths: application/json: schema: type: array - items: *533 + items: *555 examples: - default: *534 + default: *556 headers: Link: *40 x-github: @@ -75123,8 +75196,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 +75278,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *555 examples: simple-example: summary: Simple example @@ -75278,9 +75351,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 +75365,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *555 examples: default: value: @@ -75357,9 +75430,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 +75454,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 +75466,7 @@ paths: application/json: schema: type: array - items: &536 + items: &558 title: Deployment Status description: The status of a deployment. type: object @@ -75484,8 +75557,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 +75627,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 +75704,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 +75762,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 +75775,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *558 examples: - default: *537 + default: *559 '404': *6 x-github: githubCloudOnly: false @@ -75731,12 +75804,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 +75819,9 @@ paths: application/json: schema: type: array - items: *542 + items: *564 examples: - default: *543 + default: *565 '404': *6 '403': *29 '500': *88 @@ -75772,8 +75845,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75785,7 +75858,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *542 + schema: *564 examples: default: value: @@ -75841,8 +75914,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75901,12 +75974,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 +75989,9 @@ paths: application/json: schema: type: array - items: *545 + items: *567 examples: - default: *546 + default: *568 '404': *6 '403': *29 '500': *88 @@ -75943,8 +76016,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -75956,7 +76029,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *545 + schema: *567 examples: default: value: @@ -76014,8 +76087,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *385 - - *386 + - *407 + - *408 - name: alert_number in: path required: true @@ -76084,8 +76157,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 +76215,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 +76233,7 @@ paths: type: integer environments: type: array - items: &548 + items: &570 title: Environment description: Details of a deployment environment type: object @@ -76212,7 +76285,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 +76322,11 @@ paths: items: type: object properties: - type: *547 + type: *569 reviewer: anyOf: - *4 - - *235 + - *255 required: - id - node_id @@ -76273,7 +76346,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 +76462,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 +76477,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *570 examples: - default: &552 + default: &574 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -76490,9 +76563,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 +76574,7 @@ paths: type: object nullable: true properties: - wait_timer: *550 + wait_timer: *572 prevent_self_review: type: boolean example: false @@ -76518,13 +76591,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 +76617,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 +76643,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 +76670,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 +76690,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 +76747,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 +76795,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 +76839,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 +76854,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *575 examples: - default: *554 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76802,10 +76875,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 +76906,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *575 examples: - default: *554 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76854,10 +76927,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 +76955,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 +76973,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 +76992,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 +77091,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 +77114,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 +77151,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 +77172,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *557 + items: *579 examples: default: value: @@ -77134,10 +77207,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 +77222,9 @@ paths: description: Response content: application/json: - schema: *556 + schema: *578 examples: - default: *558 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77172,10 +77245,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 +77274,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 +77294,9 @@ paths: type: integer secrets: type: array - items: *422 + items: *444 examples: - default: *423 + default: *445 headers: Link: *40 x-github: @@ -77248,17 +77321,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 +77353,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 +77386,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 +77420,7 @@ paths: description: Response when creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -77373,10 +77446,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 +77474,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 +77494,9 @@ paths: type: integer variables: type: array - items: *426 + items: *448 examples: - default: *427 + default: *449 headers: Link: *40 x-github: @@ -77446,9 +77519,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 +77548,7 @@ paths: description: Response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -77500,18 +77573,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 +77605,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 +77650,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 +77675,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 +77686,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: 200-response: value: @@ -77680,8 +77753,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 +77776,7 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: default: value: @@ -77840,8 +77913,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 +77946,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *420 examples: - default: *400 + default: *422 '400': *14 '422': *15 '403': *29 @@ -77896,8 +77969,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 +78029,8 @@ paths: application/json: schema: oneOf: - - *187 - - *562 + - *207 + - *584 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77982,8 +78055,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 +78155,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 +78265,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 +78479,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 +78543,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 +78562,7 @@ paths: application/json: schema: type: array - items: &565 + items: &587 title: Git Reference description: Git references within a repository type: object @@ -78564,17 +78637,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 +78676,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 +78706,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 +78734,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 +78765,9 @@ paths: description: Response content: application/json: - schema: *565 + schema: *587 examples: - default: *566 + default: *588 '422': *15 '409': *99 x-github: @@ -78712,9 +78785,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 +78842,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 +78910,7 @@ paths: description: Response content: application/json: - schema: &568 + schema: &590 title: Git Tag description: Metadata for a Git tag type: object @@ -78888,7 +78961,7 @@ paths: - sha - type - url - verification: *567 + verification: *589 required: - sha - url @@ -78898,7 +78971,7 @@ paths: - tag - message examples: - default: &569 + default: &591 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -78971,8 +79044,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 +79056,9 @@ paths: description: Response content: application/json: - schema: *568 + schema: *590 examples: - default: *569 + default: *591 '404': *6 '409': *99 x-github: @@ -79009,8 +79082,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 +79156,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 +79252,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 +79276,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *592 examples: default-response: summary: Default response @@ -79262,8 +79335,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 +79346,7 @@ paths: application/json: schema: type: array - items: &571 + items: &593 title: Webhook description: Webhooks for repositories. type: object @@ -79327,7 +79400,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 +79474,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 +79527,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *593 examples: - default: &572 + default: &594 value: type: Repository id: 12345678 @@ -79504,17 +79577,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 +79607,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 +79654,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *593 examples: - default: *572 + default: *594 '422': *15 '404': *6 x-github: @@ -79604,9 +79677,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 +79703,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 +79732,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 +79778,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 +79790,9 @@ paths: application/json: schema: type: array - items: *274 + items: *295 examples: - default: *275 + default: *296 '400': *14 '422': *15 x-github: @@ -79738,18 +79811,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 +79841,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 +79866,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 +79893,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 +79953,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 +80059,7 @@ paths: - html_url - authors_url examples: - default: &576 + default: &598 value: vcs: subversion use_lfs: true @@ -80002,7 +80075,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 +80104,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 +80153,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *595 examples: default: value: @@ -80105,7 +80178,7 @@ paths: type: string '422': *15 '404': *6 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80133,8 +80206,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 +80256,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *595 examples: example-1: summary: Example 1 @@ -80231,7 +80304,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 +80327,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 +80358,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 +80374,7 @@ paths: application/json: schema: type: array - items: &575 + items: &597 title: Porter Author description: Porter Author type: object @@ -80355,7 +80428,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 +80453,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 +80484,7 @@ paths: description: Response content: application/json: - schema: *575 + schema: *597 examples: default: value: @@ -80424,7 +80497,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 +80521,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 +80563,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *574 + '503': *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80518,8 +80591,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 +80619,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 +80646,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 +80655,8 @@ paths: application/json: schema: *22 examples: - default: *577 - '301': *399 + default: *599 + '301': *421 '404': *6 x-github: githubCloudOnly: false @@ -80603,8 +80676,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 +80685,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 +80715,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 +80733,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *311 examples: - default: *579 + default: *601 '409': description: Response x-github: @@ -80684,8 +80757,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 +80781,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 +80792,9 @@ paths: application/json: schema: type: array - items: *580 + items: *602 examples: - default: &772 + default: &775 value: - id: 1 repository: @@ -80852,9 +80925,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 +80956,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *602 examples: default: value: @@ -81014,9 +81087,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 +81120,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 +81169,7 @@ paths: required: false schema: type: string - - *298 + - *319 - name: sort description: What to sort results by. in: query @@ -81109,7 +81182,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - *17 - *19 responses: @@ -81119,9 +81192,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: &591 + default: &613 value: - id: 1 node_id: MDU6SXNzdWUx @@ -81269,7 +81342,7 @@ paths: state_reason: completed headers: Link: *40 - '301': *399 + '301': *421 '422': *15 '404': *6 x-github: @@ -81298,8 +81371,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 +81454,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: &586 + default: &608 value: id: 1 node_id: MDU6SXNzdWUx @@ -81537,9 +81610,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 +81640,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 +81652,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -81589,9 +81662,9 @@ paths: application/json: schema: type: array - items: *581 + items: *603 examples: - default: &588 + default: &610 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81649,17 +81722,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 +81786,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 +81810,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *603 examples: - default: *582 + default: *604 '422': *15 x-github: githubCloudOnly: false @@ -81757,9 +81830,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 +81852,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 +81880,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -81830,9 +81903,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 +81937,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 +81968,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 +81991,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 +82002,7 @@ paths: application/json: schema: type: array - items: &585 + items: &607 title: Issue Event description: Issue Event type: object @@ -81972,8 +82045,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 +82090,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 +82155,7 @@ paths: required: - from - to - author_association: *147 + author_association: *167 lock_reason: type: string nullable: true @@ -82095,8 +82168,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 +82353,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 +82365,7 @@ paths: description: Response content: application/json: - schema: *585 + schema: *607 examples: default: value: @@ -82485,7 +82558,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *396 + '410': *418 '403': *29 x-github: githubCloudOnly: false @@ -82519,9 +82592,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 +82606,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 +82636,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 +82742,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 +82768,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 +82796,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82741,9 +82814,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 +82841,9 @@ paths: description: Response content: application/json: - schema: *160 + schema: *180 examples: - default: *586 + default: *608 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82792,9 +82865,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 +82907,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 +82920,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 +82955,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 +82979,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 +83008,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 +83024,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 +83055,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 +83078,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &593 + - &615 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -83036,8 +83109,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 +83198,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 +83214,7 @@ paths: - performed_via_github_app - assignee - assigner - - &594 + - &616 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -83172,8 +83245,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 +83265,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &595 + - &617 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -83223,8 +83296,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 +83316,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &596 + - &618 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -83274,8 +83347,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 +83370,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 +83401,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 +83417,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 +83448,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 +83464,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 +83495,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 +83524,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &600 + - &622 title: Locked Issue Event description: Locked Issue Event type: object @@ -83482,8 +83555,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 +83572,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 +83603,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 +83638,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 +83669,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 +83704,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 +83735,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 +83770,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 +83861,7 @@ paths: color: red headers: Link: *40 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83805,9 +83878,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 +83890,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 +83937,7 @@ paths: - color - default examples: - default: &590 + default: &612 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -83882,9 +83955,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 +83974,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 +84035,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 +84057,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 +84119,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 +84141,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 +84168,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 +84183,7 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: default: value: @@ -84121,9 +84194,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 +84216,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 +84246,7 @@ paths: '204': description: Response '403': *29 - '410': *396 + '410': *418 '404': *6 '422': *15 x-github: @@ -84191,9 +84264,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 +84288,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 +84316,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 +84340,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 +84374,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 +84405,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 +84437,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 +84461,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 @@ -84423,9 +84496,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 +84508,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 +84542,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 +84571,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 +84600,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 +84633,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 +84657,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 +84674,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 +84729,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 +84739,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 +84772,7 @@ paths: properties: type: type: string - issue: *160 + issue: *180 required: - event - created_at @@ -84895,7 +84968,7 @@ paths: type: string body_text: type: string - author_association: *147 + author_association: *167 required: - event - id @@ -84918,7 +84991,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 +85080,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 +85164,7 @@ paths: enum: - line - file - reactions: *148 + reactions: *168 body_html: type: string example: '"

comment body

"' @@ -85127,7 +85200,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 +85231,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 +85275,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 +85319,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 +85489,7 @@ paths: headers: Link: *40 '404': *6 - '410': *396 + '410': *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85433,8 +85506,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 +85517,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 +85582,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 +85619,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 +85655,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 +85669,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *627 examples: - default: *606 + default: *628 '404': *6 x-github: githubCloudOnly: false @@ -85616,9 +85689,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 +85711,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 +85722,9 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 + default: *612 headers: Link: *40 '404': *6 @@ -85672,8 +85745,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 +85782,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: - default: &608 + default: &630 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -85743,8 +85816,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 +85828,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: - default: *608 + default: *630 '404': *6 x-github: githubCloudOnly: false @@ -85774,8 +85847,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 +85887,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *611 examples: default: value: @@ -85840,8 +85913,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 +85940,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 +85977,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 +86006,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 +86033,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 +86097,8 @@ paths: title: License Simple description: License Simple type: object - properties: *161 - required: *162 + properties: *181 + required: *182 nullable: true required: - _links @@ -86107,8 +86180,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 +86246,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 +86281,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 +86308,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 +86350,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 +86411,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 +86452,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 +86513,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 +86527,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *632 examples: - default: *611 + default: *633 '404': *6 x-github: githubCloudOnly: false @@ -86473,9 +86546,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 +86586,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *632 examples: - default: *611 + default: *633 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86531,9 +86604,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 +86627,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 +86639,9 @@ paths: application/json: schema: type: array - items: *589 + items: *611 examples: - default: *590 + default: *612 headers: Link: *40 x-github: @@ -86587,12 +86660,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 +86675,9 @@ paths: application/json: schema: type: array - items: *173 + items: *193 examples: - default: *616 + default: *638 headers: Link: *40 x-github: @@ -86628,8 +86701,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 +86760,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 +86892,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 +86933,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 +86988,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *639 examples: - default: *618 + default: *640 '422': *15 '409': *99 x-github: @@ -86940,8 +87013,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 +87121,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 +87148,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 +87159,7 @@ paths: application/json: schema: type: array - items: &619 + items: &641 title: Page Build description: Page Build type: object @@ -87180,8 +87253,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 +87299,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 +87356,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 +87368,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *641 examples: - default: *620 + default: *642 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87317,8 +87390,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 +87496,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 +87556,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 +87585,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 +87817,7 @@ paths: description: Empty response content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -87771,8 +87844,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 +87882,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 +87904,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 +87928,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 +87950,7 @@ paths: application/json: schema: type: array - items: *329 + items: *350 examples: default: value: @@ -87917,7 +87990,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *396 + '410': *418 '422': *7 x-github: githubCloudOnly: false @@ -87940,8 +88013,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 +88040,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 +88069,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 +88078,7 @@ paths: application/json: schema: type: array - items: *331 + items: *352 examples: default: value: @@ -88036,8 +88109,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 +88122,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 +88172,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 +88233,9 @@ paths: application/json: schema: type: array - items: *622 + items: *644 examples: - default: *623 + default: *645 headers: Link: *40 '304': *37 @@ -88194,8 +88267,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 +88333,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 +88444,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 +88490,7 @@ paths: nullable: true requested_teams: type: array - items: *352 + items: *374 nullable: true head: type: object @@ -88456,14 +88529,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 +88546,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 +88639,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 +89166,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 +89186,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -89123,9 +89196,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 +89275,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 +89360,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 +89384,9 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: - default: *626 + default: *648 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89329,9 +89402,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 +89425,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 +89453,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -89403,9 +89476,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 +89510,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 +89541,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 +89587,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 +89602,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 +89613,7 @@ paths: application/json: schema: *3 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89566,9 +89639,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 +89683,9 @@ paths: description: Response content: application/json: - schema: *627 + schema: *649 examples: - default: *628 + default: *650 '422': *15 '403': *29 x-github: @@ -89634,9 +89707,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 +89769,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 +89809,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 +89822,7 @@ paths: enum: - asc - desc - - *150 + - *170 - *17 - *19 responses: @@ -89759,9 +89832,9 @@ paths: application/json: schema: type: array - items: *625 + items: *647 examples: - default: *630 + default: *652 headers: Link: *40 x-github: @@ -89794,9 +89867,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 +89974,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: example-for-a-multi-line-comment: value: @@ -89989,10 +90062,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 +90087,7 @@ paths: description: Response content: application/json: - schema: *625 + schema: *647 examples: default: value: @@ -90100,9 +90173,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 +90185,9 @@ paths: application/json: schema: type: array - items: *506 + items: *528 examples: - default: *631 + default: *653 headers: Link: *40 x-github: @@ -90144,9 +90217,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 +90229,7 @@ paths: application/json: schema: type: array - items: *521 + items: *543 examples: default: value: @@ -90175,7 +90248,7 @@ paths: Link: *40 '422': *15 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90194,9 +90267,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 +90292,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 +90405,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 +90423,7 @@ paths: items: *4 teams: type: array - items: *235 + items: *255 required: - users - teams @@ -90409,9 +90482,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 +90521,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *644 examples: default: value: @@ -90984,9 +91057,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 +91093,7 @@ paths: description: Response content: application/json: - schema: *622 + schema: *644 examples: default: value: @@ -91525,9 +91598,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 +91610,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 +91679,7 @@ paths: type: string body_text: type: string - author_association: *147 + author_association: *167 required: - id - node_id @@ -91688,9 +91761,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 +91849,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: &634 + default: &656 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91841,10 +91914,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 +91929,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: &635 + default: &657 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91917,10 +91990,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 +92016,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: default: value: @@ -92005,18 +92078,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 +92116,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 +92198,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 +92213,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 +92354,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 +92385,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: default: value: @@ -92375,10 +92448,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 +92486,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *654 examples: - default: *635 + default: *657 '404': *6 '422': *7 '403': *29 @@ -92437,9 +92510,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 +92575,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 +92589,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *658 examples: - default: &637 + default: &659 value: type: file encoding: base64 @@ -92560,8 +92633,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 +92654,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *658 examples: - default: *637 + default: *659 '404': *6 '422': *15 x-github: @@ -92605,8 +92678,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 +92689,7 @@ paths: application/json: schema: type: array - items: &638 + items: &660 title: Release description: A release. type: object @@ -92683,7 +92756,7 @@ paths: author: *4 assets: type: array - items: &639 + items: &661 title: Release Asset description: Data related to a release. type: object @@ -92758,7 +92831,7 @@ paths: description: The URL of the release discussion. type: string format: uri - reactions: *148 + reactions: *168 required: - assets_url - upload_url @@ -92870,8 +92943,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 +93020,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 +93127,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 +93141,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 +93178,7 @@ paths: type: User site_admin: false '404': *6 - '302': *523 + '302': *545 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93121,9 +93194,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 +93224,9 @@ paths: description: Response content: application/json: - schema: *639 + schema: *661 examples: - default: *641 + default: *663 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93169,9 +93242,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 +93268,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 +93354,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 +93380,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 +93394,9 @@ paths: description: Response content: application/json: - schema: *638 + schema: *660 examples: - default: *642 + default: *664 '404': *6 x-github: githubCloudOnly: false @@ -93345,9 +93418,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 +93434,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 +93454,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 +93520,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 +93543,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 +93565,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 +93577,7 @@ paths: application/json: schema: type: array - items: *639 + items: *661 examples: default: value: @@ -93586,9 +93659,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 +93687,7 @@ paths: description: Response for successful upload content: application/json: - schema: *639 + schema: *661 examples: response-for-successful-upload: value: @@ -93669,9 +93742,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 +93768,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 '404': *6 @@ -93718,9 +93791,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 +93823,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 +93854,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 +93881,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 +93899,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 +93920,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 +94017,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - *17 - *19 - name: includes_parents @@ -93956,7 +94029,7 @@ paths: schema: type: boolean default: true - - *666 + - *668 responses: '200': description: Response @@ -93964,7 +94037,7 @@ paths: application/json: schema: type: array - items: *133 + items: *152 examples: default: value: @@ -94011,8 +94084,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 requestBody: description: Request body required: true @@ -94041,7 +94114,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *132 + items: *669 required: - name - enforcement @@ -94072,9 +94145,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 +94194,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 +94207,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *673 examples: - default: *671 + default: *674 '404': *6 '500': *88 x-github: @@ -94157,17 +94230,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 +94268,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94216,9 +94289,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *675 + default: *678 '404': *6 '500': *88 put: @@ -94236,8 +94309,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94271,7 +94344,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *132 + items: *669 examples: default: value: @@ -94299,9 +94372,9 @@ paths: description: Response content: application/json: - schema: *133 + schema: *152 examples: - default: *675 + default: *678 '404': *6 '500': *88 delete: @@ -94319,8 +94392,8 @@ paths: category: repos subcategory: rules parameters: - - *385 - - *386 + - *407 + - *408 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94343,8 +94416,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 +94433,9 @@ paths: application/json: schema: type: array - items: *136 + items: *156 examples: - default: *339 + default: *361 '404': *6 '500': *88 x-github: @@ -94381,8 +94454,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 +94473,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *362 examples: default: value: @@ -94455,21 +94528,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 +94550,7 @@ paths: application/json: schema: type: array - items: &681 + items: &684 type: object properties: number: *103 @@ -94496,8 +94569,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 +94666,7 @@ paths: pull request. ' - oneOf: *680 + oneOf: *683 nullable: true has_more_locations: type: boolean @@ -94721,7 +94794,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 +94816,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 +94856,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 +94877,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 +94887,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 +94906,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *684 examples: default: value: @@ -94886,7 +94959,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 +94981,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 +94994,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &857 + items: &860 type: object properties: type: @@ -94947,9 +95020,6 @@ paths: example: commit details: oneOf: - - *682 - - *683 - - *684 - *685 - *686 - *687 @@ -94960,6 +95030,9 @@ paths: - *692 - *693 - *694 + - *695 + - *696 + - *697 examples: default: value: @@ -95023,7 +95096,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 +95118,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 +95127,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 +95151,7 @@ paths: schema: type: object properties: - reason: *696 + reason: *699 expire_at: type: string format: date-time @@ -95101,7 +95174,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 +95194,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 +95210,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 +95236,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 +95314,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 +95359,9 @@ paths: application/json: schema: type: array - items: *698 + items: *701 examples: - default: *699 + default: *702 '400': *14 '404': *6 x-github: @@ -95311,8 +95384,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 +95458,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 required: - login - type @@ -95472,9 +95545,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 +95780,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 +95885,7 @@ paths: description: Response content: application/json: - schema: *698 + schema: *701 examples: default: value: @@ -95959,17 +96032,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 +96066,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 +96141,7 @@ paths: login: type: string description: The username of the user credited. - type: *351 + type: *373 required: - login - type @@ -96154,17 +96227,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 +96268,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 +96297,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 +96333,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 +96433,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 +96443,7 @@ paths: application/json: schema: type: array - items: &702 + items: &705 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -96403,8 +96476,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 +96553,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 +96650,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 +96805,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 +96816,7 @@ paths: application/json: schema: type: array - items: *702 + items: *705 examples: default: value: @@ -96776,8 +96849,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 +96904,7 @@ paths: description: Response content: application/json: - schema: *703 + schema: *706 examples: default: value: @@ -96885,8 +96958,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 +96971,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -96918,14 +96991,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 +97066,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 +97093,7 @@ paths: description: Response content: application/json: - schema: *704 + schema: *707 examples: default: value: @@ -97047,8 +97120,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 +97141,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 +97221,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 +97230,7 @@ paths: application/json: schema: type: array - items: &705 + items: &708 title: Tag protection description: Tag protection type: object @@ -97209,8 +97282,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 +97306,7 @@ paths: description: Response content: application/json: - schema: *705 + schema: *708 examples: default: value: @@ -97264,8 +97337,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 +97375,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 +97412,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 +97423,9 @@ paths: application/json: schema: type: array - items: *235 + items: *255 examples: - default: *312 + default: *333 headers: Link: *40 '404': *6 @@ -97372,8 +97445,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 +97454,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 +97466,7 @@ paths: required: - names examples: - default: &707 + default: &710 value: names: - octocat @@ -97416,8 +97489,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 +97521,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *709 examples: - default: *707 + default: *710 '404': *6 '422': *7 x-github: @@ -97471,9 +97544,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 +97575,7 @@ paths: example: 128 clones: type: array - items: &709 + items: &712 title: Traffic type: object properties: @@ -97589,8 +97662,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 +97753,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 +97814,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 +97835,7 @@ paths: example: 3782 views: type: array - items: *709 + items: *712 required: - uniques - count @@ -97839,8 +97912,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 +97949,7 @@ paths: description: Response content: application/json: - schema: *204 + schema: *224 examples: default: value: @@ -98114,8 +98187,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 +98211,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 +98234,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 +98261,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 +98354,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 +98397,7 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: default: value: @@ -98434,7 +98507,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 +98516,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 +98527,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 +98569,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &711 + items: &714 allOf: - type: object required: @@ -98571,7 +98644,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 +98704,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 +98752,7 @@ paths: required: true content: application/json: - schema: &720 + schema: &723 type: object required: - schemas @@ -98735,9 +98808,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 +98829,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 +98852,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 +98860,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 +98894,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 +98926,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 +98960,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 +99026,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 +99052,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 +99096,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *722 - - *723 + - *725 + - *726 - *41 responses: '200': @@ -99057,7 +99130,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &726 + items: &729 allOf: - type: object required: @@ -99136,7 +99209,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 +99265,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 +99302,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 +99330,7 @@ paths: required: true content: application/json: - schema: &729 + schema: &732 type: object required: - schemas @@ -99339,9 +99412,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 +99461,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 +99489,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 +99512,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 +99525,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 +99555,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 +99613,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 +99659,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 +99690,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 +99787,7 @@ paths: example: 1 Resources: type: array - items: &732 + items: &735 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -99945,22 +100018,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 +100059,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 +100084,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 +100192,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 +100226,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 +100350,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 +100453,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 +100573,7 @@ paths: html_url: type: string format: uri - repository: *204 + repository: *224 score: type: number file_size: @@ -100518,7 +100591,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &736 + text_matches: &739 title: Search Result Text Matches type: array items: @@ -100632,7 +100705,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 +100754,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 +100825,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *442 + properties: *464 nullable: true comment_count: type: integer @@ -100772,7 +100845,7 @@ paths: url: type: string format: uri - verification: *567 + verification: *589 required: - author - committer @@ -100791,7 +100864,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 +100877,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 +101065,7 @@ paths: - interactions - created - updated - - *737 + - *740 - *17 - *19 - name: advanced_search @@ -101119,8 +101192,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 +101207,7 @@ paths: type: string format: date-time nullable: true - text_matches: *736 + text_matches: *739 pull_request: type: object properties: @@ -101167,7 +101240,7 @@ paths: type: string score: type: number - author_association: *147 + author_association: *167 draft: type: boolean repository: *64 @@ -101178,7 +101251,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 +101261,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 +101379,7 @@ paths: locked: true author_association: COLLABORATOR state_reason: completed - '503': *137 + '503': *157 '422': *15 '304': *37 '403': *29 @@ -101362,7 +101435,7 @@ paths: enum: - created - updated - - *737 + - *740 - *17 - *19 responses: @@ -101406,7 +101479,7 @@ paths: nullable: true score: type: number - text_matches: *736 + text_matches: *739 required: - id - node_id @@ -101492,7 +101565,7 @@ paths: - forks - help-wanted-issues - updated - - *737 + - *740 - *17 - *19 responses: @@ -101711,8 +101784,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 +101804,7 @@ paths: - admin - pull - push - text_matches: *736 + text_matches: *739 temp_clone_token: type: string allow_merge_commit: @@ -101933,7 +102006,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 +102105,7 @@ paths: type: string format: uri nullable: true - text_matches: *736 + text_matches: *739 related: type: array nullable: true @@ -102225,7 +102298,7 @@ paths: - followers - repositories - joined - - *737 + - *740 - *17 - *19 responses: @@ -102329,7 +102402,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *736 + text_matches: *739 blog: type: string nullable: true @@ -102388,7 +102461,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 +102481,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 +102493,9 @@ paths: description: Response content: application/json: - schema: *366 + schema: *388 examples: - default: *367 + default: *389 '404': *6 x-github: githubCloudOnly: false @@ -102449,7 +102522,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 +102585,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 +102622,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 +102653,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 +102664,9 @@ paths: application/json: schema: type: array - items: *368 + items: *390 examples: - default: *739 + default: *742 headers: Link: *40 x-github: @@ -102622,7 +102695,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 +102729,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *369 + default: *391 x-github: triggersNotification: true githubCloudOnly: false @@ -102685,16 +102758,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 +102792,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 +102816,9 @@ paths: description: Response content: application/json: - schema: *368 + schema: *390 examples: - default: *740 + default: *743 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102770,8 +102843,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 +102873,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 +102885,9 @@ paths: application/json: schema: type: array - items: *371 + items: *393 examples: - default: *741 + default: *744 headers: Link: *40 x-github: @@ -102843,8 +102916,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 +102939,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *372 + default: *394 x-github: triggersNotification: true githubCloudOnly: false @@ -102895,17 +102968,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 +103003,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 +103027,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *393 examples: - default: *742 + default: *745 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102981,9 +103054,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 +103085,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 +103113,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -103071,9 +103144,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 +103178,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103133,8 +103206,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 +103233,9 @@ paths: application/json: schema: type: array - items: *374 + items: *396 examples: - default: *376 + default: *398 headers: Link: *40 x-github: @@ -103191,8 +103264,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 +103297,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *396 examples: - default: *375 + default: *397 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -103250,7 +103323,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 +103333,9 @@ paths: application/json: schema: type: array - items: *292 + items: *313 examples: - default: *293 + default: *314 headers: Link: *40 x-github: @@ -103288,7 +103361,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 +103384,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '404': *6 @@ -103339,8 +103412,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 +103449,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 +103489,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 +103526,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 +103568,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 +103594,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 +103630,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 +103659,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 +103669,9 @@ paths: application/json: schema: type: array - items: *383 + items: *405 examples: - default: *745 + default: *748 headers: Link: *40 '404': *6 @@ -103624,16 +103697,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 +103730,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 +103798,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 +103826,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 +103836,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '404': *6 @@ -103795,15 +103868,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 +104027,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 +104079,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 +104110,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 +104145,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 +104202,7 @@ paths: description: Response content: application/json: - schema: *387 + schema: *409 examples: default: value: @@ -104160,7 +104233,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 +104243,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 +104278,7 @@ paths: application/json: schema: oneOf: - - &750 + - &753 title: Private User description: Private User type: object @@ -104408,7 +104481,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 +104634,7 @@ paths: description: Response content: application/json: - schema: *750 + schema: *753 examples: default: value: @@ -104640,7 +104713,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 '304': *37 '404': *6 '403': *29 @@ -104663,7 +104736,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 +104764,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 +104788,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 +104837,9 @@ paths: type: integer codespaces: type: array - items: *301 + items: *322 examples: - default: *302 + default: *323 '304': *37 '500': *88 '401': *25 @@ -104905,21 +104978,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 +105032,7 @@ paths: type: integer secrets: type: array - items: &751 + items: &754 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -104999,7 +105072,7 @@ paths: - visibility - selected_repositories_url examples: - default: *498 + default: *520 headers: Link: *40 x-github: @@ -105069,13 +105142,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 +105178,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 +105223,7 @@ paths: description: Response after successfully creating a secret content: application/json: - schema: *215 + schema: *235 examples: default: value: @@ -105178,7 +105251,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 +105276,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 +105292,9 @@ paths: type: integer repositories: type: array - items: *204 + items: *224 examples: - default: *752 + default: *755 '401': *25 '403': *29 '404': *6 @@ -105246,7 +105319,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 +105373,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 +105406,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 +105438,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 +105472,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 +105502,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *322 examples: - default: *495 + default: *517 '401': *25 '403': *29 '404': *6 @@ -105453,7 +105526,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 +105555,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 +105602,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 +105634,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 +105647,9 @@ paths: description: Response content: application/json: - schema: *753 + schema: *756 examples: - default: *754 + default: *757 '404': *6 x-github: githubCloudOnly: false @@ -105597,7 +105670,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 +105686,9 @@ paths: type: integer machines: type: array - items: *755 + items: *758 examples: - default: *756 + default: *759 '304': *37 '500': *88 '401': *25 @@ -105644,7 +105717,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 +105767,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 +106547,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 +106587,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 +106625,9 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: &769 + default: &772 value: - id: 197 name: hello_docker @@ -106655,7 +106728,7 @@ paths: application/json: schema: type: array - items: &757 + items: &760 title: Email description: Email type: object @@ -106720,9 +106793,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 +106870,7 @@ paths: application/json: schema: type: array - items: *757 + items: *760 examples: default: value: @@ -106907,7 +106980,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '304': *37 @@ -106940,7 +107013,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 '304': *37 @@ -106962,7 +107035,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 +107065,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 +107090,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 +107126,7 @@ paths: application/json: schema: type: array - items: &758 + items: &761 title: GPG Key description: A unique encryption key type: object @@ -107184,7 +107257,7 @@ paths: - subkeys - revoked examples: - default: &785 + default: &788 value: - id: 3 name: Octocat's GPG Key @@ -107269,9 +107342,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 +107401,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 +107413,9 @@ paths: description: Response content: application/json: - schema: *758 + schema: *761 examples: - default: *759 + default: *762 '404': *6 '304': *37 '403': *29 @@ -107365,7 +107438,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 +107629,7 @@ paths: type: array items: *64 examples: - default: *761 + default: *764 headers: Link: *40 '404': *6 @@ -107581,7 +107654,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 +107680,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 +107714,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 +107743,7 @@ paths: required: true content: application/json: - schema: *578 + schema: *600 examples: default: value: @@ -107681,7 +107754,7 @@ paths: description: Response content: application/json: - schema: *290 + schema: *311 examples: default: value: @@ -107762,7 +107835,7 @@ paths: - closed - all default: open - - *298 + - *319 - name: sort description: What to sort results by. in: query @@ -107775,7 +107848,7 @@ paths: - comments default: created - *91 - - *150 + - *170 - *17 - *19 responses: @@ -107785,9 +107858,9 @@ paths: application/json: schema: type: array - items: *160 + items: *180 examples: - default: *299 + default: *320 headers: Link: *40 '404': *6 @@ -107820,7 +107893,7 @@ paths: application/json: schema: type: array - items: &762 + items: &765 title: Key description: Key type: object @@ -107917,9 +107990,9 @@ paths: description: Response content: application/json: - schema: *762 + schema: *765 examples: - default: &763 + default: &766 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107952,15 +108025,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 +108056,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 +108089,7 @@ paths: application/json: schema: type: array - items: &764 + items: &767 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -108073,7 +108146,7 @@ paths: - id - type - login - plan: *164 + plan: *184 required: - billing_cycle - next_billing_date @@ -108084,7 +108157,7 @@ paths: - account - plan examples: - default: &765 + default: &768 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -108146,9 +108219,9 @@ paths: application/json: schema: type: array - items: *764 + items: *767 examples: - default: *765 + default: *768 headers: Link: *40 '304': *37 @@ -108188,7 +108261,7 @@ paths: application/json: schema: type: array - items: *304 + items: *325 examples: default: value: @@ -108296,7 +108369,7 @@ paths: description: Response content: application/json: - schema: *304 + schema: *325 examples: default: value: @@ -108379,7 +108452,7 @@ paths: description: Response content: application/json: - schema: *304 + schema: *325 examples: default: value: @@ -108447,7 +108520,7 @@ paths: application/json: schema: type: array - items: *306 + items: *327 examples: default: value: @@ -108700,7 +108773,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -108880,7 +108953,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 +108966,7 @@ paths: description: Response content: application/json: - schema: *306 + schema: *327 examples: default: value: @@ -109087,7 +109160,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 +109186,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 +109215,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 +109240,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 +109250,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '404': *6 @@ -109216,7 +109289,7 @@ paths: type: array items: *59 examples: - default: *767 + default: *770 headers: Link: *40 '304': *37 @@ -109258,7 +109331,7 @@ paths: - docker - nuget - container - - *768 + - *771 - *19 - *17 responses: @@ -109268,10 +109341,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 +109364,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 +109486,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 +109517,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 +109550,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 +109571,7 @@ paths: application/json: schema: type: array - items: *317 + items: *338 examples: default: value: @@ -109547,15 +109620,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 +109664,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 +109696,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 +109754,7 @@ paths: description: Response content: application/json: - schema: *329 + schema: *350 examples: default: value: @@ -109753,9 +109826,9 @@ paths: application/json: schema: type: array - items: *757 + items: *760 examples: - default: *771 + default: *774 headers: Link: *40 '304': *37 @@ -109868,7 +109941,7 @@ paths: type: array items: *64 examples: - default: &778 + default: &781 summary: Default response value: - id: 1296269 @@ -110172,9 +110245,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 +110285,9 @@ paths: application/json: schema: type: array - items: *580 + items: *602 examples: - default: *772 + default: *775 headers: Link: *40 '304': *37 @@ -110237,7 +110310,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 +110333,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 +110366,7 @@ paths: application/json: schema: type: array - items: &773 + items: &776 title: Social account description: Social media account type: object @@ -110308,7 +110381,7 @@ paths: - provider - url examples: - default: &774 + default: &777 value: - provider: twitter url: https://twitter.com/github @@ -110370,9 +110443,9 @@ paths: application/json: schema: type: array - items: *773 + items: *776 examples: - default: *774 + default: *777 '422': *15 '304': *37 '404': *6 @@ -110459,7 +110532,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 +110552,7 @@ paths: - title - created_at examples: - default: &787 + default: &790 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110545,9 +110618,9 @@ paths: description: Response content: application/json: - schema: *775 + schema: *778 examples: - default: &776 + default: &779 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110578,7 +110651,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 +110663,9 @@ paths: description: Response content: application/json: - schema: *775 + schema: *778 examples: - default: *776 + default: *779 '404': *6 '304': *37 '403': *29 @@ -110615,7 +110688,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 +110717,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 +110742,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 +110902,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 +110931,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 +110956,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 +110990,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 '304': *37 @@ -110956,7 +111029,7 @@ paths: application/json: schema: type: array - items: *366 + items: *388 examples: default: value: @@ -111034,7 +111107,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 +111115,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 +111153,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 +111213,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 +111224,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: example: ; rel="next" @@ -111181,7 +111254,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 +111262,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 +111292,7 @@ paths: - *17 - *89 - *90 - - *226 + - *246 requestBody: required: true content: @@ -111242,8 +111315,8 @@ paths: required: - subject_digests examples: - default: *782 - withPredicateType: *783 + default: *785 + withPredicateType: *786 responses: '200': description: Response @@ -111296,7 +111369,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 +111387,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 +111452,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 +111483,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 +111521,7 @@ paths: - *17 - *89 - *90 - - *226 + - *246 - name: subject_digest description: Subject Digest in: path @@ -111498,12 +111571,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 +111602,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 +111610,9 @@ paths: application/json: schema: type: array - items: *313 + items: *334 examples: - default: *769 + default: *772 '403': *29 '401': *25 x-github: @@ -111562,7 +111635,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 +111645,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111643,7 +111716,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 +111727,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111733,7 +111806,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 +111816,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -111810,7 +111883,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 +111895,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -111841,7 +111914,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 +111926,7 @@ paths: type: array items: *4 examples: - default: *300 + default: *321 headers: Link: *40 x-github: @@ -111872,7 +111945,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 +111972,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 +111983,9 @@ paths: application/json: schema: type: array - items: *151 + items: *171 examples: - default: *152 + default: *172 headers: Link: *40 '422': *15 @@ -111933,7 +112006,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 +112016,9 @@ paths: application/json: schema: type: array - items: *758 + items: *761 examples: - default: *785 + default: *788 headers: Link: *40 x-github: @@ -111969,7 +112042,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 +112114,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 +112122,7 @@ paths: application/json: schema: *22 examples: - default: *577 + default: *599 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112067,7 +112140,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 +112191,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 +112203,7 @@ paths: type: array items: *59 examples: - default: *767 + default: *770 headers: Link: *40 x-github: @@ -112169,8 +112242,8 @@ paths: - docker - nuget - container - - *768 - - *226 + - *771 + - *246 - *19 - *17 responses: @@ -112180,12 +112253,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 +112278,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 +112309,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 +112343,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 +112377,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 +112387,7 @@ paths: application/json: schema: type: array - items: *317 + items: *338 examples: default: value: @@ -112372,16 +112445,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 +112489,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 +112524,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 +112553,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 +112574,7 @@ paths: application/json: schema: type: array - items: *329 + items: *350 examples: default: value: @@ -112563,7 +112636,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 +112646,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -112652,7 +112725,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 +112735,7 @@ paths: application/json: schema: type: array - items: *172 + items: *192 examples: default: value: @@ -112739,7 +112812,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 +112855,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -112808,15 +112881,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 +112911,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 +112941,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 +112969,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 +113044,7 @@ paths: '400': *14 '403': *29 '500': *88 - '503': *137 + '503': *157 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112989,7 +113062,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 +113072,9 @@ paths: application/json: schema: type: array - items: *773 + items: *776 examples: - default: *774 + default: *777 headers: Link: *40 x-github: @@ -113021,7 +113094,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 +113104,9 @@ paths: application/json: schema: type: array - items: *775 + items: *778 examples: - default: *787 + default: *790 headers: Link: *40 x-github: @@ -113057,8 +113130,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 +113143,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 +113166,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 +113176,9 @@ paths: application/json: schema: type: array - items: *204 + items: *224 examples: - default: *319 + default: *340 headers: Link: *40 x-github: @@ -113233,7 +113306,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 +113364,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 +113383,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 +113443,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 +113469,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 +114132,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 +114283,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 +114362,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 +114589,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 +114776,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 +114851,7 @@ x-webhooks: required: true content: application/json: - schema: &797 + schema: &800 title: Exemption request cancellation event type: object properties: @@ -114786,11 +114859,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 +115096,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 +115204,7 @@ x-webhooks: required: true content: application/json: - schema: &798 + schema: &801 title: Exemption request completed event type: object properties: @@ -115139,11 +115212,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 +115286,7 @@ x-webhooks: required: true content: application/json: - schema: &799 + schema: &802 title: Exemption request created event type: object properties: @@ -115221,11 +115294,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 +115368,7 @@ x-webhooks: required: true content: application/json: - schema: &800 + schema: &803 title: Exemption response dismissed event type: object properties: @@ -115303,12 +115376,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 +115453,7 @@ x-webhooks: required: true content: application/json: - schema: &801 + schema: &804 title: Exemption response submitted event type: object properties: @@ -115388,12 +115461,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 +115539,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 +115606,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 +115673,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 +115740,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 +115808,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 +115886,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 +115939,8 @@ x-webhooks: type: string pull_requests: type: array - items: *457 - repository: *204 + items: *479 + repository: *224 status: example: completed type: string @@ -115904,7 +115977,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *802 + deployment: *805 details_url: example: https://example.com type: string @@ -115954,7 +116027,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 +116062,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 +116457,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 +116856,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 +117264,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 +118244,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 +118917,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 +119584,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 +119750,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 +119895,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 +120070,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 +120300,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 +120400,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 +120568,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 +120736,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 +120902,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 +121004,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 +121172,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 +121275,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 +121415,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 +121677,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 +121760,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 +121781,7 @@ x-webhooks: enum: - tag - branch - repository: *793 + repository: *796 sender: *4 required: - ref @@ -121791,9 +121864,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 +121951,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 +122031,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 +122111,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 +122190,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 +122278,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 +122373,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 +122461,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 +122549,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 +122635,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 +122721,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 +122808,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 +122894,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 +122975,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 +123013,8 @@ x-webhooks: - verified - created_at - read_only - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -123018,11 +123091,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 +123656,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 +124387,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 +124464,7 @@ x-webhooks: type: string enum: - approved - approver: &809 + approver: &812 type: object properties: avatar_url: @@ -124434,11 +124507,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 +124590,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &811 + workflow_job_run: &814 type: object properties: conclusion: @@ -125248,18 +125321,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 +126036,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 +127941,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 +128626,7 @@ x-webhooks: type: string enum: - answered - answer: &815 + answer: &818 type: object properties: author_association: @@ -128710,7 +128783,7 @@ x-webhooks: - created_at - updated_at - body - discussion: &813 + discussion: &816 title: Discussion description: A Discussion in a repository. type: object @@ -128996,7 +129069,7 @@ x-webhooks: - id labels: type: array - items: *589 + items: *611 required: - repository_url - category @@ -129018,10 +129091,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 +129221,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 +129308,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 +129394,7 @@ x-webhooks: type: string enum: - created - comment: &814 + comment: &817 type: object properties: author_association: @@ -129478,11 +129551,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 +129638,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 +129738,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 +129827,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 +129913,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 +130017,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 +130103,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 +130138,8 @@ x-webhooks: - color - default - description - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -130149,11 +130222,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 +130308,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 +130394,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 +130483,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 +130575,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 +130660,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 +130748,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 +130834,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 +130907,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 +130970,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 +131036,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 +131102,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 +131168,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 +131234,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 +131300,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 +131367,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 +132027,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 +132175,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 +132214,7 @@ x-webhooks: - action - sha - html_url - repository: *793 + repository: *796 sender: *4 required: - pages @@ -132217,10 +132290,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 +132319,8 @@ x-webhooks: - name - full_name - private - repository: *793 - requester: *817 + repository: *796 + requester: *820 sender: *4 required: - action @@ -132322,11 +132395,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 +132475,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 +132555,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 +132604,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 +132691,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 +132721,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 +132802,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 +132985,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 +133067,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 +133195,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 +133323,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 +134147,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -134407,8 +134480,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -134488,7 +134561,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 +134726,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 +135546,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -135808,8 +135881,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -135889,7 +135962,7 @@ x-webhooks: type: string enum: - edited - changes: &849 + changes: &852 description: The changes to the comment. type: object properties: @@ -135901,9 +135974,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 +136798,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -137058,8 +137131,8 @@ x-webhooks: - state - locked - assignee - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -137141,10 +137214,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 +138035,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -138063,8 +138136,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -138144,8 +138217,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 +139041,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -139204,8 +139277,8 @@ x-webhooks: required: - state - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -139284,8 +139357,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 +140172,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -140199,8 +140272,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -140279,8 +140352,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 +141189,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -141195,7 +141268,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 +141406,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -141433,8 +141506,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 +142322,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -142353,9 +142426,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 +142508,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 +143323,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -143354,9 +143427,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 +143509,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 +144348,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *295 + type: *316 title: description: Title of the issue type: string @@ -144356,8 +144429,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -144436,8 +144509,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 +145345,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -145350,9 +145423,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 +146399,7 @@ x-webhooks: required: - login - id - type: *295 + type: *316 required: - id - number @@ -146795,8 +146868,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 +147687,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -147714,8 +147787,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -147795,9 +147868,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 +148682,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -148709,8 +148782,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -148789,8 +148862,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 +149780,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 +150677,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -151172,11 +151245,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 +151329,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 +151415,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &852 + assignee: &855 title: User type: object nullable: true @@ -151412,11 +151485,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 +151568,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 +151653,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 +152493,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *295 + type: *316 updated_at: type: string format: date-time @@ -152498,8 +152571,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -152579,11 +152652,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 +152735,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 +152820,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 +152902,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 +153016,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 +153102,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 +153187,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 +153268,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153275,10 +153348,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 +153434,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153443,10 +153516,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 +153601,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *793 + repository: *796 sender: *4 required: - action @@ -153609,8 +153682,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 +153765,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 +153847,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 +153954,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 +154058,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 +154141,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 +154223,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 +154303,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 +154493,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 +154574,7 @@ x-webhooks: required: - login - id - team: *827 + team: *830 required: - action - scope @@ -154583,8 +154656,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 +154676,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 +154770,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 +154846,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 +154955,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 +155045,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 +155128,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 +155267,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155274,11 +155347,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 +155461,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 +155545,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 +155628,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 +155711,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 +155794,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 +155903,8 @@ x-webhooks: - role - organization_url - user - organization: *792 - repository: *793 + organization: *795 + repository: *796 sender: *4 required: - action @@ -155909,11 +155982,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 +156065,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 +156182,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 +156263,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 +156354,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 +156434,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 +156935,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &834 + items: &837 title: Ruby Gems metadata type: object properties: @@ -156957,7 +157030,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -157033,9 +157106,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 +157461,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *834 + items: *837 source_url: type: string format: uri @@ -157458,7 +157531,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -157635,12 +157708,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 +157790,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 +157936,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 +158016,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 +158096,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 +158175,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 +158284,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 +158316,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 +158562,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 +158684,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -158692,11 +158765,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 +158849,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 +158979,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 +159074,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 +159172,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 +159364,7 @@ x-webhooks: type: string required: - after_id - repository: *793 + repository: *796 sender: *4 required: - action @@ -159371,10 +159444,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 +159571,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -159578,10 +159651,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 +159693,7 @@ x-webhooks: - name - created_at - updated_at - repository: *793 + repository: *796 sender: *4 required: - action @@ -159699,18 +159772,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 +159873,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 +159957,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 +160041,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 +160125,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 +160238,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 +160321,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 +160406,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 +160551,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 +160634,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 +160753,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 +160838,7 @@ x-webhooks: type: string enum: - archived - changes: &844 + changes: &847 type: object properties: archived_at: @@ -160779,9 +160852,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 +160988,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 +161072,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 +161155,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 +161263,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 +161281,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 +161304,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *842 - - *843 + - *845 + - *846 required: - field_value - type: object @@ -161248,9 +161321,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 +161418,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 +161503,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 +161588,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 +161671,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 +161800,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 +161938,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 +162011,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 +162091,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 +164380,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -164389,11 +164462,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 +166744,7 @@ x-webhooks: - draft reason: type: string - repository: *793 + repository: *796 sender: *4 required: - action @@ -166753,11 +166826,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 +169108,7 @@ x-webhooks: - draft reason: type: string - repository: *793 + repository: *796 sender: *4 required: - action @@ -169117,13 +169190,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 +169258,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *793 + repository: *796 sender: *4 required: - action @@ -169266,12 +169339,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 +169424,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 +171691,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -171697,11 +171770,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 +174056,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *793 + repository: *796 sender: *4 required: - action @@ -174107,12 +174180,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 +174265,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 +176536,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -176543,11 +176616,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 +178902,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -178910,10 +178983,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 +181266,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -181273,12 +181346,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 +181430,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 +181516,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 +181601,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 +181972,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 +184144,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -184151,7 +184224,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 +184509,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 +186669,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -186676,11 +186749,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 +188914,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *793 + repository: *796 sender: *4 required: - action @@ -188922,9 +188995,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 +191170,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 +191413,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 +193469,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 +193699,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 +195987,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_reviewer: title: User type: object @@ -195998,12 +196071,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 +198366,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 +198558,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 +200848,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 requested_reviewer: title: User type: object @@ -200860,12 +200933,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 +203214,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 +203395,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 +205572,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 - review: *851 + repository: *796 + review: *854 sender: *4 required: - action @@ -205580,9 +205653,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 +207725,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 + repository: *796 sender: *4 thread: type: object @@ -208035,9 +208108,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 +210166,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *793 + repository: *796 sender: *4 thread: type: object @@ -210479,10 +210552,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 +212826,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -212835,11 +212908,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 +215195,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -215201,11 +215274,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 +217551,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -217559,10 +217632,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 +219900,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *793 + repository: *796 sender: *4 required: - action @@ -220027,7 +220100,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 +220192,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 +220768,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 +221216,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *834 + items: *837 summary: type: string tag_name: @@ -221197,7 +221270,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -221275,9 +221348,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 +221658,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *834 + items: *837 summary: type: string tag_name: @@ -221634,7 +221707,7 @@ x-webhooks: - owner - package_version - registry - repository: *793 + repository: *796 sender: *4 required: - action @@ -221711,10 +221784,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 +222100,7 @@ x-webhooks: - tarball_url - zipball_url - body - repository: *793 + repository: *796 sender: *4 required: - action @@ -222104,11 +222177,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 +222298,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 +222380,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 +222699,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *793 + repository: *796 sender: *4 required: - action @@ -222702,10 +222775,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 +223092,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *793 + repository: *796 sender: *4 required: - action @@ -223095,11 +223168,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 +223248,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 +223328,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 +223408,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 +223488,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 +223568,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 +223649,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 +223736,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 +223851,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 +223926,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 +224010,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 +224090,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 +224187,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 +224270,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 +224352,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 +224434,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 +224499,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 +224742,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 +224823,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 +224904,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 +225025,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 +225234,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 +225315,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 +225518,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 +225599,7 @@ x-webhooks: type: string enum: - created - alert: &856 + alert: &859 type: object properties: number: *103 @@ -225637,10 +225710,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 +225794,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 +226036,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 +226118,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 +226200,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 +226282,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 +226412,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 +226493,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 +226680,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 +226757,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 +226944,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 +227026,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 +227332,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 +227425,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 +227507,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 +227591,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &861 + changes: &864 type: object properties: tier: @@ -227562,13 +227635,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 +227718,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 +227798,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 +227884,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 +228307,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 +228424,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 +228516,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 +228608,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 +228700,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 +228785,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 +228980,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 +229440,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -229443,9 +229516,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 +229976,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -229980,9 +230053,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 +230513,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -230584,9 +230657,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 +231117,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - changes @@ -231122,9 +231195,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 +231655,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *862 + team: *865 required: - action - team @@ -231658,10 +231731,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 +231807,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 +231898,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 +232138,7 @@ x-webhooks: type: string required: - conclusion - deployment: *533 + deployment: *555 required: - action - repository @@ -232144,10 +232217,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 +232480,7 @@ x-webhooks: required: - status - steps - deployment: *533 + deployment: *555 required: - action - repository @@ -232486,10 +232559,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 +232697,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *533 + deployment: *555 required: - action - repository @@ -232703,10 +232776,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 +232915,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *533 + deployment: *555 required: - action - repository @@ -232922,12 +232995,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 +233999,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 +234988,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..b2a73ef1f6 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", @@ -30456,7 +30462,7 @@ "type": "array", "description": "An array of rules within the ruleset.", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } }, @@ -30785,7 +30791,7 @@ "description": "An array of rules within the ruleset.", "type": "array", "items": { - "$ref": "#/components/schemas/repository-rule" + "$ref": "#/components/schemas/org-rules" } } } @@ -115115,7 +115121,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 +115301,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 +117251,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 +117991,7 @@ } } }, - "repository-rule": { + "enterprise-rules": { "title": "Repository Rule", "type": "object", "description": "A repository rule.", @@ -118060,9 +118008,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 +118126,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", @@ -127978,6 +128070,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 +291162,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 +291207,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 +291243,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 +295639,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..72278823c5 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 @@ -22086,7 +22090,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 +22306,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: @@ -83621,6 +83625,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 +83760,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 +85330,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 +85898,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 +85907,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 +85966,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 @@ -93819,6 +93862,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/{"code":"deadline_exceeded","msg":"operation timed out"}