diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index 8091244623..7de9ec9309 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -7546,6 +7546,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -27119,6 +27122,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -35378,6 +35384,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ @@ -56214,6 +56267,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -87449,6 +87505,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ @@ -128037,6 +128140,10 @@ "octocat" ] }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -319024,7 +319131,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -319249,7 +319357,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -336132,7 +336241,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -336290,7 +336400,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -336412,7 +336523,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -336558,7 +336670,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -349855,6 +349968,14 @@ ] } }, + "dependabot-alert-relationship": { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, "dependabot-alert-sort": { "name": "sort", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index d08178300c..93de2388ed 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -5779,6 +5779,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -20258,6 +20259,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-runtime-risk" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -26191,6 +26193,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -41482,6 +41525,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -63982,6 +64026,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -93179,6 +93264,10 @@ components: scope). examples: - octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, or for a multi-user + budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget to. @@ -235121,6 +235210,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -235305,6 +235395,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -249756,6 +249847,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -249875,6 +249967,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -249960,6 +250053,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -250066,6 +250160,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -261620,6 +261715,16 @@ components: enum: - development - runtime + dependabot-alert-relationship: + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string dependabot-alert-sort: name: sort in: query diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index d6a265202c..4c96fcc711 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -7546,6 +7546,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -27077,6 +27080,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -35335,6 +35341,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ @@ -56139,6 +56192,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -87366,6 +87422,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ @@ -127480,6 +127583,10 @@ "octocat" ] }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -318168,7 +318275,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -318393,7 +318501,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -335265,7 +335374,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -335423,7 +335533,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -335545,7 +335656,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -335691,7 +335803,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -348898,6 +349011,14 @@ ] } }, + "dependabot-alert-relationship": { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, "dependabot-alert-sort": { "name": "sort", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index a749a9bdfd..7002d32aed 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -5779,6 +5779,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -20224,6 +20225,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-runtime-risk" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -26159,6 +26161,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -41421,6 +41464,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -63911,6 +63955,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -92766,6 +92851,10 @@ components: scope). examples: - octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, or for a multi-user + budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget to. @@ -234411,6 +234500,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -234595,6 +234685,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -249036,6 +249127,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -249155,6 +249247,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -249240,6 +249333,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -249346,6 +249440,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -260815,6 +260910,16 @@ components: enum: - development - runtime + dependabot-alert-relationship: + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string dependabot-alert-sort: name: sort in: query diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index aa04b30e8d..98beafd16f 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -7560,6 +7560,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -27221,6 +27224,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -35557,6 +35563,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ @@ -56483,6 +56536,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -87818,6 +87874,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ @@ -128777,6 +128880,10 @@ "octocat" ] }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -320967,7 +321074,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -321192,7 +321300,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -338146,7 +338255,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -338304,7 +338414,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -338426,7 +338537,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -338572,7 +338684,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -351997,6 +352110,14 @@ ] } }, + "dependabot-alert-relationship": { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, "dependabot-alert-sort": { "name": "sort", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 61ba725d9f..02f41ccb4e 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -5787,6 +5787,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -20312,6 +20313,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-runtime-risk" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -26286,6 +26288,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -41650,6 +41693,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -64203,6 +64247,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -93663,6 +93748,10 @@ components: scope). examples: - octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, or for a multi-user + budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget to. @@ -236374,6 +236463,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -236558,6 +236648,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -251045,6 +251136,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -251164,6 +251256,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -251249,6 +251342,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -251355,6 +251449,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -262973,6 +263068,16 @@ components: enum: - development - runtime + dependabot-alert-relationship: + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string dependabot-alert-sort: name: sort in: query diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 3e3c2db520..b3a97bb718 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -29236,6 +29236,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -30863,7 +30871,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -31088,7 +31097,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -88954,6 +88964,10 @@ "octocat" ] }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -147249,6 +147263,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -148876,7 +148898,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -149101,7 +149124,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -236131,6 +236155,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ @@ -411859,6 +411930,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -412934,7 +413013,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -413092,7 +413172,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -414429,7 +414510,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -415774,7 +415856,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -825185,6 +825268,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 504088ec24..753f17532c 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -914,7 +914,7 @@ paths: - subscriptions_url - type - url - type: &332 + type: &333 type: string description: The type of credit the user is receiving. enum: @@ -1080,7 +1080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &690 + - &691 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4337,7 +4337,7 @@ paths: schema: type: integer default: 30 - - &220 + - &221 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 @@ -4346,7 +4346,7 @@ paths: required: false schema: type: string - - &221 + - &222 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4366,7 +4366,7 @@ paths: application/json: schema: type: array - items: &222 + items: &223 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4462,7 +4462,7 @@ paths: - installation_id - repository_id examples: - default: &223 + default: &224 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4597,7 +4597,7 @@ paths: description: Response content: application/json: - schema: &224 + schema: &225 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4732,7 +4732,7 @@ paths: - request - response examples: - default: &225 + default: &226 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -12617,7 +12617,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 - - &489 + - &490 name: has in: query description: |- @@ -12651,6 +12651,16 @@ paths: - development - runtime - &211 + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string + - &212 name: sort in: query description: |- @@ -12676,7 +12686,7 @@ paths: application/json: schema: type: array - items: &212 + items: &213 type: object description: A Dependabot alert. properties: @@ -12747,7 +12757,7 @@ paths: - transitive - inconclusive - - security_advisory: &490 + security_advisory: &491 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -13022,7 +13032,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &491 + auto_dismissed_at: &492 type: - string - 'null' @@ -13030,7 +13040,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &492 + dismissal_request: &493 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -13093,7 +13103,7 @@ paths: - repository additionalProperties: false examples: - default: &213 + default: &214 value: - number: 2 state: dismissed @@ -13103,6 +13113,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -13289,6 +13300,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -13478,7 +13490,7 @@ paths: description: Response content: application/json: - schema: &214 + schema: &215 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -13504,7 +13516,7 @@ paths: - *66 additionalProperties: false examples: - default: &215 + default: &216 value: default_level: public accessible_repositories: @@ -14749,7 +14761,7 @@ paths: properties: action: type: string - discussion: &784 + discussion: &785 title: Discussion description: A Discussion in a repository. type: object @@ -15250,7 +15262,7 @@ paths: milestone: anyOf: - type: 'null' - - &282 + - &283 title: Milestone description: A collection of related issues and pull requests. @@ -15422,7 +15434,7 @@ paths: timeline_url: type: string format: uri - type: &246 + type: &247 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -15535,7 +15547,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &702 + sub_issues_summary: &703 title: Sub-issues Summary type: object properties: @@ -15619,7 +15631,7 @@ paths: pin: anyOf: - type: 'null' - - &568 + - &569 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -15640,7 +15652,7 @@ paths: minimized: anyOf: - type: 'null' - - &569 + - &570 title: Minimized Issue Comment description: Details about why an issue comment was minimized. @@ -15665,7 +15677,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &703 + issue_dependencies_summary: &704 title: Issue Dependencies Summary type: object properties: @@ -15684,7 +15696,7 @@ paths: - total_blocking issue_field_values: type: array - items: &550 + items: &551 title: Issue Field Value description: A value assigned to an issue field type: object @@ -16501,7 +16513,7 @@ paths: type: string release: allOf: - - &614 + - &615 title: Release description: A release. type: object @@ -16583,7 +16595,7 @@ paths: author: *4 assets: type: array - items: &615 + items: &616 title: Release Asset description: Data related to a release. type: object @@ -17186,7 +17198,7 @@ paths: url: type: string format: uri - user: &711 + user: &712 title: Public User description: Public User type: object @@ -19088,7 +19100,7 @@ paths: - closed - all default: open - - &249 + - &250 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -19139,7 +19151,7 @@ paths: type: array items: *83 examples: - default: &250 + default: &251 value: - id: 1 node_id: MDU6SXNzdWUx @@ -20565,14 +20577,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &340 + - &341 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &341 + - &342 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20634,7 +20646,7 @@ paths: '404': *6 '403': *27 '304': *36 - '301': &344 + '301': &345 description: Moved permanently content: application/json: @@ -20656,7 +20668,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &588 + - &589 name: all description: If `true`, show notifications marked as read. in: query @@ -20664,7 +20676,7 @@ paths: schema: type: boolean default: false - - &589 + - &590 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20674,7 +20686,7 @@ paths: type: boolean default: false - *88 - - &590 + - &591 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: @@ -21056,7 +21068,7 @@ paths: type: boolean examples: - false - security_and_analysis: &297 + security_and_analysis: &298 type: - object - 'null' @@ -21267,7 +21279,7 @@ paths: - url - subscription_url examples: - default: &591 + default: &592 value: - id: '1' repository: @@ -22271,6 +22283,10 @@ paths: a single user (`user` scope). examples: - octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, + or for a multi-user budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget @@ -23220,7 +23236,7 @@ paths: parameters: - *75 - *117 - - &762 + - &763 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 @@ -23332,7 +23348,7 @@ paths: - *117 - *118 - *119 - - &763 + - &764 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -23340,7 +23356,7 @@ paths: schema: type: string - *122 - - &764 + - &765 name: sku description: The SKU to query for usage. in: query @@ -24319,7 +24335,7 @@ paths: type: integer repository_cache_usages: type: array - items: &351 + items: &352 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -25707,7 +25723,7 @@ paths: - all - local_only - selected - selected_actions_url: &356 + selected_actions_url: &357 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` @@ -25790,7 +25806,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &361 type: object properties: days: @@ -25832,7 +25848,7 @@ paths: required: true content: application/json: - schema: &361 + schema: &362 type: object properties: days: @@ -25889,7 +25905,7 @@ paths: required: - approval_policy examples: - default: &362 + default: &363 value: approval_policy: first_time_contributors '404': *6 @@ -25948,7 +25964,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &364 type: object required: - run_workflows_from_fork_pull_requests @@ -26002,7 +26018,7 @@ paths: required: true content: application/json: - schema: &364 + schema: &365 type: object required: - run_workflows_from_fork_pull_requests @@ -26637,7 +26653,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &366 type: object properties: default_workflow_permissions: &149 @@ -26688,7 +26704,7 @@ paths: required: false content: application/json: - schema: &366 + schema: &367 type: object properties: default_workflow_permissions: *149 @@ -27839,7 +27855,7 @@ paths: application/json: schema: type: array - items: &367 + items: &368 title: Runner Application description: Runner Application type: object @@ -27864,7 +27880,7 @@ paths: - download_url - filename examples: - default: &368 + default: &369 value: - os: osx architecture: x64 @@ -27950,7 +27966,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &369 + '201': &370 description: Response content: application/json: @@ -28065,7 +28081,7 @@ paths: - token - expires_at examples: - default: &370 + default: &371 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -28104,7 +28120,7 @@ paths: application/json: schema: *160 examples: - default: &371 + default: &372 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -28138,7 +28154,7 @@ paths: application/json: schema: *158 examples: - default: &372 + default: &373 value: id: 23 name: MBP @@ -28365,7 +28381,7 @@ paths: - *75 - *157 responses: - '200': &373 + '200': &374 description: Response content: application/json: @@ -28422,7 +28438,7 @@ paths: parameters: - *75 - *157 - - &374 + - &375 name: name description: The name of a self-hosted runner's custom label. in: path @@ -31394,12 +31410,12 @@ paths: required: - subject_digests examples: - default: &743 + default: &744 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &744 + withPredicateType: &745 value: subject_digests: - sha256:abc123 @@ -31458,7 +31474,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &745 + default: &746 value: attestations_subject_digests: - sha256:abc: @@ -31809,7 +31825,7 @@ paths: initiator: type: string examples: - default: &400 + default: &401 value: attestations: - repository_id: 1 @@ -32092,7 +32108,7 @@ paths: parent: anyOf: - type: 'null' - - &261 + - &262 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -32695,7 +32711,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *75 - - &426 + - &427 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`, @@ -32705,7 +32721,7 @@ paths: schema: &188 type: string description: The name of the tool used to generate the code scanning analysis. - - &427 + - &428 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 @@ -32729,7 +32745,7 @@ paths: be returned. in: query required: false - schema: &429 + schema: &430 type: string description: State of a code scanning alert. enum: @@ -32752,7 +32768,7 @@ paths: be returned. in: query required: false - schema: &430 + schema: &431 type: string description: Severity of a code scanning alert. enum: @@ -32786,7 +32802,7 @@ paths: updated_at: *183 url: *184 html_url: *185 - instances_url: &431 + instances_url: &432 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -32808,7 +32824,7 @@ paths: - type: 'null' - *4 dismissed_at: *187 - dismissed_reason: &432 + dismissed_reason: &433 type: - string - 'null' @@ -32819,14 +32835,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &433 + dismissed_comment: &434 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &434 + rule: &435 type: object properties: id: @@ -32887,7 +32903,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &435 + tool: &436 type: object properties: name: *188 @@ -32898,26 +32914,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *189 - most_recent_instance: &436 + most_recent_instance: &437 type: object properties: - ref: &428 + ref: &429 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &447 + analysis_key: &448 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &448 + environment: &449 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &449 + category: &450 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -32937,7 +32953,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &450 + location: &451 type: object description: Describe a region within a file for the alert. properties: @@ -32958,7 +32974,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &451 + items: &452 type: - string - 'null' @@ -34258,7 +34274,7 @@ paths: type: integer codespaces: type: array - items: &251 + items: &252 type: object title: Codespace description: A codespace. @@ -34293,7 +34309,7 @@ paths: machine: anyOf: - type: 'null' - - &463 + - &464 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -34580,7 +34596,7 @@ paths: - pulls_url - recent_folders examples: - default: &252 + default: &253 value: total_count: 3 codespaces: @@ -35245,7 +35261,7 @@ paths: - updated_at - visibility examples: - default: &464 + default: &465 value: total_count: 2 secrets: @@ -35283,7 +35299,7 @@ paths: description: Response content: application/json: - schema: &465 + schema: &466 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -35318,7 +35334,7 @@ paths: - key_id - key examples: - default: &466 + default: &467 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -35350,7 +35366,7 @@ paths: application/json: schema: *196 examples: - default: &468 + default: &469 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -37436,7 +37452,7 @@ paths: currently being billed. seats: type: array - items: &254 + items: &255 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -38644,6 +38660,7 @@ paths: type: string - *210 - *211 + - *212 - *61 - *46 - *47 @@ -38655,9 +38672,9 @@ paths: application/json: schema: type: array - items: *212 + items: *213 examples: - default: *213 + default: *214 '304': *36 '400': *14 '403': *27 @@ -38706,9 +38723,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *215 examples: - default: *215 + default: *216 '403': *27 '404': *6 x-github: @@ -38872,7 +38889,7 @@ paths: type: integer secrets: type: array - items: &216 + items: &217 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -38951,7 +38968,7 @@ paths: description: Response content: application/json: - schema: &495 + schema: &496 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -38970,7 +38987,7 @@ paths: - key_id - key examples: - default: &496 + default: &497 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -39000,7 +39017,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *217 examples: default: value: @@ -39299,7 +39316,7 @@ paths: application/json: schema: type: array - items: &263 + items: &264 title: Package description: A software package type: object @@ -39370,7 +39387,7 @@ paths: - created_at - updated_at examples: - default: &264 + default: &265 value: - id: 197 name: hello_docker @@ -39540,7 +39557,7 @@ paths: application/json: schema: type: array - items: &240 + items: &241 title: Organization Invitation description: Organization Invitation type: object @@ -39594,7 +39611,7 @@ paths: - invitation_teams_url - node_id examples: - default: &241 + default: &242 value: - id: 1 login: monalisa @@ -39661,7 +39678,7 @@ paths: application/json: schema: type: array - items: &217 + items: &218 title: Org Hook description: Org Hook type: object @@ -39846,9 +39863,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: &218 + default: &219 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -39896,7 +39913,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *75 - - &219 + - &220 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. @@ -39909,9 +39926,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 '404': *6 x-github: githubCloudOnly: false @@ -39939,7 +39956,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *75 - - *219 + - *220 requestBody: required: false content: @@ -39985,7 +40002,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *218 examples: default: value: @@ -40027,7 +40044,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *75 - - *219 + - *220 responses: '204': description: Response @@ -40055,7 +40072,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *75 - - *219 + - *220 responses: '200': description: Response @@ -40086,7 +40103,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *75 - - *219 + - *220 requestBody: required: false content: @@ -40137,10 +40154,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *75 - - *219 - - *17 - *220 + - *17 - *221 + - *222 responses: '200': description: Response @@ -40148,9 +40165,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *223 + default: *224 '400': *14 '422': *15 x-github: @@ -40176,16 +40193,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *75 - - *219 + - *220 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 '400': *14 '422': *15 x-github: @@ -40211,7 +40228,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *75 - - *219 + - *220 - *16 responses: '202': *38 @@ -40241,7 +40258,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *75 - - *219 + - *220 responses: '204': description: Response @@ -40266,7 +40283,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *75 - - &230 + - &231 name: actor_type in: path description: The type of the actor @@ -40279,14 +40296,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &231 + - &232 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &226 + - &227 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`.' @@ -40294,7 +40311,7 @@ paths: required: true schema: type: string - - &227 + - &228 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) @@ -40391,12 +40408,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *75 - - *226 - *227 + - *228 - *19 - *17 - *61 - - &236 + - &237 name: sort description: The property to sort the results by. in: query @@ -40477,14 +40494,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *75 - - *226 - *227 + - *228 responses: '200': description: Response content: application/json: - schema: &228 + schema: &229 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -40500,7 +40517,7 @@ paths: type: integer format: int64 examples: - default: &229 + default: &230 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -40523,23 +40540,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *75 - - &232 + - &233 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *226 - *227 + - *228 responses: '200': description: Response content: application/json: - schema: *228 + schema: *229 examples: - default: *229 + default: *230 x-github: enabledForGitHubApps: true category: orgs @@ -40559,18 +40576,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *75 - - *226 - *227 - - *230 + - *228 - *231 + - *232 responses: '200': description: Response content: application/json: - schema: *228 + schema: *229 examples: - default: *229 + default: *230 x-github: enabledForGitHubApps: true category: orgs @@ -40590,9 +40607,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *75 - - *226 - *227 - - &233 + - *228 + - &234 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -40605,7 +40622,7 @@ paths: description: Response content: application/json: - schema: &234 + schema: &235 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -40621,7 +40638,7 @@ paths: type: integer format: int64 examples: - default: &235 + default: &236 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -40660,18 +40677,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *75 - - *232 - - *226 - - *227 - *233 + - *227 + - *228 + - *234 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *235 + default: *236 x-github: enabledForGitHubApps: true category: orgs @@ -40691,19 +40708,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *75 - - *230 - *231 - - *226 + - *232 - *227 - - *233 + - *228 + - *234 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *235 + default: *236 x-github: enabledForGitHubApps: true category: orgs @@ -40723,13 +40740,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *75 - - *232 - - *226 + - *233 - *227 + - *228 - *19 - *17 - *61 - - *236 + - *237 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -40813,7 +40830,7 @@ paths: application/json: schema: *20 examples: - default: &533 + default: &534 value: id: 1 account: @@ -40979,12 +40996,12 @@ paths: application/json: schema: anyOf: - - &238 + - &239 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &237 + limit: &238 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -41012,7 +41029,7 @@ paths: properties: {} additionalProperties: false examples: - default: &239 + default: &240 value: limit: collaborators_only origin: organization @@ -41041,13 +41058,13 @@ paths: required: true content: application/json: - schema: &534 + schema: &535 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *237 + limit: *238 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -41072,9 +41089,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *239 + default: *240 '422': *15 x-github: githubCloudOnly: false @@ -41284,9 +41301,9 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: - default: *241 + default: *242 headers: Link: *67 '404': *6 @@ -41363,7 +41380,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -41418,7 +41435,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *75 - - &242 + - &243 name: invitation_id description: The unique identifier of the invitation. in: path @@ -41449,7 +41466,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *75 - - *242 + - *243 - *17 - *19 responses: @@ -41461,7 +41478,7 @@ paths: type: array items: *201 examples: - default: &262 + default: &263 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -41504,7 +41521,7 @@ paths: application/json: schema: type: array - items: &243 + items: &244 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -41767,9 +41784,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *244 examples: - default: &244 + default: &245 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -41825,7 +41842,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *75 - - &245 + - &246 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -41935,9 +41952,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *244 examples: - default: *244 + default: *245 '404': *6 '422': *7 x-github: @@ -41962,7 +41979,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *75 - - *245 + - *246 responses: '204': *58 '404': *6 @@ -41992,9 +42009,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: &538 + default: &539 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -42080,9 +42097,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: &247 + default: &248 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -42115,7 +42132,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *75 - - &248 + - &249 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -42171,9 +42188,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 '422': *7 x-github: @@ -42198,7 +42215,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *75 - - *248 + - *249 responses: '204': description: Response @@ -42261,7 +42278,7 @@ paths: - closed - all default: open - - *249 + - *250 - name: type description: Can be the name of an issue type. in: query @@ -42292,7 +42309,7 @@ paths: type: array items: *83 examples: - default: *250 + default: *251 headers: Link: *67 '404': *6 @@ -42451,9 +42468,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *252 examples: - default: *252 + default: *253 '304': *36 '500': *54 '401': *23 @@ -42480,7 +42497,7 @@ paths: parameters: - *75 - *71 - - &253 + - &254 name: codespace_name in: path required: true @@ -42515,15 +42532,15 @@ paths: parameters: - *75 - *71 - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: &462 + default: &463 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -42703,7 +42720,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *254 + schema: *255 examples: default: value: @@ -42779,7 +42796,7 @@ paths: description: Response content: application/json: - schema: &255 + schema: &256 title: Org Membership description: Org Membership type: object @@ -42848,7 +42865,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &256 + response-if-user-has-an-active-admin-membership-with-organization: &257 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -42949,9 +42966,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *256 examples: - response-if-user-already-had-membership-with-organization: *256 + response-if-user-already-had-membership-with-organization: *257 '422': *15 '403': *27 x-github: @@ -43023,7 +43040,7 @@ paths: application/json: schema: type: array - items: &257 + items: &258 title: Migration description: A migration. type: object @@ -43361,7 +43378,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -43540,7 +43557,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *75 - - &258 + - &259 name: migration_id description: The unique identifier of the migration. in: path @@ -43568,7 +43585,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -43738,7 +43755,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *75 - - *258 + - *259 responses: '302': description: Response @@ -43760,7 +43777,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *75 - - *258 + - *259 responses: '204': description: Response @@ -43784,8 +43801,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *75 - - *258 - - &726 + - *259 + - &727 name: repo_name description: repo_name parameter in: path @@ -43813,7 +43830,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *75 - - *258 + - *259 - *17 - *19 responses: @@ -43825,7 +43842,7 @@ paths: type: array items: *156 examples: - default: &269 + default: &270 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43980,7 +43997,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &260 + items: &261 title: Organization Role description: Organization roles type: object @@ -44157,7 +44174,7 @@ paths: parameters: - *75 - *77 - - &259 + - &260 name: role_id description: The unique identifier of the role. in: path @@ -44194,7 +44211,7 @@ paths: parameters: - *75 - *77 - - *259 + - *260 responses: '204': description: Response @@ -44247,7 +44264,7 @@ paths: parameters: - *75 - *71 - - *259 + - *260 responses: '204': description: Response @@ -44279,7 +44296,7 @@ paths: parameters: - *75 - *71 - - *259 + - *260 responses: '204': description: Response @@ -44308,13 +44325,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *75 - - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *260 + schema: *261 examples: default: value: @@ -44365,7 +44382,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *75 - - *259 + - *260 - *17 - *19 responses: @@ -44444,7 +44461,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *262 type: description: The ownership type of the team type: string @@ -44477,7 +44494,7 @@ paths: - type - parent examples: - default: *262 + default: *263 headers: Link: *67 '404': @@ -44507,7 +44524,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *75 - - *259 + - *260 - *17 - *19 responses: @@ -44536,7 +44553,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *261 + items: *262 name: type: - string @@ -44846,7 +44863,7 @@ paths: - nuget - container - *75 - - &727 + - &728 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44882,12 +44899,12 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *264 + default: *265 '403': *27 '401': *23 - '400': &729 + '400': &730 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44909,7 +44926,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &265 + - &266 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 @@ -44927,7 +44944,7 @@ paths: - docker - nuget - container - - &266 + - &267 name: package_name description: The name of the package. in: path @@ -44940,7 +44957,7 @@ paths: description: Response content: application/json: - schema: *263 + schema: *264 examples: default: value: @@ -44992,8 +45009,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *265 - *266 + - *267 - *75 responses: '204': @@ -45026,8 +45043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - name: token description: package token @@ -45060,8 +45077,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: - - *265 - *266 + - *267 - *75 - *19 - *17 @@ -45082,7 +45099,7 @@ paths: application/json: schema: type: array - items: &267 + items: &268 title: Package Version description: A version of a software package type: object @@ -45217,10 +45234,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - - &268 + - &269 name: package_version_id description: Unique identifier of the package version. in: path @@ -45232,7 +45249,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -45268,10 +45285,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - - *268 + - *269 responses: '204': description: Response @@ -45303,10 +45320,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - - *268 + - *269 responses: '204': description: Response @@ -45336,7 +45353,7 @@ paths: - *75 - *17 - *19 - - &270 + - &271 name: sort description: The property by which to sort the results. in: query @@ -45347,7 +45364,7 @@ paths: - created_at default: created_at - *61 - - &271 + - &272 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -45359,7 +45376,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &272 + - &273 name: repository description: The name of the repository to use to filter the results. in: query @@ -45368,7 +45385,7 @@ paths: type: string examples: - Hello-World - - &273 + - &274 name: permission description: The permission to use to filter the results. in: query @@ -45377,7 +45394,7 @@ paths: type: string examples: - issues_read - - &274 + - &275 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) @@ -45387,7 +45404,7 @@ paths: schema: type: string format: date-time - - &275 + - &276 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) @@ -45397,7 +45414,7 @@ paths: schema: type: string format: date-time - - &276 + - &277 name: token_id description: The ID of the token in: query @@ -45716,7 +45733,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -45742,14 +45759,14 @@ paths: - *75 - *17 - *19 - - *270 - - *61 - *271 + - *61 - *272 - *273 - *274 - *275 - *276 + - *277 responses: '500': *54 '422': *15 @@ -46033,7 +46050,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -46075,7 +46092,7 @@ paths: type: integer configurations: type: array - items: &277 + items: &278 title: Organization private registry description: Private registry configuration for an organization type: object @@ -46592,7 +46609,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &278 + org-private-registry-with-selected-visibility: &279 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -46690,9 +46707,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *277 + schema: *278 examples: - default: *278 + default: *279 '404': *6 x-github: githubCloudOnly: false @@ -46944,7 +46961,7 @@ paths: application/json: schema: type: array - items: &279 + items: &280 title: Projects v2 Project description: A projects v2 project type: object @@ -47018,7 +47035,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &812 + - &813 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -47103,7 +47120,7 @@ paths: - deleted_at - deleted_by examples: - default: &280 + default: &281 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -47206,7 +47223,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &281 + - &282 name: project_number description: The project's number. in: path @@ -47219,9 +47236,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *280 examples: - default: *280 + default: *281 headers: Link: *67 '304': *36 @@ -47244,7 +47261,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *75 - - *281 + - *282 requestBody: required: true description: Details of the draft item to create in the project. @@ -47278,7 +47295,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &287 title: Projects v2 Item description: An item belonging to a project type: object @@ -47292,7 +47309,7 @@ paths: content: oneOf: - *83 - - &437 + - &438 title: Pull Request Simple description: Pull Request Simple type: object @@ -47412,7 +47429,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *283 active_lock_reason: type: - string @@ -47505,7 +47522,7 @@ paths: _links: type: object properties: - comments: &283 + comments: &284 title: Link description: Hypermedia Link type: object @@ -47514,13 +47531,13 @@ paths: type: string required: - href - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + commits: *284 + statuses: *284 + html: *284 + issue: *284 + review_comments: *284 + review_comment: *284 + self: *284 required: - comments - commits @@ -47531,7 +47548,7 @@ paths: - review_comment - self author_association: *80 - auto_merge: &598 + auto_merge: &599 title: Auto merge description: The status of auto merging a pull request. type: @@ -47557,7 +47574,7 @@ paths: - merge_method - commit_title - commit_message - stack: &599 + stack: &600 title: Pull Request Stack description: The stack information associated with a pull request. @@ -47673,7 +47690,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &285 + content_type: &286 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -47717,7 +47734,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &287 + draft_issue: &288 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -47791,7 +47808,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *281 + - *282 - *75 - *17 - *46 @@ -47803,7 +47820,7 @@ paths: application/json: schema: type: array - items: &284 + items: &285 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -47956,7 +47973,7 @@ paths: - updated_at - project_url examples: - default: &749 + default: &750 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48086,7 +48103,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *281 + - *282 - *75 requestBody: required: true @@ -48133,7 +48150,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &750 + items: &751 type: object properties: name: @@ -48170,7 +48187,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &751 + iteration_configuration: &752 type: object description: The configuration for iteration fields. properties: @@ -48220,7 +48237,7 @@ paths: value: name: Due date data_type: date - single_select_field: &752 + single_select_field: &753 summary: Create a single select field value: name: Priority @@ -48247,7 +48264,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &753 + iteration_field: &754 summary: Create an iteration field value: name: Sprint @@ -48271,9 +48288,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *284 + schema: *285 examples: - text_field: &754 + text_field: &755 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -48282,7 +48299,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &755 + number_field: &756 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -48291,7 +48308,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &756 + date_field: &757 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -48300,7 +48317,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &757 + single_select_field: &758 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48334,7 +48351,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &758 + iteration_field: &759 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -48379,8 +48396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *281 - - &759 + - *282 + - &760 name: field_id description: The unique identifier of the field. in: path @@ -48393,9 +48410,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *285 examples: - default: &760 + default: &761 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48451,7 +48468,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *281 + - *282 - *75 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -48484,7 +48501,7 @@ paths: application/json: schema: type: array - items: &288 + items: &289 title: Projects v2 Item description: An item belonging to a project type: object @@ -48501,7 +48518,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *285 + content_type: *286 content: type: - object @@ -48551,7 +48568,7 @@ paths: - updated_at - archived_at examples: - default: &289 + default: &290 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -49249,7 +49266,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *75 - - *281 + - *282 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -49319,22 +49336,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *288 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *288 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *288 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *288 '304': *36 '403': *27 '401': *23 @@ -49354,9 +49371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *281 + - *282 - *75 - - &290 + - &291 name: item_id description: The unique identifier of the project item. in: path @@ -49382,9 +49399,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -49405,9 +49422,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *281 + - *282 - *75 - - *290 + - *291 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -49480,13 +49497,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *290 + number_field: *290 + date_field: *290 + single_select_field: *290 + iteration_field: *290 '401': *23 '403': *27 '404': *6 @@ -49506,9 +49523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *281 + - *282 - *75 - - *290 + - *291 responses: '204': description: Response @@ -49532,7 +49549,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *75 - - *281 + - *282 requestBody: required: true content: @@ -49571,6 +49588,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -49606,7 +49664,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &740 + schema: &741 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -49710,7 +49768,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &291 + value: &292 value: id: 1 number: 1 @@ -49756,10 +49814,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *291 + value: *292 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *292 '304': *36 '403': *27 '401': *23 @@ -49787,9 +49845,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *281 + - *282 - *75 - - &761 + - &762 name: view_number description: The number that identifies the project view. in: path @@ -49821,9 +49879,9 @@ paths: application/json: schema: type: array - items: *288 + items: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -49856,7 +49914,7 @@ paths: application/json: schema: type: array - items: &292 + items: &293 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -49934,7 +49992,7 @@ paths: - property_name - value_type examples: - default: &293 + default: &294 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -49994,7 +50052,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *292 + items: *293 minItems: 1 maxItems: 100 required: @@ -50024,9 +50082,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *293 + default: *294 '403': *27 '404': *6 x-github: @@ -50048,7 +50106,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *75 - - &294 + - &295 name: custom_property_name description: The custom property name in: path @@ -50060,9 +50118,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: &295 + default: &296 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -50097,7 +50155,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *75 - - *294 + - *295 requestBody: required: true content: @@ -50177,9 +50235,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: *295 + default: *296 '403': *27 '404': *6 x-github: @@ -50203,7 +50261,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *75 - - *294 + - *295 responses: '204': *58 '403': *27 @@ -50267,7 +50325,7 @@ paths: - octocat/Hello-World properties: type: array - items: &296 + items: &297 title: Custom Property Value description: Custom property name and associated value type: object @@ -50357,7 +50415,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *296 + items: *297 required: - repository_names - properties @@ -50549,7 +50607,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -50752,7 +50810,7 @@ paths: description: Response content: application/json: - schema: &343 + schema: &344 title: Full Repository description: Full Repository type: object @@ -51230,7 +51288,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &481 + code_of_conduct: &482 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -51260,7 +51318,7 @@ paths: - key - name - html_url - security_and_analysis: *297 + security_and_analysis: *298 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -51344,7 +51402,7 @@ paths: - network_count - subscribers_count examples: - default: &345 + default: &346 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -51865,7 +51923,7 @@ paths: - *75 - *17 - *19 - - &623 + - &624 name: targets description: | A comma-separated list of rule targets to filter by. @@ -51884,7 +51942,7 @@ paths: application/json: schema: type: array - items: &324 + items: &325 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -51919,7 +51977,7 @@ paths: source: type: string description: The name of the source - enforcement: &300 + enforcement: &301 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -51932,7 +51990,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &301 + items: &302 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -52004,7 +52062,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &298 + - &299 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -52028,7 +52086,7 @@ paths: match. items: type: string - - &302 + - &303 title: Organization ruleset conditions type: object description: |- @@ -52042,7 +52100,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *298 + - *299 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -52076,7 +52134,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *298 + - *299 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -52098,7 +52156,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *298 + - *299 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -52111,7 +52169,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &299 + items: &300 title: Repository ruleset property targeting definition type: object @@ -52144,7 +52202,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *299 + items: *300 required: - repository_property type: @@ -52152,12 +52210,12 @@ paths: - object rules: type: array - items: &624 + items: &625 title: Repository Rule type: object description: A repository rule. oneOf: - - &303 + - &304 title: creation description: Only allow users with bypass permission to create matching refs. @@ -52169,7 +52227,7 @@ paths: type: string enum: - creation - - &304 + - &305 title: update description: Only allow users with bypass permission to update matching refs. @@ -52190,7 +52248,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &305 + - &306 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -52202,7 +52260,7 @@ paths: type: string enum: - deletion - - &306 + - &307 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -52214,7 +52272,7 @@ paths: type: string enum: - required_linear_history - - &621 + - &622 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -52292,7 +52350,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &307 + - &308 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -52316,7 +52374,7 @@ paths: type: string required: - required_deployment_environments - - &308 + - &309 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -52328,7 +52386,7 @@ paths: type: string enum: - required_signatures - - &309 + - &310 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -52471,7 +52529,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &310 + - &311 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -52519,7 +52577,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &311 + - &312 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -52531,7 +52589,7 @@ paths: type: string enum: - non_fast_forward - - &312 + - &313 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -52568,118 +52626,118 @@ paths: required: - operator - pattern - - &313 - title: commit_author_email_pattern - description: Parameters to be used for the commit_author_email_pattern - rule - type: object - required: - - type - properties: - type: - type: string - enum: - - commit_author_email_pattern - parameters: - type: object - properties: - name: - type: string - description: How this rule appears when configuring - it. - negate: - type: boolean - description: If true, the rule will fail if the - pattern matches. - operator: - type: string - description: The operator to use for matching. - enum: - - starts_with - - ends_with - - contains - - regex - pattern: - type: string - description: The pattern to match with. - required: - - operator - - pattern - - &314 - title: committer_email_pattern - description: Parameters to be used for the committer_email_pattern - rule - type: object - required: - - type - properties: - type: - type: string - enum: - - committer_email_pattern - parameters: - type: object - properties: - name: - type: string - description: How this rule appears when configuring - it. - negate: - type: boolean - description: If true, the rule will fail if the - pattern matches. - operator: - type: string - description: The operator to use for matching. - enum: - - starts_with - - ends_with - - contains - - regex - pattern: - type: string - description: The pattern to match with. - required: - - operator - - pattern - - &315 - title: branch_name_pattern - description: Parameters to be used for the branch_name_pattern - rule - type: object - required: - - type - properties: - type: - type: string - enum: - - branch_name_pattern - parameters: - type: object - properties: - name: - type: string - description: How this rule appears when configuring - it. - negate: - type: boolean - description: If true, the rule will fail if the - pattern matches. - operator: - type: string - description: The operator to use for matching. - enum: - - starts_with - - ends_with - - contains - - regex - pattern: - type: string - description: The pattern to match with. - required: - - operator - - pattern - - &316 + - &314 + title: commit_author_email_pattern + description: Parameters to be used for the commit_author_email_pattern + rule + type: object + required: + - type + properties: + type: + type: string + enum: + - commit_author_email_pattern + parameters: + type: object + properties: + name: + type: string + description: How this rule appears when configuring + it. + negate: + type: boolean + description: If true, the rule will fail if the + pattern matches. + operator: + type: string + description: The operator to use for matching. + enum: + - starts_with + - ends_with + - contains + - regex + pattern: + type: string + description: The pattern to match with. + required: + - operator + - pattern + - &315 + title: committer_email_pattern + description: Parameters to be used for the committer_email_pattern + rule + type: object + required: + - type + properties: + type: + type: string + enum: + - committer_email_pattern + parameters: + type: object + properties: + name: + type: string + description: How this rule appears when configuring + it. + negate: + type: boolean + description: If true, the rule will fail if the + pattern matches. + operator: + type: string + description: The operator to use for matching. + enum: + - starts_with + - ends_with + - contains + - regex + pattern: + type: string + description: The pattern to match with. + required: + - operator + - pattern + - &316 + title: branch_name_pattern + description: Parameters to be used for the branch_name_pattern + rule + type: object + required: + - type + properties: + type: + type: string + enum: + - branch_name_pattern + parameters: + type: object + properties: + name: + type: string + description: How this rule appears when configuring + it. + negate: + type: boolean + description: If true, the rule will fail if the + pattern matches. + operator: + type: string + description: The operator to use for matching. + enum: + - starts_with + - ends_with + - contains + - regex + pattern: + type: string + description: The pattern to match with. + required: + - operator + - pattern + - &317 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -52716,7 +52774,7 @@ paths: required: - operator - pattern - - &321 + - &322 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -52766,7 +52824,7 @@ paths: - repository_id required: - workflows - - &322 + - &323 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -52827,7 +52885,7 @@ paths: - tool required: - code_scanning_tools - - &323 + - &324 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -52853,7 +52911,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &622 + - &623 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -52865,7 +52923,7 @@ paths: type: string enum: - license_compliance_scanning - - &317 + - &318 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -52890,7 +52948,7 @@ paths: type: string required: - restricted_file_paths - - &318 + - &319 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -52914,7 +52972,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &319 + - &320 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -52937,7 +52995,7 @@ paths: type: string required: - restricted_file_extensions - - &320 + - &321 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -53035,21 +53093,20 @@ paths: - push - repository default: branch - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *302 + conditions: *303 rules: type: array description: An array of rules within the ruleset. - items: &326 + items: &327 title: Repository Rule type: object description: A repository rule. oneOf: - - *303 - *304 - *305 - *306 @@ -53070,6 +53127,7 @@ paths: - *321 - *322 - *323 + - *324 required: - name - enforcement @@ -53107,9 +53165,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: &325 + default: &326 value: id: 21 name: super cool ruleset @@ -53165,7 +53223,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *75 - - &625 + - &626 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 @@ -53180,7 +53238,7 @@ paths: in: query schema: type: string - - &626 + - &627 name: time_period description: |- The time period to filter by. @@ -53196,14 +53254,14 @@ paths: - week - month default: day - - &627 + - &628 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 - - &628 + - &629 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -53216,7 +53274,7 @@ paths: - bypass - all default: all - - &629 + - &630 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -53239,7 +53297,7 @@ paths: description: Response content: application/json: - schema: &630 + schema: &631 title: Rule Suites description: Response type: array @@ -53295,7 +53353,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &631 + default: &632 value: - id: 21 actor_id: 12 @@ -53339,7 +53397,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *75 - - &632 + - &633 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -53355,7 +53413,7 @@ paths: description: Response content: application/json: - schema: &633 + schema: &634 title: Rule Suite description: Response type: object @@ -53462,7 +53520,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &634 + default: &635 value: id: 21 actor_id: 12 @@ -53535,9 +53593,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *325 + default: *326 '404': *6 '500': *54 put: @@ -53581,16 +53639,16 @@ paths: - tag - push - repository - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *302 + conditions: *303 rules: description: An array of rules within the ruleset. type: array - items: *326 + items: *327 examples: default: value: @@ -53625,9 +53683,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *325 + default: *326 '404': *6 '422': *15 '500': *54 @@ -53685,7 +53743,7 @@ paths: application/json: schema: type: array - items: &327 + items: &328 title: Ruleset version type: object description: The historical version of a ruleset @@ -53709,7 +53767,7 @@ paths: type: string format: date-time examples: - default: &636 + default: &637 value: - version_id: 3 actor: @@ -53762,9 +53820,9 @@ paths: description: Response content: application/json: - schema: &637 + schema: &638 allOf: - - *327 + - *328 - type: object required: - state @@ -53834,7 +53892,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *75 - - &638 + - &639 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -53845,7 +53903,7 @@ paths: enum: - open - resolved - - &639 + - &640 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -53855,7 +53913,7 @@ paths: required: false schema: type: string - - &640 + - &641 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -53866,7 +53924,7 @@ paths: required: false schema: type: string - - &641 + - &642 name: exclude_providers in: query description: |- @@ -53877,7 +53935,7 @@ paths: required: false schema: type: string - - &642 + - &643 name: providers in: query description: |- @@ -53888,7 +53946,7 @@ paths: required: false schema: type: string - - &643 + - &644 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -53897,7 +53955,7 @@ paths: required: false schema: type: string - - &644 + - &645 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -53916,7 +53974,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &645 + - &646 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. @@ -53931,7 +53989,7 @@ paths: - *61 - *19 - *17 - - &646 + - &647 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 @@ -53941,7 +53999,7 @@ paths: required: false schema: type: string - - &647 + - &648 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 @@ -53951,7 +54009,7 @@ paths: required: false schema: type: string - - &648 + - &649 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -53960,7 +54018,7 @@ paths: required: false schema: type: string - - &649 + - &650 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -53969,7 +54027,7 @@ paths: schema: type: boolean default: false - - &650 + - &651 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -53978,7 +54036,7 @@ paths: schema: type: boolean default: false - - &651 + - &652 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -53987,7 +54045,7 @@ paths: schema: type: boolean default: false - - &652 + - &653 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -53998,7 +54056,7 @@ paths: required: false schema: type: boolean - - &653 + - &654 name: included_metadata in: query description: |- @@ -54009,7 +54067,7 @@ paths: required: false schema: type: string - - &654 + - &655 name: owner_email_hash in: query description: |- @@ -54044,14 +54102,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &655 + state: &656 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: &656 + resolution: &657 type: - string - 'null' @@ -54170,14 +54228,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &657 + - &658 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &659 + - &660 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -54241,7 +54299,7 @@ paths: - blob_url - commit_sha - commit_url - - &660 + - &661 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. @@ -54302,7 +54360,7 @@ paths: - page_url - commit_sha - commit_url - - &661 + - &662 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -54324,7 +54382,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &662 + - &663 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -54346,7 +54404,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &663 + - &664 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -54368,7 +54426,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &664 + - &665 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -54383,7 +54441,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &665 + - &666 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -54398,7 +54456,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &666 + - &667 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -54413,7 +54471,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &667 + - &668 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. @@ -54435,7 +54493,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &668 + - &669 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. @@ -54457,7 +54515,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &669 + - &670 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. @@ -54479,7 +54537,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &670 + - &671 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. @@ -54501,7 +54559,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &671 + - &672 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 @@ -54751,7 +54809,7 @@ paths: subcategory: custom-patterns parameters: - *75 - - &672 + - &673 name: state description: Filter custom patterns by state. When absent, returns patterns in all states. @@ -54762,7 +54820,7 @@ paths: enum: - published - unpublished - - &673 + - &674 name: push_protection description: Filter custom patterns by whether push protection is enabled. When absent, returns patterns regardless of push protection status. @@ -54773,7 +54831,7 @@ paths: enum: - enabled - disabled - - &674 + - &675 name: sort description: The property to sort the results by. in: query @@ -54795,7 +54853,7 @@ paths: application/json: schema: type: array - items: &328 + items: &329 title: Secret Scanning Custom Pattern description: A custom pattern for secret scanning. type: object @@ -54847,7 +54905,7 @@ paths: description: List of regexes that the secret must not match. items: type: string - custom_pattern_version: &329 + custom_pattern_version: &330 type: - string - 'null' @@ -54872,7 +54930,7 @@ paths: - state - push_protection_enabled examples: - default: &675 + default: &676 value: - id: 1 name: Example Custom Pattern @@ -54935,7 +54993,7 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: &676 + items: &677 title: Secret Scanning Custom Pattern To Create description: A custom pattern to create in a bulk operation. type: object @@ -54972,7 +55030,7 @@ paths: items: type: string examples: - default: &677 + default: &678 value: patterns: - name: Example Custom Pattern @@ -54996,9 +55054,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *328 + items: *329 examples: - default: &678 + default: &679 value: created_patterns: - id: 1 @@ -55050,7 +55108,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: &679 + items: &680 title: Secret Scanning Custom Pattern Validation Error description: A validation error for a custom pattern in a batch operation. @@ -55104,7 +55162,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: &680 + items: &681 title: Secret Scanning Custom Pattern To Delete description: A custom pattern to delete in a bulk operation. type: object @@ -55114,7 +55172,7 @@ paths: pattern_id: type: integer description: The ID of the custom pattern to delete. - custom_pattern_version: *329 + custom_pattern_version: *330 post_delete_action: type: string description: |- @@ -55127,7 +55185,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: &681 + default: &682 value: patterns: - pattern_id: 2 @@ -55138,7 +55196,7 @@ paths: '400': *14 '403': *27 '404': *6 - '412': &330 + '412': &331 description: Precondition Failed content: application/json: @@ -55173,7 +55231,7 @@ paths: required: true content: application/json: - schema: &682 + schema: &683 title: Secret Scanning Custom Pattern To Update description: Fields to update on a custom pattern. At least one updatable field (`pattern`, `start_delimiter`, `end_delimiter`, `must_match`, @@ -55212,9 +55270,9 @@ paths: description: Updated list of regexes that the secret must not match. items: type: string - custom_pattern_version: *329 + custom_pattern_version: *330 examples: - default: &683 + default: &684 value: pattern: updated_secret_[0-9A-Z]{16} start_delimiter: "[^0-9A-Za-z]" @@ -55229,9 +55287,9 @@ paths: description: Pattern updated successfully. content: application/json: - schema: *328 + schema: *329 examples: - default: &684 + default: &685 value: id: 1 name: Example Custom Pattern @@ -55251,7 +55309,7 @@ paths: '400': *14 '403': *27 '404': *6 - '412': *330 + '412': *331 '422': *15 "/orgs/{org}/secret-scanning/pattern-configurations": get: @@ -55284,11 +55342,11 @@ paths: related to push protection. type: object properties: - pattern_config_version: *329 + pattern_config_version: *330 provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &331 + items: &332 type: object properties: token_type: @@ -55357,7 +55415,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *331 + items: *332 examples: default: value: @@ -55414,7 +55472,7 @@ paths: schema: type: object properties: - pattern_config_version: *329 + pattern_config_version: *330 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -55440,7 +55498,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *329 + custom_pattern_version: *330 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -55538,7 +55596,7 @@ paths: application/json: schema: type: array - items: &688 + items: &689 description: A repository security advisory. type: object properties: @@ -55782,7 +55840,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *333 credits_detailed: type: - array @@ -55793,7 +55851,7 @@ paths: type: object properties: user: *4 - type: *332 + type: *333 state: type: string description: The state of the user's acceptance of the @@ -55857,7 +55915,7 @@ paths: - private_fork additionalProperties: false examples: - default: &689 + default: &690 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -56244,7 +56302,7 @@ paths: application/json: schema: type: array - items: *261 + items: *262 examples: default: value: @@ -56599,7 +56657,7 @@ paths: type: integer network_configurations: type: array - items: &333 + items: &334 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -56752,9 +56810,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: &334 + default: &335 value: id: 123456789ABCDEF name: My network configuration @@ -56783,7 +56841,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - &335 + - &336 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -56795,9 +56853,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 headers: Link: *67 x-github: @@ -56819,7 +56877,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - *335 + - *336 requestBody: required: true content: @@ -56872,9 +56930,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56894,7 +56952,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *75 - - *335 + - *336 responses: '204': description: Response @@ -57018,7 +57076,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 headers: Link: *67 '403': *27 @@ -57116,7 +57174,7 @@ paths: description: Response content: application/json: - schema: &336 + schema: &337 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -57190,7 +57248,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *262 members_count: type: integer examples: @@ -57515,7 +57573,7 @@ paths: - repos_count - organization examples: - default: &337 + default: &338 value: id: 1 node_id: MDQ6VGVhbTE= @@ -57592,9 +57650,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 x-github: githubCloudOnly: false @@ -57685,16 +57743,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '201': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 '422': *15 '403': *27 @@ -57724,7 +57782,7 @@ paths: responses: '204': description: Response - '422': &338 + '422': &339 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -57758,12 +57816,12 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: - default: *241 + default: *242 headers: Link: *67 - '422': *338 + '422': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57807,7 +57865,7 @@ paths: application/json: schema: type: array - items: &705 + items: &706 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -57950,7 +58008,7 @@ paths: - type - url examples: - default: &706 + default: &707 value: - login: octocat id: 1 @@ -58009,7 +58067,7 @@ paths: description: Response content: application/json: - schema: &339 + schema: &340 title: Team Membership description: Team Membership type: object @@ -58037,7 +58095,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &707 + response-if-user-is-a-team-maintainer: &708 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -58100,9 +58158,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-users-membership-with-team-is-now-pending: &708 + response-if-users-membership-with-team-is-now-pending: &709 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -58180,7 +58238,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -58211,14 +58269,14 @@ paths: parameters: - *75 - *77 - - *340 - *341 + - *342 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &709 + schema: &710 title: Team Repository description: A team's access to a repository. type: object @@ -58861,8 +58919,8 @@ paths: parameters: - *75 - *77 - - *340 - *341 + - *342 requestBody: required: false content: @@ -58909,8 +58967,8 @@ paths: parameters: - *75 - *77 - - *340 - *341 + - *342 responses: '204': description: Response @@ -58947,7 +59005,7 @@ paths: type: array items: *201 examples: - response-if-child-teams-exist: &710 + response-if-child-teams-exist: &711 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -59100,7 +59158,7 @@ paths: resources: type: object properties: - core: &342 + core: &343 title: Rate Limit type: object properties: @@ -59117,21 +59175,21 @@ paths: - remaining - reset - used - graphql: *342 - search: *342 - code_search: *342 - source_import: *342 - integration_manifest: *342 - actions_runner_registration: *342 - scim: *342 - dependency_snapshots: *342 - dependency_sbom: *342 - code_scanning_autofix: *342 - copilot_usage_records: *342 + graphql: *343 + search: *343 + code_search: *343 + source_import: *343 + integration_manifest: *343 + actions_runner_registration: *343 + scim: *343 + dependency_snapshots: *343 + dependency_sbom: *343 + code_scanning_autofix: *343 + copilot_usage_records: *343 required: - core - search - rate: *342 + rate: *343 required: - rate - resources @@ -59231,14 +59289,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *343 + schema: *344 examples: default-response: summary: Default response @@ -59743,7 +59801,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *344 + '301': *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59761,8 +59819,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -60073,10 +60131,10 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 - '307': &346 + default: *346 + '307': &347 description: Temporary Redirect content: application/json: @@ -60105,8 +60163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -60128,7 +60186,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *346 + '307': *347 '404': *6 '409': *53 x-github: @@ -60152,11 +60210,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 - - &378 + - &379 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -60179,7 +60237,7 @@ paths: type: integer artifacts: type: array - items: &347 + items: &348 title: Artifact description: An artifact type: object @@ -60274,7 +60332,7 @@ paths: - expires_at - updated_at examples: - default: &379 + default: &380 value: total_count: 2 artifacts: @@ -60335,9 +60393,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *340 - *341 - - &348 + - *342 + - &349 name: artifact_id description: The unique identifier of the artifact. in: path @@ -60349,7 +60407,7 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: default: value: @@ -60387,9 +60445,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *340 - *341 - - *348 + - *342 + - *349 responses: '204': description: Response @@ -60413,9 +60471,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *340 - *341 - - *348 + - *342 + - *349 - name: archive_format in: path required: true @@ -60425,7 +60483,7 @@ paths: '302': description: Response headers: - Location: &498 + Location: &499 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 @@ -60450,14 +60508,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &349 + schema: &350 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -60491,13 +60549,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *349 + schema: *350 examples: selected_actions: *41 responses: @@ -60526,14 +60584,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &350 + schema: &351 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -60567,13 +60625,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *350 + schema: *351 examples: selected_actions: *43 responses: @@ -60604,14 +60662,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *351 + schema: *352 examples: default: value: @@ -60637,11 +60695,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 - - &352 + - &353 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 @@ -60675,7 +60733,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &354 title: Repository actions caches description: Repository actions caches type: object @@ -60725,7 +60783,7 @@ paths: - total_count - actions_caches examples: - default: &354 + default: &355 value: total_count: 1 actions_caches: @@ -60757,23 +60815,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: - - *340 - *341 + - *342 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *352 + - *353 responses: '200': description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60793,8 +60851,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: - - *340 - *341 + - *342 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -60823,8 +60881,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *47 responses: @@ -60907,8 +60965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *340 - *341 + - *342 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -61064,9 +61122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *340 - *341 - - &355 + - *342 + - &356 name: job_id description: The unique identifier of the job. in: path @@ -61078,7 +61136,7 @@ paths: description: Response content: application/json: - schema: &382 + schema: &383 title: Job description: Information of a job execution in a workflow run type: object @@ -61425,9 +61483,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *340 - *341 - - *355 + - *342 + - *356 responses: '302': description: Response @@ -61455,9 +61513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *340 - *341 - - *355 + - *342 + - *356 requestBody: required: false content: @@ -61508,8 +61566,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: - - *340 - *341 + - *342 responses: '200': description: Status response @@ -61568,8 +61626,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -61637,8 +61695,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -61656,7 +61714,7 @@ paths: type: integer secrets: type: array - items: &384 + items: &385 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -61677,7 +61735,7 @@ paths: - created_at - updated_at examples: - default: &385 + default: &386 value: total_count: 2 secrets: @@ -61710,8 +61768,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -61729,7 +61787,7 @@ paths: type: integer variables: type: array - items: &386 + items: &387 title: Actions Variable type: object properties: @@ -61763,7 +61821,7 @@ paths: - created_at - updated_at examples: - default: &387 + default: &388 value: total_count: 2 variables: @@ -61796,8 +61854,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -61806,11 +61864,11 @@ paths: schema: type: object properties: - enabled: &357 + enabled: &358 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *141 - selected_actions_url: *356 + selected_actions_url: *357 sha_pinning_required: *142 required: - enabled @@ -61839,8 +61897,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -61851,7 +61909,7 @@ paths: schema: type: object properties: - enabled: *357 + enabled: *358 allowed_actions: *141 sha_pinning_required: *142 required: @@ -61883,14 +61941,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: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &358 + schema: &359 type: object properties: access_level: @@ -61907,7 +61965,7 @@ paths: required: - access_level examples: - default: &359 + default: &360 value: access_level: organization x-github: @@ -61931,15 +61989,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: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *358 + schema: *359 examples: - default: *359 + default: *360 responses: '204': description: Response @@ -61963,14 +62021,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *360 + schema: *361 examples: default: value: @@ -61994,8 +62052,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Empty response for successful settings update @@ -62005,7 +62063,7 @@ paths: required: true content: application/json: - schema: *361 + schema: *362 examples: default: summary: Set retention days @@ -62029,8 +62087,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -62038,7 +62096,7 @@ paths: application/json: schema: *143 examples: - default: *362 + default: *363 '404': *6 x-github: enabledForGitHubApps: true @@ -62057,8 +62115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -62092,14 +62150,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: default: *144 '403': *27 @@ -62121,13 +62179,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *364 + schema: *365 examples: default: *144 responses: @@ -62153,8 +62211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -62181,8 +62239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -62214,14 +62272,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *365 + schema: *366 examples: default: *151 x-github: @@ -62244,8 +62302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Success response @@ -62256,7 +62314,7 @@ paths: required: true content: application/json: - schema: *366 + schema: *367 examples: default: *151 x-github: @@ -62285,8 +62343,8 @@ paths: in: query schema: type: string - - *340 - *341 + - *342 - *17 - *19 responses: @@ -62330,8 +62388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -62339,9 +62397,9 @@ paths: application/json: schema: type: array - items: *367 + items: *368 examples: - default: *368 + default: *369 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62363,8 +62421,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -62407,7 +62465,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *369 + '201': *370 '404': *6 '422': *7 '409': *53 @@ -62438,8 +62496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -62447,7 +62505,7 @@ paths: application/json: schema: *160 examples: - default: *370 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62475,8 +62533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -62484,7 +62542,7 @@ paths: application/json: schema: *160 examples: - default: *371 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62506,8 +62564,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: - - *340 - *341 + - *342 - *157 responses: '200': @@ -62516,7 +62574,7 @@ paths: application/json: schema: *158 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62537,8 +62595,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: - - *340 - *341 + - *342 - *157 responses: '204': @@ -62565,8 +62623,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: - - *340 - *341 + - *342 - *157 responses: '200': *162 @@ -62591,8 +62649,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: - - *340 - *341 + - *342 - *157 requestBody: required: true @@ -62641,8 +62699,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: - - *340 - *341 + - *342 - *157 requestBody: required: true @@ -62692,11 +62750,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: - - *340 - *341 + - *342 - *157 responses: - '200': *373 + '200': *374 '404': *6 x-github: githubCloudOnly: false @@ -62723,10 +62781,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: - - *340 - *341 + - *342 - *157 - - *374 + - *375 responses: '200': *162 '404': *6 @@ -62754,9 +62812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *340 - *341 - - &390 + - *342 + - &391 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. @@ -62764,7 +62822,7 @@ paths: required: false schema: type: string - - &391 + - &392 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -62772,7 +62830,7 @@ paths: required: false schema: type: string - - &392 + - &393 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -62781,7 +62839,7 @@ paths: required: false schema: type: string - - &393 + - &394 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 @@ -62808,7 +62866,7 @@ paths: - pending - *17 - *19 - - &394 + - &395 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)." @@ -62817,7 +62875,7 @@ paths: schema: type: string format: date-time - - &375 + - &376 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -62826,13 +62884,13 @@ paths: schema: type: boolean default: false - - &395 + - &396 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &396 + - &397 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -62855,7 +62913,7 @@ paths: type: integer workflow_runs: type: array - items: &376 + items: &377 title: Workflow Run description: An invocation of a workflow type: object @@ -63033,7 +63091,7 @@ paths: head_commit: anyOf: - type: 'null' - - &420 + - &421 title: Simple Commit description: A commit. type: object @@ -63148,7 +63206,7 @@ paths: - workflow_url - pull_requests examples: - default: &397 + default: &398 value: total_count: 1 workflow_runs: @@ -63384,24 +63442,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *340 - *341 - - &377 + - *342 + - &378 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *376 + schema: *377 examples: - default: &380 + default: &381 value: id: 30433642 name: Build @@ -63642,9 +63700,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '204': description: Response @@ -63667,9 +63725,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '200': description: Response @@ -63797,9 +63855,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: - - *340 - *341 - - *377 + - *342 + - *378 responses: '201': description: Response @@ -63832,12 +63890,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *340 - *341 - - *377 + - *342 + - *378 - *17 - *19 - - *378 + - *379 - *61 responses: '200': @@ -63854,9 +63912,9 @@ paths: type: integer artifacts: type: array - items: *347 + items: *348 examples: - default: *379 + default: *380 headers: Link: *67 x-github: @@ -63880,25 +63938,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *340 - *341 - - *377 - - &381 + - *342 + - *378 + - &382 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *376 + schema: *377 examples: - default: *380 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63921,10 +63979,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *340 - *341 - - *377 - - *381 + - *342 + - *378 + - *382 - *17 - *19 responses: @@ -63942,9 +64000,9 @@ paths: type: integer jobs: type: array - items: *382 + items: *383 examples: - default: &383 + default: &384 value: total_count: 1 jobs: @@ -64057,10 +64115,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *340 - *341 - - *377 - - *381 + - *342 + - *378 + - *382 responses: '302': description: Response @@ -64088,9 +64146,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '202': description: Response @@ -64136,9 +64194,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 - *17 - *46 - *47 @@ -64315,9 +64373,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: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: true content: @@ -64384,9 +64442,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '202': description: Response @@ -64419,9 +64477,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 - 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 @@ -64451,9 +64509,9 @@ paths: type: integer jobs: type: array - items: *382 + items: *383 examples: - default: *383 + default: *384 headers: Link: *67 x-github: @@ -64478,9 +64536,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '302': description: Response @@ -64507,9 +64565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '204': description: Response @@ -64536,9 +64594,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '200': description: Response @@ -64607,7 +64665,7 @@ paths: items: type: object properties: - type: &505 + type: &506 type: string description: The type of reviewer. enum: @@ -64693,9 +64751,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: true content: @@ -64745,7 +64803,7 @@ paths: application/json: schema: type: array - items: &500 + items: &501 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -64857,7 +64915,7 @@ paths: - created_at - updated_at examples: - default: &501 + default: &502 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -64913,9 +64971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: false content: @@ -64960,9 +65018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: false content: @@ -65016,9 +65074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '200': description: Response @@ -65155,8 +65213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -65174,9 +65232,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -65201,8 +65259,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -65232,17 +65290,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *384 + schema: *385 examples: - default: &398 + default: &399 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -65268,8 +65326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -65327,8 +65385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -65354,8 +65412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -65373,9 +65431,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -65398,8 +65456,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -65451,17 +65509,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: &399 + default: &400 value: name: USERNAME value: octocat @@ -65487,8 +65545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 requestBody: required: true @@ -65531,8 +65589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '204': @@ -65558,8 +65616,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -65577,7 +65635,7 @@ paths: type: integer workflows: type: array - items: &388 + items: &389 title: Workflow description: A GitHub Actions workflow type: object @@ -65695,9 +65753,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *340 - *341 - - &389 + - *342 + - &390 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -65712,7 +65770,7 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: default: value: @@ -65745,9 +65803,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '204': description: Response @@ -65772,9 +65830,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -65861,9 +65919,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '204': description: Response @@ -65890,19 +65948,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *340 - *341 - - *389 + - *342 - *390 - *391 - *392 - *393 + - *394 - *17 - *19 - - *394 - - *375 - *395 + - *376 - *396 + - *397 responses: '200': description: Response @@ -65918,9 +65976,9 @@ paths: type: integer workflow_runs: type: array - items: *376 + items: *377 examples: - default: *397 + default: *398 headers: Link: *67 x-github: @@ -65952,9 +66010,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '200': description: Response @@ -66015,8 +66073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *340 - *341 + - *342 - *61 - *17 - *46 @@ -66189,8 +66247,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -66208,9 +66266,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -66234,8 +66292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -66253,9 +66311,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -66280,8 +66338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -66299,9 +66357,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -66326,8 +66384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -66357,17 +66415,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *384 + schema: *385 examples: - default: *398 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66389,8 +66447,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -66448,8 +66506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -66475,8 +66533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -66494,9 +66552,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -66519,8 +66577,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -66572,17 +66630,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *399 + default: *400 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66603,8 +66661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 requestBody: required: true @@ -66647,8 +66705,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '204': @@ -66670,8 +66728,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -66708,8 +66766,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *340 - *341 + - *342 - name: assignee in: path required: true @@ -66745,8 +66803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -66856,8 +66914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *340 - *341 + - *342 - *17 - *46 - *47 @@ -66914,7 +66972,7 @@ paths: initiator: type: string examples: - default: *400 + default: *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66934,8 +66992,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -66943,7 +67001,7 @@ paths: application/json: schema: type: array - items: &401 + items: &402 title: Autolink reference description: An autolink reference. type: object @@ -67002,8 +67060,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -67042,9 +67100,9 @@ paths: description: response content: application/json: - schema: *401 + schema: *402 examples: - default: &402 + default: &403 value: id: 1 key_prefix: TICKET- @@ -67075,9 +67133,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *340 - *341 - - &403 + - *342 + - &404 name: autolink_id description: The unique identifier of the autolink. in: path @@ -67089,9 +67147,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *402 + default: *403 '404': *6 x-github: githubCloudOnly: false @@ -67111,9 +67169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *340 - *341 - - *403 + - *342 + - *404 responses: '204': description: Response @@ -67137,8 +67195,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: - - *340 - *341 + - *342 responses: '200': description: Response if Dependabot is enabled @@ -67188,8 +67246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -67210,8 +67268,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -67231,8 +67289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *340 - *341 + - *342 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -67270,7 +67328,7 @@ paths: - url protected: type: boolean - protection: &405 + protection: &406 title: Branch Protection description: Branch Protection type: object @@ -67313,7 +67371,7 @@ paths: required: - contexts - checks - enforce_admins: &408 + enforce_admins: &409 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -67330,7 +67388,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &410 + required_pull_request_reviews: &411 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -67414,7 +67472,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &407 + restrictions: &408 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -67707,9 +67765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *340 - *341 - - &406 + - *342 + - &407 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). @@ -67723,14 +67781,14 @@ paths: description: Response content: application/json: - schema: &416 + schema: &417 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &473 + commit: &474 title: Commit description: Commit type: object @@ -67769,7 +67827,7 @@ paths: author: anyOf: - type: 'null' - - &404 + - &405 title: Git User description: Metaproperties for Git author/committer information. @@ -67791,7 +67849,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *405 message: type: string examples: @@ -67815,7 +67873,7 @@ paths: required: - sha - url - verification: &523 + verification: &524 title: Verification type: object properties: @@ -67895,7 +67953,7 @@ paths: type: integer files: type: array - items: &483 + items: &484 title: Diff Entry description: Diff Entry type: object @@ -67991,7 +68049,7 @@ paths: - self protected: type: boolean - protection: *405 + protection: *406 protection_url: type: string format: uri @@ -68100,7 +68158,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *344 + '301': *345 '404': *6 x-github: githubCloudOnly: false @@ -68122,15 +68180,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -68324,9 +68382,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -68586,7 +68644,7 @@ paths: url: type: string format: uri - required_status_checks: &413 + required_status_checks: &414 title: Status Check Policy description: Status Check Policy type: object @@ -68745,7 +68803,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *407 + restrictions: *408 required_conversation_resolution: type: object properties: @@ -68857,9 +68915,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -68884,17 +68942,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: &409 + default: &410 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -68916,17 +68974,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: *409 + default: *410 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68945,9 +69003,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -68972,17 +69030,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: &411 + default: &412 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -69078,9 +69136,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -69178,9 +69236,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *411 + default: *412 '422': *15 x-github: githubCloudOnly: false @@ -69201,9 +69259,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -69230,17 +69288,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: &412 + default: &413 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -69263,17 +69321,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: *412 + default: *413 '404': *6 x-github: githubCloudOnly: false @@ -69293,9 +69351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -69320,17 +69378,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *413 + schema: *414 examples: - default: &414 + default: &415 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -69356,9 +69414,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -69410,9 +69468,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: - default: *414 + default: *415 '404': *6 '422': *15 x-github: @@ -69434,9 +69492,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -69460,9 +69518,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -69496,9 +69554,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -69565,9 +69623,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -69631,9 +69689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: content: application/json: @@ -69699,15 +69757,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *407 + schema: *408 examples: default: value: @@ -69798,9 +69856,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -69823,9 +69881,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -69835,7 +69893,7 @@ paths: type: array items: *5 examples: - default: &415 + default: &416 value: - id: 1 slug: octoapp @@ -69892,9 +69950,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -69928,7 +69986,7 @@ paths: type: array items: *5 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -69949,9 +70007,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -69985,7 +70043,7 @@ paths: type: array items: *5 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -70006,9 +70064,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -70042,7 +70100,7 @@ paths: type: array items: *5 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -70064,9 +70122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -70076,7 +70134,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '404': *6 x-github: githubCloudOnly: false @@ -70096,9 +70154,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -70136,7 +70194,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '422': *15 x-github: githubCloudOnly: false @@ -70157,9 +70215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -70197,7 +70255,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '422': *15 x-github: githubCloudOnly: false @@ -70218,9 +70276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: content: application/json: @@ -70257,7 +70315,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '422': *15 x-github: githubCloudOnly: false @@ -70279,9 +70337,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -70315,9 +70373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -70375,9 +70433,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -70435,9 +70493,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -70497,9 +70555,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -70521,7 +70579,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -70637,8 +70695,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -70917,7 +70975,7 @@ paths: description: Response content: application/json: - schema: &417 + schema: &418 title: CheckRun description: A check performed on the code of a given code change type: object @@ -71053,7 +71111,7 @@ paths: check. type: array items: *86 - deployment: &773 + deployment: &774 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -71340,9 +71398,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *340 - *341 - - &418 + - *342 + - &419 name: check_run_id description: The unique identifier of the check run. in: path @@ -71354,9 +71412,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: &419 + default: &420 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -71456,9 +71514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *340 - *341 - - *418 + - *342 + - *419 requestBody: required: true content: @@ -71698,9 +71756,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *419 + default: *420 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71720,9 +71778,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *340 - *341 - - *418 + - *342 + - *419 - *17 - *19 responses: @@ -71832,9 +71890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *340 - *341 - - *418 + - *342 + - *419 responses: '201': description: Response @@ -71878,8 +71936,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -71901,7 +71959,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &421 + schema: &422 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -71999,7 +72057,7 @@ paths: - string - 'null' format: date-time - head_commit: *420 + head_commit: *421 latest_check_runs_count: type: integer check_runs_url: @@ -72027,7 +72085,7 @@ paths: - check_runs_url - pull_requests examples: - default: &422 + default: &423 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -72318,9 +72376,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72339,8 +72397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -72649,9 +72707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *340 - *341 - - &423 + - *342 + - &424 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -72663,9 +72721,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72688,17 +72746,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *340 - *341 - - *423 - - &478 + - *342 + - *424 + - &479 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &479 + - &480 name: status description: Returns check runs with the specified `status`. in: query @@ -72737,9 +72795,9 @@ paths: type: integer check_runs: type: array - items: *417 + items: *418 examples: - default: &480 + default: &481 value: total_count: 1 check_runs: @@ -72841,9 +72899,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *340 - *341 - - *423 + - *342 + - *424 responses: '201': description: Response @@ -72872,8 +72930,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#list-code-quality-findings-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *61 - *46 @@ -72895,7 +72953,7 @@ paths: application/json: schema: type: array - items: &424 + items: &425 description: Code quality finding type: object properties: @@ -73025,7 +73083,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': &425 + '403': &426 description: Response if the user is not authorized to access Code quality for this repository. content: @@ -73052,8 +73110,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-finding parameters: - - *340 - *341 + - *342 - name: finding_number in: path description: The number that identifies a finding. @@ -73065,7 +73123,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -73094,7 +73152,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': *425 + '403': *426 '404': *6 '503': *115 x-github: @@ -73116,8 +73174,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -73199,7 +73257,7 @@ paths: updated_at: '2023-01-01T00:00:00Z' schedule: weekly ai_findings_option: on_push - '403': *425 + '403': *426 '404': *6 '503': *115 x-github: @@ -73220,8 +73278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -73359,21 +73417,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *340 - *341 - - *426 + - *342 - *427 + - *428 - *19 - *17 - - &445 + - &446 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: *428 - - &446 + schema: *429 + - &447 name: pr description: The number of the pull request for the results you want to list. in: query @@ -73398,13 +73456,13 @@ paths: be returned. in: query required: false - schema: *429 + schema: *430 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *430 + schema: *431 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -73428,7 +73486,7 @@ paths: updated_at: *183 url: *184 html_url: *185 - instances_url: *431 + instances_url: *432 state: *190 fixed_at: *186 dismissed_by: @@ -73436,11 +73494,11 @@ paths: - type: 'null' - *4 dismissed_at: *187 - dismissed_reason: *432 - dismissed_comment: *433 - rule: *434 - tool: *435 - most_recent_instance: *436 + dismissed_reason: *433 + dismissed_comment: *434 + rule: *435 + tool: *436 + most_recent_instance: *437 dismissal_approved_by: anyOf: - type: 'null' @@ -73563,7 +73621,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *36 - '403': &438 + '403': &439 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -73590,9 +73648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *340 - *341 - - &439 + - *342 + - &440 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -73606,7 +73664,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &441 type: object properties: number: *181 @@ -73614,7 +73672,7 @@ paths: updated_at: *183 url: *184 html_url: *185 - instances_url: *431 + instances_url: *432 state: *190 fixed_at: *186 dismissed_by: @@ -73622,8 +73680,8 @@ paths: - type: 'null' - *4 dismissed_at: *187 - dismissed_reason: *432 - dismissed_comment: *433 + dismissed_reason: *433 + dismissed_comment: *434 rule: type: object properties: @@ -73685,8 +73743,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *435 - most_recent_instance: *436 + tool: *436 + most_recent_instance: *437 dismissal_approved_by: anyOf: - type: 'null' @@ -73697,7 +73755,7 @@ paths: linked_pull_requests: description: Pull requests linked to this alert. type: array - items: *437 + items: *438 required: - number - created_at @@ -73786,7 +73844,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *36 - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -73806,9 +73864,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 requestBody: required: true content: @@ -73823,8 +73881,8 @@ paths: enum: - open - dismissed - dismissed_reason: *432 - dismissed_comment: *433 + dismissed_reason: *433 + dismissed_comment: *434 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -73852,7 +73910,7 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: default: value: @@ -73928,7 +73986,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &444 + '403': &445 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -73955,15 +74013,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: - - *340 - *341 - - *439 + - *342 + - *440 responses: '200': description: Response content: application/json: - schema: &441 + schema: &442 type: object properties: status: @@ -73990,13 +74048,13 @@ paths: - description - started_at examples: - default: &442 + default: &443 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &443 + '400': &444 description: Bad Request content: application/json: @@ -74007,7 +74065,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': *438 + '403': *439 '404': *6 '500': *54 x-github: @@ -74032,29 +74090,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: - - *340 - *341 - - *439 + - *342 + - *440 responses: '200': description: OK content: application/json: - schema: *441 + schema: *442 examples: - default: *442 + default: *443 '202': description: Accepted content: application/json: - schema: *441 + schema: *442 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *443 + '400': *444 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -74086,9 +74144,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: - - *340 - *341 - - *439 + - *342 + - *440 requestBody: required: false content: @@ -74134,8 +74192,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *443 - '403': *444 + '400': *444 + '403': *445 '404': *6 '422': description: Unprocessable Entity @@ -74159,13 +74217,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 - *19 - *17 - - *445 - *446 + - *447 responses: '200': description: Response @@ -74176,10 +74234,10 @@ paths: items: type: object properties: - ref: *428 - analysis_key: *447 - environment: *448 - category: *449 + ref: *429 + analysis_key: *448 + environment: *449 + category: *450 state: type: - string @@ -74196,7 +74254,7 @@ paths: properties: text: type: string - location: *450 + location: *451 html_url: type: string classifications: @@ -74204,7 +74262,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *451 + items: *452 examples: default: value: @@ -74241,7 +74299,7 @@ paths: end_column: 50 classifications: - source - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -74275,25 +74333,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *340 - *341 - - *426 + - *342 - *427 + - *428 - *19 - *17 - - *446 + - *447 - 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: *428 + schema: *429 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &452 + schema: &453 type: string description: An identifier for the upload. examples: @@ -74315,23 +74373,23 @@ paths: application/json: schema: type: array - items: &453 + items: &454 type: object properties: - ref: *428 - commit_sha: &461 + ref: *429 + commit_sha: &462 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 64 pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" - analysis_key: *447 + analysis_key: *448 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *449 + category: *450 error: type: string examples: @@ -74356,8 +74414,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *452 - tool: *435 + sarif_id: *453 + tool: *436 deletable: type: boolean warning: @@ -74419,7 +74477,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -74455,8 +74513,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: - - *340 - *341 + - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -74469,7 +74527,7 @@ paths: description: Response content: application/json: - schema: *453 + schema: *454 examples: response: summary: application/json response @@ -74523,7 +74581,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *438 + '403': *439 '404': *6 '422': description: Response if analysis could not be processed @@ -74610,8 +74668,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: - - *340 - *341 + - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -74667,7 +74725,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': *444 + '403': *445 '404': *6 '503': *115 x-github: @@ -74689,8 +74747,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -74698,7 +74756,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 title: CodeQL Database description: A CodeQL database. type: object @@ -74810,7 +74868,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': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -74839,8 +74897,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *340 - *341 + - *342 - name: language in: path description: The language of the CodeQL database. @@ -74852,7 +74910,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *455 examples: default: value: @@ -74884,9 +74942,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': &487 + '302': &488 description: Found - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -74908,8 +74966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *340 - *341 + - *342 - name: language in: path description: The language of the CodeQL database. @@ -74919,7 +74977,7 @@ paths: responses: '204': description: Response - '403': *444 + '403': *445 '404': *6 '503': *115 x-github: @@ -74947,8 +75005,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -74957,7 +75015,7 @@ paths: type: object additionalProperties: false properties: - language: &455 + language: &456 type: string description: The language targeted by the CodeQL query enum: @@ -75037,7 +75095,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &459 + schema: &460 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -75047,7 +75105,7 @@ paths: description: The ID of the variant analysis. controller_repo: *66 actor: *4 - query_language: *455 + query_language: *456 query_pack_url: type: string description: The download url for the query pack. @@ -75095,7 +75153,7 @@ paths: items: type: object properties: - repository: &456 + repository: &457 title: Repository Identifier description: Repository Identifier type: object @@ -75137,7 +75195,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &460 + analysis_status: &461 type: string description: The new status of the CodeQL variant analysis repository task. @@ -75169,7 +75227,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &457 + access_mismatch_repos: &458 type: object properties: repository_count: @@ -75184,7 +75242,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: *456 + items: *457 required: - repository_count - repositories @@ -75207,8 +75265,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *457 - over_limit_repos: *457 + no_codeql_db_repos: *458 + over_limit_repos: *458 required: - access_mismatch_repos - not_found_repos @@ -75224,7 +75282,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &458 + value: &459 summary: Default response value: id: 1 @@ -75370,10 +75428,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *458 + value: *459 repository_lists: summary: Response for a successful variant analysis submission - value: *458 + value: *459 '404': *6 '422': description: Unable to process variant analysis submission @@ -75401,8 +75459,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: - - *340 - *341 + - *342 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -75414,9 +75472,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: - default: *458 + default: *459 '404': *6 '503': *115 x-github: @@ -75439,7 +75497,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: - - *340 + - *341 - name: repo in: path description: The name of the controller repository. @@ -75474,7 +75532,7 @@ paths: type: object properties: repository: *66 - analysis_status: *460 + analysis_status: *461 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -75599,8 +75657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -75693,7 +75751,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -75714,8 +75772,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -75809,7 +75867,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *444 + '403': *445 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -75880,8 +75938,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -75889,7 +75947,7 @@ paths: schema: type: object properties: - commit_sha: *461 + commit_sha: *462 ref: type: string description: |- @@ -75949,7 +76007,7 @@ paths: schema: type: object properties: - id: *452 + id: *453 url: type: string description: The REST API URL for checking the status of the upload. @@ -75963,7 +76021,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': *444 + '403': *445 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -75986,8 +76044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *340 - *341 + - *342 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -76035,7 +76093,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': *438 + '403': *439 '404': description: Not Found if the sarif id does not match any upload '503': *115 @@ -76060,8 +76118,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: - - *340 - *341 + - *342 responses: '200': description: Response @@ -76142,8 +76200,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *340 - *341 + - *342 - 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 @@ -76271,8 +76329,8 @@ paths: parameters: - *17 - *19 - - *340 - *341 + - *342 responses: '200': description: Response @@ -76288,7 +76346,7 @@ paths: type: integer codespaces: type: array - items: *251 + items: *252 examples: default: value: @@ -76586,8 +76644,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -76651,17 +76709,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '400': *14 '401': *23 '403': *27 @@ -76690,8 +76748,8 @@ paths: parameters: - *17 - *19 - - *340 - *341 + - *342 responses: '200': description: Response @@ -76755,8 +76813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *340 - *341 + - *342 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -76793,9 +76851,9 @@ paths: type: integer machines: type: array - items: *463 + items: *464 examples: - default: &716 + default: &717 value: total_count: 2 machines: @@ -76835,8 +76893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *340 - *341 + - *342 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -76923,8 +76981,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: - - *340 - *341 + - *342 - 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 @@ -76993,8 +77051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -77012,7 +77070,7 @@ paths: type: integer secrets: type: array - items: &467 + items: &468 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -77033,7 +77091,7 @@ paths: - created_at - updated_at examples: - default: *464 + default: *465 headers: Link: *67 x-github: @@ -77056,16 +77114,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *465 + schema: *466 examples: - default: *466 + default: *467 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -77085,17 +77143,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *467 + schema: *468 examples: - default: *468 + default: *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77115,8 +77173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -77169,8 +77227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -77199,8 +77257,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *340 - *341 + - *342 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -77238,7 +77296,7 @@ paths: application/json: schema: type: array - items: &469 + items: &470 title: Collaborator description: Collaborator type: object @@ -77431,8 +77489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *340 - *341 + - *342 - *71 responses: '204': @@ -77479,8 +77537,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *340 - *341 + - *342 - *71 requestBody: required: false @@ -77507,7 +77565,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &537 + schema: &538 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -77735,8 +77793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *340 - *341 + - *342 - *71 responses: '204': @@ -77768,8 +77826,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *340 - *341 + - *342 - *71 responses: '200': @@ -77790,7 +77848,7 @@ paths: user: anyOf: - type: 'null' - - *469 + - *470 required: - permission - role_name @@ -77844,8 +77902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -77855,7 +77913,7 @@ paths: application/json: schema: type: array - items: &470 + items: &471 title: Commit Comment description: Commit Comment type: object @@ -77913,7 +77971,7 @@ paths: - created_at - updated_at examples: - default: &475 + default: &476 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77972,17 +78030,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 responses: '200': description: Response content: application/json: - schema: *470 + schema: *471 examples: - default: &476 + default: &477 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -78039,8 +78097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -78063,7 +78121,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *471 examples: default: value: @@ -78114,8 +78172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -78137,8 +78195,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -78165,7 +78223,7 @@ paths: application/json: schema: type: array - items: &471 + items: &472 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -78209,7 +78267,7 @@ paths: - content - created_at examples: - default: &540 + default: &541 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -78254,8 +78312,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -78288,9 +78346,9 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: &472 + default: &473 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -78319,9 +78377,9 @@ paths: description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -78343,10 +78401,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *340 - *341 + - *342 - *97 - - &541 + - &542 name: reaction_id description: The unique identifier of the reaction. in: path @@ -78401,8 +78459,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *340 - *341 + - *342 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -78458,9 +78516,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: &606 + default: &607 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -78554,9 +78612,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *340 - *341 - - &474 + - *342 + - &475 name: commit_sha description: The SHA of the commit. in: path @@ -78628,9 +78686,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *340 - *341 - - *474 + - *342 + - *475 - *17 - *19 responses: @@ -78640,9 +78698,9 @@ paths: application/json: schema: type: array - items: *470 + items: *471 examples: - default: *475 + default: *476 headers: Link: *67 x-github: @@ -78670,9 +78728,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *340 - *341 - - *474 + - *342 + - *475 requestBody: required: true content: @@ -78707,9 +78765,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *471 examples: - default: *476 + default: *477 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -78737,9 +78795,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *340 - *341 - - *474 + - *342 + - *475 - *17 - *19 responses: @@ -78749,9 +78807,9 @@ paths: application/json: schema: type: array - items: *437 + items: *438 examples: - default: &597 + default: &598 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79288,11 +79346,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *340 - *341 + - *342 - *19 - *17 - - &477 + - &478 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)" @@ -79307,9 +79365,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - default: &585 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -79397,7 +79455,7 @@ paths: schema: type: string examples: - default: &484 + default: &485 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -79410,7 +79468,7 @@ paths: schema: type: string examples: - default: &485 + default: &486 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -79463,11 +79521,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *340 - *341 - - *477 + - *342 - *478 - *479 + - *480 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -79501,9 +79559,9 @@ paths: type: integer check_runs: type: array - items: *417 + items: *418 examples: - default: *480 + default: *481 headers: Link: *67 x-github: @@ -79528,9 +79586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *340 - *341 - - *477 + - *342 + - *478 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -79538,7 +79596,7 @@ paths: schema: type: integer example: 1 - - *478 + - *479 - *17 - *19 responses: @@ -79556,7 +79614,7 @@ paths: type: integer check_suites: type: array - items: *421 + items: *422 examples: default: value: @@ -79756,9 +79814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *340 - *341 - - *477 + - *342 + - *478 - *17 - *19 responses: @@ -79960,9 +80018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *340 - *341 - - *477 + - *342 + - *478 - *17 - *19 responses: @@ -79972,7 +80030,7 @@ paths: application/json: schema: type: array - items: &694 + items: &695 title: Status description: The status of a commit. type: object @@ -80053,7 +80111,7 @@ paths: site_admin: false headers: Link: *67 - '301': *344 + '301': *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80081,8 +80139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -80115,11 +80173,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *481 + - *482 code_of_conduct_file: anyOf: - type: 'null' - - &482 + - &483 title: Community Health File type: object properties: @@ -80139,19 +80197,19 @@ paths: contributing: anyOf: - type: 'null' - - *482 + - *483 readme: anyOf: - type: 'null' - - *482 + - *483 issue_template: anyOf: - type: 'null' - - *482 + - *483 pull_request_template: anyOf: - type: 'null' - - *482 + - *483 required: - code_of_conduct - code_of_conduct_file @@ -80280,8 +80338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *340 - *341 + - *342 - *19 - *17 - name: basehead @@ -80329,8 +80387,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *473 - merge_base_commit: *473 + base_commit: *474 + merge_base_commit: *474 status: type: string enum: @@ -80354,10 +80412,10 @@ paths: - 6 commits: type: array - items: *473 + items: *474 files: type: array - items: *483 + items: *484 required: - url - html_url @@ -80603,12 +80661,12 @@ paths: schema: type: string examples: - default: *484 + default: *485 application/vnd.github.patch: schema: type: string examples: - default: *485 + default: *486 '404': *6 '500': *54 '503': *115 @@ -80653,8 +80711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *340 - *341 + - *342 - name: path description: path parameter in: path @@ -80824,7 +80882,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &486 + response-if-content-is-a-file-github-object: &487 summary: Response if content is a file value: type: file @@ -80961,7 +81019,7 @@ paths: - size - type - url - - &612 + - &613 title: Content File description: Content File type: object @@ -81179,7 +81237,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *486 + response-if-content-is-a-file: *487 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -81248,7 +81306,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *487 + '302': *488 '304': *36 x-github: githubCloudOnly: false @@ -81271,8 +81329,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *340 - *341 + - *342 - name: path description: path parameter in: path @@ -81367,7 +81425,7 @@ paths: description: Response content: application/json: - schema: &488 + schema: &489 title: File Commit description: File Commit type: object @@ -81523,7 +81581,7 @@ paths: description: Response content: application/json: - schema: *488 + schema: *489 examples: example-for-creating-a-file: value: @@ -81577,7 +81635,7 @@ paths: schema: oneOf: - *3 - - &518 + - &519 description: Repository rule violation was detected type: object properties: @@ -81598,7 +81656,7 @@ paths: items: type: object properties: - placeholder_id: &685 + placeholder_id: &686 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -81630,8 +81688,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *340 - *341 + - *342 - name: path description: path parameter in: path @@ -81692,7 +81750,7 @@ paths: description: Response content: application/json: - schema: *488 + schema: *489 examples: default: value: @@ -81747,8 +81805,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *340 - *341 + - *342 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -81878,8 +81936,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -82031,8 +82089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *340 - *341 + - *342 - *203 - *204 - *205 @@ -82045,10 +82103,11 @@ paths: schema: type: string - *208 - - *489 + - *490 - *209 - *210 - *211 + - *212 - *61 - *46 - *47 @@ -82060,7 +82119,7 @@ paths: application/json: schema: type: array - items: &493 + items: &494 type: object description: A Dependabot alert. properties: @@ -82111,7 +82170,7 @@ paths: - transitive - inconclusive - - security_advisory: *490 + security_advisory: *491 security_vulnerability: *65 url: *184 html_url: *185 @@ -82142,8 +82201,8 @@ paths: dismissal. maxLength: 280 fixed_at: *186 - auto_dismissed_at: *491 - dismissal_request: *492 + auto_dismissed_at: *492 + dismissal_request: *493 assignees: type: array description: The users assigned to this alert. @@ -82176,6 +82235,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -82297,6 +82357,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -82398,9 +82459,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *340 - *341 - - &494 + - *342 + - &495 name: alert_number in: path description: |- @@ -82415,7 +82476,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -82427,6 +82488,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -82547,9 +82609,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *340 - *341 - - *494 + - *342 + - *495 requestBody: required: true content: @@ -82622,7 +82684,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -82634,6 +82696,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -82752,8 +82815,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -82771,7 +82834,7 @@ paths: type: integer secrets: type: array - items: &497 + items: &498 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -82825,16 +82888,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *495 + schema: *496 examples: - default: *496 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82854,15 +82917,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *497 + schema: *498 examples: default: value: @@ -82888,8 +82951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -82942,8 +83005,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -82966,8 +83029,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: - - *340 - *341 + - *342 - 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 @@ -83144,8 +83207,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: - - *340 - *341 + - *342 responses: '200': description: Response @@ -83404,8 +83467,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *340 - *341 + - *342 - name: sbom_uuid in: path required: true @@ -83416,7 +83479,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *498 + Location: *499 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -83437,8 +83500,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -83476,8 +83539,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -83560,7 +83623,7 @@ paths: - version - url additionalProperties: false - metadata: &499 + metadata: &500 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83599,7 +83662,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *499 + metadata: *500 resolved: type: object description: A collection of resolved package dependencies. @@ -83613,7 +83676,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *499 + metadata: *500 relationship: type: string description: A notation of whether a dependency is requested @@ -83746,8 +83809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *340 - *341 + - *342 - name: sha description: The SHA recorded at creation time. in: query @@ -83788,9 +83851,9 @@ paths: application/json: schema: type: array - items: *500 + items: *501 examples: - default: *501 + default: *502 headers: Link: *67 x-github: @@ -83856,8 +83919,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -83939,7 +84002,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: simple-example: summary: Simple example @@ -84012,9 +84075,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *340 - *341 - - &502 + - *342 + - &503 name: deployment_id description: deployment_id parameter in: path @@ -84026,7 +84089,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -84091,9 +84154,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *340 - *341 - - *502 + - *342 + - *503 responses: '204': description: Response @@ -84115,9 +84178,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *340 - *341 - - *502 + - *342 + - *503 - *17 - *19 responses: @@ -84127,7 +84190,7 @@ paths: application/json: schema: type: array - items: &503 + items: &504 title: Deployment Status description: The status of a deployment. type: object @@ -84291,9 +84354,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *340 - *341 - - *502 + - *342 + - *503 requestBody: required: true content: @@ -84368,9 +84431,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: &504 + default: &505 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -84426,9 +84489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *340 - *341 - - *502 + - *342 + - *503 - name: status_id in: path required: true @@ -84439,9 +84502,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 '404': *6 x-github: githubCloudOnly: false @@ -84466,8 +84529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -84524,8 +84587,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -84543,7 +84606,7 @@ paths: - 5 environments: type: array - items: &506 + items: &507 title: Environment description: Details of a deployment environment type: object @@ -84605,7 +84668,7 @@ paths: type: string examples: - wait_timer - wait_timer: &508 + wait_timer: &509 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -84647,7 +84710,7 @@ paths: items: type: object properties: - type: *505 + type: *506 reviewer: anyOf: - *4 @@ -84674,7 +84737,7 @@ paths: - id - node_id - type - deployment_branch_policy: &509 + deployment_branch_policy: &510 type: - object - 'null' @@ -84791,9 +84854,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *340 - *341 - - &507 + - *342 + - &508 name: environment_name in: path required: true @@ -84806,9 +84869,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &510 + default: &511 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -84892,9 +84955,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *340 - *341 - - *507 + - *342 + - *508 requestBody: required: false content: @@ -84904,7 +84967,7 @@ paths: - object - 'null' properties: - wait_timer: *508 + wait_timer: *509 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -84923,14 +84986,14 @@ paths: items: type: object properties: - type: *505 + type: *506 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *509 + deployment_branch_policy: *510 additionalProperties: false examples: default: @@ -84950,9 +85013,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -84976,9 +85039,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *340 - *341 - - *507 + - *342 + - *508 responses: '204': description: Default response @@ -85003,9 +85066,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *17 - *19 responses: @@ -85024,7 +85087,7 @@ paths: - 2 branch_policies: type: array - items: &511 + items: &512 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -85085,9 +85148,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 + - *342 + - *508 requestBody: required: true content: @@ -85135,9 +85198,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - example-wildcard: &512 + example-wildcard: &513 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -85179,10 +85242,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 - - &513 + - *342 + - *508 + - &514 name: branch_policy_id in: path required: true @@ -85194,9 +85257,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85215,10 +85278,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 - - *513 + - *342 + - *508 + - *514 requestBody: required: true content: @@ -85247,9 +85310,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85268,10 +85331,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 - - *513 + - *342 + - *508 + - *514 responses: '204': description: Response @@ -85296,9 +85359,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *507 + - *508 + - *342 - *341 - - *340 responses: '200': description: List of deployment protection rules @@ -85315,7 +85378,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &514 + items: &515 title: Deployment protection rule description: Deployment protection rule type: object @@ -85337,7 +85400,7 @@ paths: for the environment. examples: - true - app: &515 + app: &516 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -85440,9 +85503,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: - - *507 + - *508 + - *342 - *341 - - *340 requestBody: content: application/json: @@ -85463,9 +85526,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *514 + schema: *515 examples: - default: &516 + default: &517 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -85500,9 +85563,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: - - *507 + - *508 + - *342 - *341 - - *340 - *19 - *17 responses: @@ -85522,7 +85585,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *515 + items: *516 examples: default: value: @@ -85557,10 +85620,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *340 - *341 - - *507 - - &517 + - *342 + - *508 + - &518 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -85572,9 +85635,9 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85595,10 +85658,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *507 + - *508 + - *342 - *341 - - *340 - - *517 + - *518 responses: '204': description: Response @@ -85624,9 +85687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *17 - *19 responses: @@ -85644,9 +85707,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -85671,9 +85734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *340 - *341 - - *507 + - *342 + - *508 responses: '200': description: Response @@ -85703,18 +85766,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *164 responses: '200': description: Response content: application/json: - schema: *384 + schema: *385 examples: - default: *398 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85736,9 +85799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *164 requestBody: required: true @@ -85796,9 +85859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *164 responses: '204': @@ -85824,9 +85887,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *173 - *19 responses: @@ -85844,9 +85907,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -85869,9 +85932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *340 - *341 - - *507 + - *342 + - *508 requestBody: required: true content: @@ -85923,18 +85986,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *167 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *399 + default: *400 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85955,10 +86018,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *340 - *341 + - *342 - *167 - - *507 + - *508 requestBody: required: true content: @@ -86000,10 +86063,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *340 - *341 + - *342 - *167 - - *507 + - *508 responses: '204': description: Response @@ -86025,8 +86088,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -86094,8 +86157,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *340 - *341 + - *342 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -86254,8 +86317,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -86288,9 +86351,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 '400': *14 '422': *15 '403': *27 @@ -86311,8 +86374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -86372,7 +86435,7 @@ paths: schema: oneOf: - *125 - - *518 + - *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86397,8 +86460,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *340 - *341 + - *342 - name: file_sha in: path required: true @@ -86498,8 +86561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -86608,7 +86671,7 @@ paths: description: Response content: application/json: - schema: &519 + schema: &520 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -86835,15 +86898,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *340 - *341 - - *474 + - *342 + - *475 responses: '200': description: Response content: application/json: - schema: *519 + schema: *520 examples: default: value: @@ -86899,9 +86962,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *340 - *341 - - &520 + - *342 + - &521 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. @@ -86918,7 +86981,7 @@ paths: application/json: schema: type: array - items: &521 + items: &522 title: Git Reference description: Git references within a repository type: object @@ -86994,17 +87057,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *340 - *341 - - *520 + - *342 + - *521 responses: '200': description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: &522 + default: &523 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -87033,8 +87096,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -87063,9 +87126,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: *522 + default: *523 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -87091,9 +87154,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *340 - *341 - - *520 + - *342 + - *521 requestBody: required: true content: @@ -87122,9 +87185,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: *522 + default: *523 '422': *15 '409': *53 x-github: @@ -87142,9 +87205,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *340 - *341 - - *520 + - *342 + - *521 responses: '204': description: Response @@ -87199,8 +87262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -87267,7 +87330,7 @@ paths: description: Response content: application/json: - schema: &524 + schema: &525 title: Git Tag description: Metadata for a Git tag type: object @@ -87323,7 +87386,7 @@ paths: - sha - type - url - verification: *523 + verification: *524 required: - sha - url @@ -87333,7 +87396,7 @@ paths: - tag - message examples: - default: &525 + default: &526 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -87406,8 +87469,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *340 - *341 + - *342 - name: tag_sha in: path required: true @@ -87418,9 +87481,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: - default: *525 + default: *526 '404': *6 '409': *53 x-github: @@ -87444,8 +87507,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -87519,7 +87582,7 @@ paths: description: Response content: application/json: - schema: &526 + schema: &527 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -87621,8 +87684,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *340 - *341 + - *342 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -87645,7 +87708,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *527 examples: default-response: summary: Default response @@ -87703,8 +87766,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -87748,8 +87811,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -87759,7 +87822,7 @@ paths: application/json: schema: type: array - items: &527 + items: &528 title: Webhook description: Webhooks for repositories. type: object @@ -87822,7 +87885,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &804 + last_response: &805 title: Hook Response type: object properties: @@ -87899,8 +87962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -87953,9 +88016,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: &528 + default: &529 value: type: Repository id: 12345678 @@ -88003,17 +88066,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 '404': *6 x-github: githubCloudOnly: false @@ -88033,9 +88096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 requestBody: required: true content: @@ -88080,9 +88143,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 '422': *15 '404': *6 x-github: @@ -88103,9 +88166,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '204': description: Response @@ -88129,9 +88192,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '200': description: Response @@ -88158,9 +88221,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *340 - *341 - - *219 + - *342 + - *220 requestBody: required: false content: @@ -88204,12 +88267,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *340 - *341 - - *219 - - *17 + - *342 - *220 + - *17 - *221 + - *222 responses: '200': description: Response @@ -88217,9 +88280,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *223 + default: *224 '400': *14 '422': *15 x-github: @@ -88238,18 +88301,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 '400': *14 '422': *15 x-github: @@ -88268,9 +88331,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 - *16 responses: '202': *38 @@ -88293,9 +88356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '204': description: Response @@ -88320,9 +88383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '204': description: Response @@ -88345,8 +88408,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response if immutable releases are enabled @@ -88394,8 +88457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *340 - *341 + - *342 responses: '204': *58 '409': *53 @@ -88415,8 +88478,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *340 - *341 + - *342 responses: '204': *58 '409': *53 @@ -88473,14 +88536,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &529 + schema: &530 title: Import description: A repository import from an external source. type: object @@ -88587,7 +88650,7 @@ paths: - html_url - authors_url examples: - default: &532 + default: &533 value: vcs: subversion use_lfs: true @@ -88603,7 +88666,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': &530 + '503': &531 description: Unavailable due to service under maintenance. content: application/json: @@ -88632,8 +88695,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -88681,7 +88744,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: default: value: @@ -88706,7 +88769,7 @@ paths: type: string '422': *15 '404': *6 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88734,8 +88797,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -88787,7 +88850,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: example-1: summary: Example 1 @@ -88835,7 +88898,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': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88858,12 +88921,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *340 - *341 + - *342 responses: '204': description: Response - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88889,9 +88952,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *340 - *341 - - &738 + - *342 + - &739 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -88905,7 +88968,7 @@ paths: application/json: schema: type: array - items: &531 + items: &532 title: Porter Author description: Porter Author type: object @@ -88959,7 +89022,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': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88984,8 +89047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *340 - *341 + - *342 - name: author_id in: path required: true @@ -89015,7 +89078,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: default: value: @@ -89028,7 +89091,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89052,8 +89115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89094,7 +89157,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89122,8 +89185,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -89150,11 +89213,11 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: - default: *532 + default: *533 '422': *15 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89177,8 +89240,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89186,8 +89249,8 @@ paths: application/json: schema: *20 examples: - default: *533 - '301': *344 + default: *534 + '301': *345 '404': *6 x-github: githubCloudOnly: false @@ -89207,8 +89270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89216,12 +89279,12 @@ paths: application/json: schema: anyOf: - - *238 + - *239 - type: object properties: {} additionalProperties: false examples: - default: &535 + default: &536 value: limit: collaborators_only origin: repository @@ -89246,13 +89309,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *534 + schema: *535 examples: default: summary: Example request body @@ -89264,9 +89327,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *535 + default: *536 '409': description: Response x-github: @@ -89288,8 +89351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -89316,8 +89379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89371,13 +89434,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: &536 + schema: &537 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -89427,13 +89490,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *536 + schema: *537 examples: default: summary: Example request body @@ -89466,8 +89529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89520,8 +89583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -89597,8 +89660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -89608,9 +89671,9 @@ paths: application/json: schema: type: array - items: *537 + items: *538 examples: - default: &731 + default: &732 value: - id: 1 repository: @@ -89741,9 +89804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *340 - *341 - - *242 + - *342 + - *243 requestBody: required: false content: @@ -89772,7 +89835,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: default: value: @@ -89903,9 +89966,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *340 - *341 - - *242 + - *342 + - *243 responses: '204': description: Response @@ -89928,8 +89991,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89937,9 +90000,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *538 + default: *539 '404': *6 x-github: githubCloudOnly: false @@ -89968,8 +90031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *340 - *341 + - *342 - 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 @@ -90031,7 +90094,7 @@ paths: required: false schema: type: string - - *249 + - *250 - name: sort description: What to sort results by. in: query @@ -90056,7 +90119,7 @@ paths: type: array items: *83 examples: - default: &548 + default: &549 value: - id: 1 node_id: MDU6SXNzdWUx @@ -90205,7 +90268,7 @@ paths: state_reason: completed headers: Link: *67 - '301': *344 + '301': *345 '422': *15 '404': *6 x-github: @@ -90234,8 +90297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -90352,7 +90415,7 @@ paths: application/json: schema: *83 examples: - default: &545 + default: &546 value: id: 1 node_id: MDU6SXNzdWUx @@ -90537,8 +90600,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *340 - *341 + - *342 - *105 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -90561,7 +90624,7 @@ paths: type: array items: *84 examples: - default: &547 + default: &548 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -90620,8 +90683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '200': @@ -90630,7 +90693,7 @@ paths: application/json: schema: *84 examples: - default: &539 + default: &540 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -90686,8 +90749,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -90712,7 +90775,7 @@ paths: application/json: schema: *84 examples: - default: *539 + default: *540 '422': *15 x-github: githubCloudOnly: false @@ -90730,8 +90793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -90760,8 +90823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '200': @@ -90841,8 +90904,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -90868,8 +90931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -90896,9 +90959,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -90919,8 +90982,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -90953,16 +91016,16 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -90984,10 +91047,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *340 - *341 + - *342 - *97 - - *541 + - *542 responses: '204': description: Response @@ -91007,8 +91070,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -91018,7 +91081,7 @@ paths: application/json: schema: type: array - items: &544 + items: &545 title: Issue Event description: Issue Event type: object @@ -91165,7 +91228,7 @@ paths: required: - from - to - issue_type: &542 + issue_type: &543 title: Issue Type description: The type of issue. type: @@ -91196,11 +91259,11 @@ paths: required: - id - name - prev_issue_type: *542 + prev_issue_type: *543 sub_issue: anyOf: - type: 'null' - - &543 + - &544 title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency @@ -91258,19 +91321,19 @@ paths: parent_issue: anyOf: - type: 'null' - - *543 + - *544 blocked_by: anyOf: - type: 'null' - - *543 + - *544 blocking: anyOf: - type: 'null' - - *543 + - *544 intent: anyOf: - type: 'null' - - &549 + - &550 title: Issue Event Intent description: The intent behind an agent's action on an issue, including the rationale and confidence. Present (and `null` @@ -91492,8 +91555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *340 - *341 + - *342 - name: event_id in: path required: true @@ -91504,7 +91567,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: default: value: @@ -91731,9 +91794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *340 - *341 - - &546 + - *342 + - &547 name: issue_number description: The number that identifies the issue. in: path @@ -91749,7 +91812,7 @@ paths: examples: default: summary: Issue - value: *545 + value: *546 pinned_comment: summary: Issue with pinned comment value: @@ -91948,7 +92011,7 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *344 + '301': *345 '404': *6 '410': *31 '304': *36 @@ -91975,9 +92038,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -92348,11 +92411,11 @@ paths: - already_applied - issue_already_closed examples: - default: *545 + default: *546 '422': *15 '503': *115 '403': *27 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -92372,9 +92435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -92424,7 +92487,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92440,9 +92503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: content: application/json: @@ -92469,7 +92532,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92491,9 +92554,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: - - *340 - *341 - - *546 + - *342 + - *547 - name: assignee in: path required: true @@ -92533,9 +92596,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *88 - *17 - *19 @@ -92548,7 +92611,7 @@ paths: type: array items: *84 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 @@ -92581,9 +92644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -92607,7 +92670,7 @@ paths: application/json: schema: *84 examples: - default: *539 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -92642,9 +92705,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -92656,10 +92719,10 @@ paths: type: array items: *83 examples: - default: *548 + default: *549 headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -92689,9 +92752,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -92715,13 +92778,13 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *344 + '301': *345 '403': *27 '410': *31 '422': *15 @@ -92754,9 +92817,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -92770,8 +92833,8 @@ paths: application/json: schema: *83 examples: - default: *545 - '301': *344 + default: *546 + '301': *345 '400': *14 '401': *23 '403': *27 @@ -92802,9 +92865,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -92816,10 +92879,10 @@ paths: type: array items: *83 examples: - default: *548 + default: *549 headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -92838,9 +92901,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -92854,7 +92917,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &555 + - &556 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -92895,7 +92958,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - label - id @@ -92907,7 +92970,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &557 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -92948,7 +93011,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - label - id @@ -92989,7 +93052,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - id - node_id @@ -93043,7 +93106,7 @@ paths: - performed_via_github_app - assignee - assigner - - &557 + - &558 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -93089,7 +93152,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &559 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -93135,7 +93198,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &560 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -93184,7 +93247,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &561 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -93226,7 +93289,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &562 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -93268,7 +93331,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &562 + - &563 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -93324,7 +93387,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &563 + - &564 title: Locked Issue Event description: Locked Issue Event type: object @@ -93369,7 +93432,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &565 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -93430,7 +93493,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &566 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -93491,7 +93554,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &567 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -93552,7 +93615,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &568 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -93610,7 +93673,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &570 + - &571 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -93638,11 +93701,11 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *542 + issue_type: *543 intent: anyOf: - type: 'null' - - *549 + - *550 required: - issue_type - id @@ -93654,7 +93717,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &572 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -93682,11 +93745,11 @@ paths: anyOf: - type: 'null' - *5 - prev_issue_type: *542 + prev_issue_type: *543 intent: anyOf: - type: 'null' - - *549 + - *550 required: - prev_issue_type - id @@ -93698,7 +93761,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &572 + - &573 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -93726,12 +93789,12 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *542 - prev_issue_type: *542 + issue_type: *543 + prev_issue_type: *543 intent: anyOf: - type: 'null' - - *549 + - *550 required: - issue_type - prev_issue_type @@ -93744,7 +93807,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &573 + - &574 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -93775,7 +93838,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *543 + - *544 required: - sub_issue - id @@ -93787,7 +93850,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &575 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -93818,7 +93881,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *543 + - *544 required: - sub_issue - id @@ -93830,7 +93893,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &576 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -93861,7 +93924,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *543 + - *544 required: - parent_issue - id @@ -93873,7 +93936,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &576 + - &577 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -93904,7 +93967,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *543 + - *544 required: - parent_issue - id @@ -93916,7 +93979,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &578 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -93947,7 +94010,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *543 + - *544 required: - blocked_by - id @@ -93959,7 +94022,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &579 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -93990,7 +94053,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *543 + - *544 required: - blocked_by - id @@ -94002,7 +94065,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &580 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -94033,7 +94096,7 @@ paths: blocking: anyOf: - type: 'null' - - *543 + - *544 required: - blocking - id @@ -94045,7 +94108,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &581 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -94076,7 +94139,7 @@ paths: blocking: anyOf: - type: 'null' - - *543 + - *544 required: - blocking - id @@ -94140,9 +94203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -94152,9 +94215,9 @@ paths: application/json: schema: type: array - items: *550 + items: *551 examples: - default: &551 + default: &552 value: - issue_field_id: 1 issue_field_name: DRI @@ -94194,7 +94257,7 @@ paths: color: green headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -94225,9 +94288,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -94299,9 +94362,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *550 + items: *551 examples: - default: *551 + default: *552 '400': *14 '403': *27 '404': *6 @@ -94337,9 +94400,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -94406,9 +94469,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *550 + items: *551 examples: - default: *551 + default: *552 '400': *14 '403': *27 '404': *6 @@ -94439,10 +94502,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *340 - *341 - - *546 - - *245 + - *342 + - *547 + - *246 responses: '204': description: Issue field value deleted successfully @@ -94467,9 +94530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -94481,7 +94544,7 @@ paths: type: array items: *82 examples: - default: &552 + default: &553 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94499,7 +94562,7 @@ paths: default: false headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -94517,9 +94580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -94599,8 +94662,8 @@ paths: type: array items: *82 examples: - default: *552 - '301': *344 + default: *553 + '301': *345 '404': *6 '410': *31 '422': *15 @@ -94619,9 +94682,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -94683,8 +94746,8 @@ paths: type: array items: *82 examples: - default: *552 - '301': *344 + default: *553 + '301': *345 '404': *6 '410': *31 '422': *15 @@ -94703,13 +94766,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 responses: '204': description: Response - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -94730,9 +94793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: name in: path required: true @@ -94756,7 +94819,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -94778,9 +94841,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -94827,9 +94890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 responses: '204': description: Response @@ -94859,9 +94922,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 responses: '200': description: Response @@ -94869,8 +94932,8 @@ paths: application/json: schema: *83 examples: - default: *545 - '301': *344 + default: *546 + '301': *345 '404': *6 '410': *31 x-github: @@ -94889,9 +94952,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - 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. @@ -94917,9 +94980,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -94941,9 +95004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -94975,16 +95038,16 @@ paths: description: Response content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Response content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -95006,10 +95069,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *340 - *341 - - *546 - - *541 + - *342 + - *547 + - *542 responses: '204': description: Response @@ -95038,9 +95101,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -95064,7 +95127,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -95097,9 +95160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -95111,7 +95174,7 @@ paths: type: array items: *83 examples: - default: *548 + default: *549 headers: Link: *67 '404': *6 @@ -95143,9 +95206,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -95174,7 +95237,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -95201,9 +95264,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -95236,7 +95299,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 '403': *27 '404': *6 '422': *7 @@ -95265,9 +95328,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-issue-suggestions parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: state in: query required: false @@ -95304,7 +95367,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Issue Suggestion description: An agent-proposed change to an issue that a maintainer can approve or dismiss. @@ -95468,9 +95531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#approve-an-issue-suggestion parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: suggestion_id in: path required: true @@ -95482,9 +95545,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: &554 + default: &555 value: id: 12 issue_id: 4567 @@ -95522,9 +95585,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#dismiss-an-issue-suggestion parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: suggestion_id in: path required: true @@ -95536,9 +95599,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *554 + default: *555 '403': *27 '404': *6 '422': *15 @@ -95558,9 +95621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 - name: exclude @@ -95581,7 +95644,6 @@ paths: description: Timeline Event type: object anyOf: - - *555 - *556 - *557 - *558 @@ -95594,6 +95656,7 @@ paths: - *565 - *566 - *567 + - *568 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -95650,11 +95713,11 @@ paths: pin: anyOf: - type: 'null' - - *568 + - *569 minimized: anyOf: - type: 'null' - - *569 + - *570 required: - event - actor @@ -95930,7 +95993,7 @@ paths: type: string comments: type: array - items: &600 + items: &601 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -96171,7 +96234,7 @@ paths: type: string comments: type: array - items: *470 + items: *471 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -96203,7 +96266,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - id - node_id @@ -96288,7 +96351,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - id - node_id @@ -96299,7 +96362,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *570 - *571 - *572 - *573 @@ -96310,6 +96372,7 @@ paths: - *578 - *579 - *580 + - *581 examples: default: value: @@ -96483,8 +96546,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -96494,7 +96557,7 @@ paths: application/json: schema: type: array - items: &581 + items: &582 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -96562,8 +96625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -96599,9 +96662,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: &582 + default: &583 value: id: 1 key: ssh-rsa AAA... @@ -96635,9 +96698,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *340 - *341 - - &583 + - *342 + - &584 name: key_id description: The unique identifier of the key. in: path @@ -96649,9 +96712,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: *582 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -96669,9 +96732,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *340 - *341 - - *583 + - *342 + - *584 responses: '204': description: Response @@ -96691,8 +96754,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -96704,7 +96767,7 @@ paths: type: array items: *82 examples: - default: *552 + default: *553 headers: Link: *67 '404': *6 @@ -96725,8 +96788,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -96764,7 +96827,7 @@ paths: application/json: schema: *82 examples: - default: &584 + default: &585 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96796,8 +96859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *340 - *341 + - *342 - name: name in: path required: true @@ -96810,7 +96873,7 @@ paths: application/json: schema: *82 examples: - default: *584 + default: *585 '404': *6 x-github: githubCloudOnly: false @@ -96827,8 +96890,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *340 - *341 + - *342 - name: name in: path required: true @@ -96893,8 +96956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *340 - *341 + - *342 - name: name in: path required: true @@ -96920,8 +96983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -96960,9 +97023,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *340 - *341 - - *445 + - *342 + - *446 responses: '200': description: Response @@ -97109,8 +97172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97175,8 +97238,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97210,9 +97273,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *473 + schema: *474 examples: - default: *585 + default: *586 '204': description: Response when already merged '404': @@ -97237,8 +97300,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *340 - *341 + - *342 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -97279,7 +97342,7 @@ paths: application/json: schema: type: array - items: *282 + items: *283 examples: default: value: @@ -97335,8 +97398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97376,9 +97439,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: &586 + default: &587 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -97437,9 +97500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *340 - *341 - - &587 + - *342 + - &588 name: milestone_number description: The number that identifies the milestone. in: path @@ -97451,9 +97514,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: *586 + default: *587 '404': *6 x-github: githubCloudOnly: false @@ -97470,9 +97533,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *340 - *341 - - *587 + - *342 + - *588 requestBody: required: false content: @@ -97510,9 +97573,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: *586 + default: *587 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97528,9 +97591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *340 - *341 - - *587 + - *342 + - *588 responses: '204': description: Response @@ -97551,9 +97614,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *340 - *341 - - *587 + - *342 + - *588 - *17 - *19 responses: @@ -97565,7 +97628,7 @@ paths: type: array items: *82 examples: - default: *552 + default: *553 headers: Link: *67 x-github: @@ -97584,12 +97647,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *340 - *341 - - *588 + - *342 - *589 - - *88 - *590 + - *88 + - *591 - *17 - *19 responses: @@ -97601,7 +97664,7 @@ paths: type: array items: *108 examples: - default: *591 + default: *592 headers: Link: *67 x-github: @@ -97625,8 +97688,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -97684,14 +97747,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &592 + schema: &593 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -97835,7 +97898,7 @@ paths: - custom_404 - public examples: - default: &593 + default: &594 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -97876,8 +97939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97932,9 +97995,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '422': *15 '409': *53 x-github: @@ -97957,8 +98020,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -98058,8 +98121,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -98085,8 +98148,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -98096,7 +98159,7 @@ paths: application/json: schema: type: array - items: &594 + items: &595 title: Page Build description: Page Build type: object @@ -98188,8 +98251,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -98236,16 +98299,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: &595 + default: &596 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -98293,8 +98356,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *340 - *341 + - *342 - name: build_id in: path required: true @@ -98305,9 +98368,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: *595 + default: *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98327,8 +98390,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -98436,9 +98499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *340 - *341 - - &596 + - *342 + - &597 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -98496,9 +98559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *340 - *341 - - *596 + - *342 + - *597 responses: '204': *58 '404': *6 @@ -98525,8 +98588,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -98821,8 +98884,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: - - *340 - *341 + - *342 responses: '200': description: Private vulnerability reporting status @@ -98859,8 +98922,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': *58 '422': *14 @@ -98881,8 +98944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': *58 '422': *14 @@ -98904,8 +98967,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -98913,7 +98976,7 @@ paths: application/json: schema: type: array - items: *296 + items: *297 examples: default: value: @@ -98944,8 +99007,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -98957,7 +99020,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *296 + items: *297 required: - properties examples: @@ -99007,8 +99070,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *340 - *341 + - *342 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -99068,9 +99131,9 @@ paths: application/json: schema: type: array - items: *437 + items: *438 examples: - default: *597 + default: *598 headers: Link: *67 '304': *36 @@ -99102,8 +99165,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -99170,7 +99233,7 @@ paths: description: Response content: application/json: - schema: &602 + schema: &603 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -99299,7 +99362,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *283 active_lock_reason: type: - string @@ -99348,7 +99411,7 @@ paths: items: *4 requested_teams: type: array - items: *261 + items: *262 head: type: object properties: @@ -99386,14 +99449,14 @@ paths: _links: type: object properties: - comments: *283 - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + comments: *284 + commits: *284 + statuses: *284 + html: *284 + issue: *284 + review_comments: *284 + review_comment: *284 + self: *284 required: - comments - commits @@ -99404,8 +99467,8 @@ paths: - review_comment - self author_association: *80 - auto_merge: *598 - stack: *599 + auto_merge: *599 + stack: *600 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -99507,7 +99570,7 @@ paths: - merged_by - review_comments examples: - default: &603 + default: &604 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -100034,8 +100097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *340 - *341 + - *342 - name: sort in: query required: false @@ -100064,9 +100127,9 @@ paths: application/json: schema: type: array - items: *600 + items: *601 examples: - default: &605 + default: &606 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100143,17 +100206,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *340 - *341 + - *342 - *97 responses: '200': description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: &601 + default: &602 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100228,8 +100291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -100252,9 +100315,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: *601 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100270,8 +100333,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -100293,8 +100356,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *340 - *341 + - *342 - *97 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -100321,9 +100384,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -100344,8 +100407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -100378,16 +100441,16 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -100409,10 +100472,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *340 - *341 + - *342 - *97 - - *541 + - *542 responses: '204': description: Response @@ -100455,9 +100518,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *340 - *341 - - &604 + - *342 + - &605 name: pull_number description: The number that identifies the pull request. in: path @@ -100470,9 +100533,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 '304': *36 '404': *6 '406': @@ -100507,9 +100570,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -100551,9 +100614,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 '422': *15 '403': *27 x-github: @@ -100575,9 +100638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: true content: @@ -100638,17 +100701,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '401': *23 '403': *27 '404': *6 @@ -100678,9 +100741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *105 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -100701,9 +100764,9 @@ paths: application/json: schema: type: array - items: *600 + items: *601 examples: - default: *605 + default: *606 headers: Link: *67 x-github: @@ -100736,9 +100799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: true content: @@ -100844,7 +100907,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: example-for-a-multi-line-comment: value: @@ -100932,9 +100995,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *97 requestBody: required: true @@ -100957,7 +101020,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: default: value: @@ -101043,9 +101106,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *17 - *19 responses: @@ -101055,9 +101118,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *606 + default: *607 headers: Link: *67 x-github: @@ -101087,9 +101150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *17 - *19 responses: @@ -101099,7 +101162,7 @@ paths: application/json: schema: type: array - items: *483 + items: *484 examples: default: value: @@ -101137,9 +101200,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *340 - *341 - - *604 + - *342 + - *605 responses: '204': description: Response if pull request has been merged @@ -101162,9 +101225,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -101287,9 +101350,9 @@ paths: category: pulls subcategory: pulls parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -101342,7 +101405,7 @@ paths: description: if the merge request was accepted and will run in the background content: application/json: - schema: &607 + schema: &608 title: Pull Request Merge Async Result description: Pull Request Merge Async Result type: object @@ -101427,7 +101490,7 @@ paths: merge queue content: application/json: - schema: *607 + schema: *608 examples: response-if-pull-request-was-already-merged: summary: Already merged @@ -101447,7 +101510,7 @@ paths: this pull request content: application/json: - schema: *607 + schema: *608 examples: response-if-a-merge-request-already-exists: value: @@ -101463,7 +101526,7 @@ paths: it is closed content: application/json: - schema: *607 + schema: *608 examples: response-if-pull-request-is-not-ready-to-be-merged: value: @@ -101495,9 +101558,9 @@ paths: category: pulls subcategory: pulls parameters: - - *340 - *341 - - *604 + - *342 + - *605 - name: uuid description: The UUID of the asynchronous merge request, as returned when the merge was requested. @@ -101510,7 +101573,7 @@ paths: description: the current result of the asynchronous merge request content: application/json: - schema: *607 + schema: *608 examples: response-if-the-merge-is-still-queued: summary: Still queued @@ -101558,9 +101621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 responses: '200': description: Response @@ -101635,9 +101698,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -101674,7 +101737,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: default: value: @@ -102210,9 +102273,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: true content: @@ -102246,7 +102309,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: default: value: @@ -102751,9 +102814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *17 - *19 responses: @@ -102763,7 +102826,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -102919,9 +102982,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -103011,9 +103074,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: &610 + default: &611 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103076,10 +103139,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - &609 + - *342 + - *605 + - &610 name: review_id description: The unique identifier of the review. in: path @@ -103091,9 +103154,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: &611 + default: &612 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103152,10 +103215,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 requestBody: required: true content: @@ -103178,7 +103241,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -103240,18 +103303,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 responses: '200': description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *610 + default: *611 '422': *7 '404': *6 x-github: @@ -103278,10 +103341,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 - *17 - *19 responses: @@ -103379,9 +103442,9 @@ paths: _links: type: object properties: - self: *283 - html: *283 - pull_request: *283 + self: *284 + html: *284 + pull_request: *284 required: - self - html @@ -103539,10 +103602,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 requestBody: required: true content: @@ -103571,7 +103634,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -103634,10 +103697,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 requestBody: required: true content: @@ -103672,9 +103735,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *611 + default: *612 '404': *6 '422': *7 '403': *27 @@ -103696,9 +103759,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -103762,8 +103825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *340 - *341 + - *342 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -103776,9 +103839,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: &613 + default: &614 value: type: file encoding: base64 @@ -103820,8 +103883,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *340 - *341 + - *342 - name: dir description: The alternate path to look for a README file in: path @@ -103841,9 +103904,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *613 + default: *614 '404': *6 '422': *15 x-github: @@ -103865,8 +103928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -103876,7 +103939,7 @@ paths: application/json: schema: type: array - items: *614 + items: *615 examples: default: value: @@ -103975,8 +104038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -104052,9 +104115,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: &618 + default: &619 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -104159,9 +104222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *340 - *341 - - &616 + - *342 + - &617 name: asset_id description: The unique identifier of the asset. in: path @@ -104173,9 +104236,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: - default: &617 + default: &618 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 @@ -104210,7 +104273,7 @@ paths: type: User site_admin: false '404': *6 - '302': *487 + '302': *488 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104226,9 +104289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *340 - *341 - - *616 + - *342 + - *617 requestBody: required: false content: @@ -104257,9 +104320,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: - default: *617 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -104275,9 +104338,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *340 - *341 - - *616 + - *342 + - *617 responses: '204': description: Response @@ -104302,8 +104365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -104389,16 +104452,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *618 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -104416,8 +104479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *340 - *341 + - *342 - name: tag description: tag parameter in: path @@ -104430,9 +104493,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *618 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -104454,9 +104517,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *340 - *341 - - &619 + - *342 + - &620 name: release_id description: The unique identifier of the release. in: path @@ -104470,9 +104533,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: *614 + schema: *615 examples: - default: *618 + default: *619 '401': description: Unauthorized x-github: @@ -104496,9 +104559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 requestBody: required: false content: @@ -104562,9 +104625,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *618 + default: *619 '404': description: Not Found if the discussion category name is invalid content: @@ -104585,9 +104648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 responses: '204': description: Response @@ -104608,9 +104671,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *340 - *341 - - *619 + - *342 + - *620 - *17 - *19 responses: @@ -104620,7 +104683,7 @@ paths: application/json: schema: type: array - items: *615 + items: *616 examples: default: value: @@ -104701,9 +104764,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: - - *340 - *341 - - *619 + - *342 + - *620 - name: name in: query required: true @@ -104729,7 +104792,7 @@ paths: description: Response for successful upload content: application/json: - schema: *615 + schema: *616 examples: response-for-successful-upload: value: @@ -104784,9 +104847,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 - 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. @@ -104810,9 +104873,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -104833,9 +104896,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 requestBody: required: true content: @@ -104865,16 +104928,16 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -104896,10 +104959,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *340 - *341 - - *619 - - *541 + - *342 + - *620 + - *542 responses: '204': description: Response @@ -104923,9 +104986,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 - *17 - *19 responses: @@ -104941,8 +105004,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *303 - - &620 + - *304 + - &621 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -104961,72 +105024,72 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *304 - - *620 - allOf: - *305 - - *620 + - *621 - allOf: - *306 - - *620 - - allOf: - *621 - - *620 - allOf: - *307 - - *620 + - *621 + - allOf: + - *622 + - *621 - allOf: - *308 - - *620 + - *621 - allOf: - *309 - - *620 + - *621 - allOf: - *310 - - *620 + - *621 - allOf: - *311 - - *620 + - *621 - allOf: - *312 - - *620 + - *621 - allOf: - *313 - - *620 + - *621 - allOf: - *314 - - *620 + - *621 - allOf: - *315 - - *620 + - *621 - allOf: - *316 - - *620 + - *621 - allOf: - - *321 - - *620 + - *317 + - *621 - allOf: - *322 - - *620 + - *621 - allOf: - *323 - - *620 + - *621 - allOf: - - *622 - - *620 + - *324 + - *621 - allOf: - - *317 - - *620 + - *623 + - *621 - allOf: - *318 - - *620 + - *621 - allOf: - *319 - - *620 + - *621 - allOf: - *320 - - *620 + - *621 + - allOf: + - *321 + - *621 examples: default: value: @@ -105065,8 +105128,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - *17 - *19 - name: includes_parents @@ -105077,7 +105140,7 @@ paths: schema: type: boolean default: true - - *623 + - *624 responses: '200': description: Response @@ -105085,7 +105148,7 @@ paths: application/json: schema: type: array - items: *324 + items: *325 examples: default: value: @@ -105132,8 +105195,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 requestBody: description: Request body required: true @@ -105153,16 +105216,16 @@ paths: - tag - push default: branch - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *302 + conditions: *299 rules: type: array description: An array of rules within the ruleset. - items: *624 + items: *625 required: - name - enforcement @@ -105193,9 +105256,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: &635 + default: &636 value: id: 42 name: super cool ruleset @@ -105243,13 +105306,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *340 - *341 - - *625 + - *342 - *626 - *627 - *628 - *629 + - *630 - *17 - *19 responses: @@ -105257,9 +105320,9 @@ paths: description: Response content: application/json: - schema: *630 + schema: *631 examples: - default: *631 + default: *632 '404': *6 '500': *54 x-github: @@ -105280,17 +105343,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *340 - *341 - - *632 + - *342 + - *633 responses: '200': description: Response content: application/json: - schema: *633 + schema: *634 examples: - default: *634 + default: *635 '404': *6 '500': *54 x-github: @@ -105318,8 +105381,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105339,9 +105402,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *635 + default: *636 '404': *6 '500': *54 put: @@ -105359,8 +105422,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105385,16 +105448,16 @@ paths: - branch - tag - push - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *302 + conditions: *299 rules: description: An array of rules within the ruleset. type: array - items: *624 + items: *625 examples: default: value: @@ -105422,9 +105485,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *635 + default: *636 '404': *6 '422': *15 '500': *54 @@ -105443,8 +105506,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105467,8 +105530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *340 - *341 + - *342 - *17 - *19 - name: ruleset_id @@ -105484,9 +105547,9 @@ paths: application/json: schema: type: array - items: *327 + items: *328 examples: - default: *636 + default: *637 '404': *6 '500': *54 x-github: @@ -105505,8 +105568,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -105524,7 +105587,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: default: value: @@ -105579,9 +105642,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *340 - *341 - - *638 + - *342 - *639 - *640 - *641 @@ -105589,10 +105651,10 @@ paths: - *643 - *644 - *645 + - *646 - *61 - *19 - *17 - - *646 - *647 - *648 - *649 @@ -105601,6 +105663,7 @@ paths: - *652 - *653 - *654 + - *655 responses: '200': description: Response @@ -105624,8 +105687,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *655 - resolution: *656 + state: *656 + resolution: *657 resolved_at: type: - string @@ -105731,7 +105794,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *657 + - *658 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -105890,16 +105953,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *340 - *341 - - *439 - - *651 + - *342 + - *440 + - *652 responses: '200': description: Response content: application/json: - schema: &658 + schema: &659 type: object properties: number: *181 @@ -105914,8 +105977,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *655 - resolution: *656 + state: *656 + resolution: *657 resolved_at: type: - string @@ -106021,7 +106084,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *657 + - *658 has_more_locations: type: boolean description: A boolean value representing whether or not the token @@ -106044,7 +106107,7 @@ paths: anyOf: - type: 'null' - *4 - metadata: &823 + metadata: &824 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -106117,9 +106180,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 requestBody: required: true content: @@ -106127,8 +106190,8 @@ paths: schema: type: object properties: - state: *655 - resolution: *656 + state: *656 + resolution: *657 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -106176,7 +106239,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: default: value: @@ -106278,9 +106341,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 - *19 - *17 responses: @@ -106291,7 +106354,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &825 + items: &826 type: object properties: type: @@ -106318,7 +106381,6 @@ paths: - commit details: oneOf: - - *659 - *660 - *661 - *662 @@ -106331,6 +106393,7 @@ paths: - *669 - *670 - *671 + - *672 examples: default: value: @@ -106419,11 +106482,11 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 - - *672 + - *342 - *673 - *674 + - *675 - *61 - *19 - *17 @@ -106434,9 +106497,9 @@ paths: application/json: schema: type: array - items: *328 + items: *329 examples: - default: *675 + default: *676 headers: Link: *67 '403': *27 @@ -106459,8 +106522,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -106473,9 +106536,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *676 + items: *677 examples: - default: *677 + default: *678 responses: '201': description: All patterns created successfully. @@ -106487,9 +106550,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *328 + items: *329 examples: - default: *678 + default: *679 '400': *14 '403': *27 '404': *6 @@ -106513,7 +106576,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *679 + items: *680 delete: summary: Bulk delete repository custom patterns description: |- @@ -106532,8 +106595,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -106547,7 +106610,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *680 + items: *681 post_delete_action: type: string description: |- @@ -106560,14 +106623,14 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *681 + default: *682 responses: '204': description: All patterns deleted successfully. '400': *14 '403': *27 '404': *6 - '412': *330 + '412': *331 "/repos/{owner}/{repo}/secret-scanning/custom-patterns/{pattern_id}": patch: summary: Update a repository custom pattern @@ -106587,8 +106650,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 + - *342 - name: pattern_id in: path required: true @@ -106599,21 +106662,21 @@ paths: required: true content: application/json: - schema: *682 + schema: *683 examples: - default: *683 + default: *684 responses: '200': description: Pattern updated successfully. content: application/json: - schema: *328 + schema: *329 examples: - default: *684 + default: *685 '400': *14 '403': *27 '404': *6 - '412': *330 + '412': *331 '422': *15 "/repos/{owner}/{repo}/secret-scanning/push-protection-bypasses": post: @@ -106631,8 +106694,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -106640,14 +106703,14 @@ paths: schema: type: object properties: - reason: &686 + reason: &687 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *685 + placeholder_id: *686 required: - reason - placeholder_id @@ -106664,7 +106727,7 @@ paths: schema: type: object properties: - reason: *686 + reason: *687 expire_at: type: - string @@ -106711,8 +106774,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: - - *340 - *341 + - *342 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -106727,7 +106790,7 @@ paths: properties: incremental_scans: type: array - items: &687 + items: &688 description: Information on a single scan performed by secret scanning on the repository type: object @@ -106760,15 +106823,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *687 + items: *688 backfill_scans: type: array - items: *687 + items: *688 custom_pattern_backfill_scans: type: array items: allOf: - - *687 + - *688 - type: object properties: pattern_name: @@ -106781,7 +106844,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *687 + items: *688 examples: default: value: @@ -106846,8 +106909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *340 - *341 + - *342 - *61 - name: sort description: The property to sort the results by. @@ -106891,9 +106954,9 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: - default: *689 + default: *690 '400': *14 '404': *6 x-github: @@ -106916,8 +106979,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -106997,7 +107060,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *333 required: - login - type @@ -107087,9 +107150,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: &691 + default: &692 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -107322,8 +107385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -107436,7 +107499,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: default: value: @@ -107583,17 +107646,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *340 - *341 - - *690 + - *342 + - *691 responses: '200': description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *691 + default: *692 '403': *27 '404': *6 x-github: @@ -107617,9 +107680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *340 - *341 - - *690 + - *342 + - *691 requestBody: required: true content: @@ -107699,7 +107762,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *333 required: - login - type @@ -107790,10 +107853,10 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *691 - add_credit: *691 + default: *692 + add_credit: *692 '403': *27 '404': *6 '422': @@ -107831,9 +107894,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: - - *340 - *341 - - *690 + - *342 + - *691 responses: '202': *38 '400': *14 @@ -107860,17 +107923,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *340 - *341 - - *690 + - *342 + - *691 responses: '202': description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 '400': *14 '422': *15 '403': *27 @@ -107891,8 +107954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#list-pull-request-stacks parameters: - - *340 - *341 + - *342 - name: pull_request description: Filter to the stack containing this repository pull request number. in: query @@ -108025,8 +108088,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#create-a-pull-request-stack parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -108093,7 +108156,7 @@ paths: format: date-time pull_requests: type: array - items: &692 + items: &693 title: Pull Request Stack Pull Request type: object allOf: @@ -108320,8 +108383,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#get-a-pull-request-stack parameters: - - *340 - *341 + - *342 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -108370,7 +108433,7 @@ paths: format: date-time pull_requests: type: array - items: *692 + items: *693 examples: default: value: @@ -108490,8 +108553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#add-pull-requests-to-a-pull-request-stack parameters: - - *340 - *341 + - *342 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -108563,7 +108626,7 @@ paths: format: date-time pull_requests: type: array - items: *692 + items: *693 examples: default: value: @@ -108770,8 +108833,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#remove-pull-requests-from-a-pull-request-stack parameters: - - *340 - *341 + - *342 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -108820,7 +108883,7 @@ paths: format: date-time pull_requests: type: array - items: *692 + items: *693 examples: default: value: @@ -108926,8 +108989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -109023,8 +109086,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *340 - *341 + - *342 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -109033,7 +109096,7 @@ paths: application/json: schema: type: array - items: &693 + items: &694 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -109066,8 +109129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -109145,8 +109208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -109240,8 +109303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *340 - *341 + - *342 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -109395,8 +109458,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *340 - *341 + - *342 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -109406,7 +109469,7 @@ paths: application/json: schema: type: array - items: *693 + items: *694 examples: default: value: @@ -109439,8 +109502,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *340 - *341 + - *342 - name: sha in: path required: true @@ -109496,7 +109559,7 @@ paths: description: Response content: application/json: - schema: *694 + schema: *695 examples: default: value: @@ -109550,8 +109613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -109583,14 +109646,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *340 - *341 + - *342 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &695 + schema: &696 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -109663,8 +109726,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -109690,7 +109753,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: default: value: @@ -109717,8 +109780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -109738,8 +109801,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -109821,8 +109884,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *340 - *341 + - *342 - name: ref in: path required: true @@ -109858,8 +109921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -109871,7 +109934,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 headers: Link: *67 '404': *6 @@ -109891,8 +109954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *340 - *341 + - *342 - *19 - *17 responses: @@ -109900,7 +109963,7 @@ paths: description: Response content: application/json: - schema: &696 + schema: &697 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -109912,7 +109975,7 @@ paths: required: - names examples: - default: &697 + default: &698 value: names: - octocat @@ -109935,8 +109998,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -109967,9 +110030,9 @@ paths: description: Response content: application/json: - schema: *696 + schema: *697 examples: - default: *697 + default: *698 '404': *6 '422': *7 x-github: @@ -109990,9 +110053,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *340 - *341 - - &698 + - *342 + - &699 name: per description: The time frame to display results for. in: query @@ -110023,7 +110086,7 @@ paths: - 128 clones: type: array - items: &699 + items: &700 title: Traffic type: object properties: @@ -110110,8 +110173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -110205,8 +110268,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -110269,9 +110332,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *340 - *341 - - *698 + - *342 + - *699 responses: '200': description: Response @@ -110292,7 +110355,7 @@ paths: - 3782 views: type: array - items: *699 + items: *700 required: - uniques - count @@ -110369,8 +110432,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -110644,8 +110707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -110668,8 +110731,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -110691,8 +110754,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -110718,8 +110781,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *340 - *341 + - *342 - name: ref in: path required: true @@ -110811,9 +110874,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -111065,7 +111128,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &700 + text_matches: &701 title: Search Result Text Matches type: array items: @@ -111228,7 +111291,7 @@ paths: enum: - author-date - committer-date - - &701 + - &702 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 @@ -111297,7 +111360,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *405 comment_count: type: integer message: @@ -111316,7 +111379,7 @@ paths: url: type: string format: uri - verification: *523 + verification: *524 required: - author - committer @@ -111331,7 +111394,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *405 parents: type: array items: @@ -111348,7 +111411,7 @@ paths: type: number node_id: type: string - text_matches: *700 + text_matches: *701 required: - sha - node_id @@ -111540,7 +111603,7 @@ paths: - interactions - created - updated - - *701 + - *702 - *17 - *19 - name: advanced_search @@ -111654,11 +111717,11 @@ paths: type: - string - 'null' - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: type: string state_reason: @@ -111672,7 +111735,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *283 comments: type: integer created_at: @@ -111686,7 +111749,7 @@ paths: - string - 'null' format: date-time - text_matches: *700 + text_matches: *701 pull_request: type: object properties: @@ -111735,7 +111798,7 @@ paths: timeline_url: type: string format: uri - type: *246 + type: *247 performed_via_github_app: anyOf: - type: 'null' @@ -111962,7 +112025,7 @@ paths: enum: - created - updated - - *701 + - *702 - *17 - *19 responses: @@ -112007,7 +112070,7 @@ paths: - 'null' score: type: number - text_matches: *700 + text_matches: *701 required: - id - node_id @@ -112092,7 +112155,7 @@ paths: - forks - help-wanted-issues - updated - - *701 + - *702 - *17 - *19 responses: @@ -112338,7 +112401,7 @@ paths: - admin - pull - push - text_matches: *700 + text_matches: *701 temp_clone_token: type: string allow_merge_commit: @@ -112646,7 +112709,7 @@ paths: - string - 'null' format: uri - text_matches: *700 + text_matches: *701 related: type: - array @@ -112839,7 +112902,7 @@ paths: - followers - repositories - joined - - *701 + - *702 - *17 - *19 responses: @@ -112949,7 +113012,7 @@ paths: type: - boolean - 'null' - text_matches: *700 + text_matches: *701 blog: type: - string @@ -113031,7 +113094,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &704 + - &705 name: team_id description: The unique identifier of the team. in: path @@ -113043,9 +113106,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 x-github: githubCloudOnly: false @@ -113072,7 +113135,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *704 + - *705 requestBody: required: true content: @@ -113142,16 +113205,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '201': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 '422': *15 '403': *27 @@ -113179,7 +113242,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *704 + - *705 responses: '204': description: Response @@ -113208,7 +113271,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *704 + - *705 - *17 - *19 responses: @@ -113218,9 +113281,9 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: - default: *241 + default: *242 headers: Link: *67 x-github: @@ -113248,7 +113311,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *704 + - *705 - name: role description: Filters members returned by their role in the team. in: query @@ -113269,9 +113332,9 @@ paths: application/json: schema: type: array - items: *705 + items: *706 examples: - default: *706 + default: *707 headers: Link: *67 '404': *6 @@ -113299,7 +113362,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -113336,7 +113399,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -113376,7 +113439,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -113413,16 +113476,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *704 + - *705 - *71 responses: '200': description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-user-is-a-team-maintainer: *707 + response-if-user-is-a-team-maintainer: *708 '404': *6 x-github: githubCloudOnly: false @@ -113455,7 +113518,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *704 + - *705 - *71 requestBody: required: false @@ -113481,9 +113544,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-users-membership-with-team-is-now-pending: *708 + response-if-users-membership-with-team-is-now-pending: *709 '403': description: Forbidden if team synchronization is set up '422': @@ -113517,7 +113580,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -113545,7 +113608,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *704 + - *705 - *17 - *19 responses: @@ -113557,7 +113620,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 '404': *6 @@ -113587,15 +113650,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *704 - - *340 + - *705 - *341 + - *342 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *709 + schema: *710 examples: alternative-response-with-extra-repository-information: value: @@ -113746,9 +113809,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *704 - - *340 + - *705 - *341 + - *342 requestBody: required: false content: @@ -113798,9 +113861,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *704 - - *340 + - *705 - *341 + - *342 responses: '204': description: Response @@ -113825,7 +113888,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *704 + - *705 - *17 - *19 responses: @@ -113837,7 +113900,7 @@ paths: type: array items: *201 examples: - response-if-child-teams-exist: *710 + response-if-child-teams-exist: *711 headers: Link: *67 '404': *6 @@ -113870,7 +113933,7 @@ paths: application/json: schema: oneOf: - - &712 + - &713 title: Private User description: Private User type: object @@ -114120,7 +114183,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *711 + - *712 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -114280,7 +114343,7 @@ paths: description: Response content: application/json: - schema: *712 + schema: *713 examples: default: value: @@ -114483,9 +114546,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *252 examples: - default: *252 + default: *253 '304': *36 '500': *54 '401': *23 @@ -114624,17 +114687,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '401': *23 '403': *27 '404': *6 @@ -114678,7 +114741,7 @@ paths: type: integer secrets: type: array - items: &713 + items: &714 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -114720,7 +114783,7 @@ paths: - visibility - selected_repositories_url examples: - default: *464 + default: *465 headers: Link: *67 x-github: @@ -114798,7 +114861,7 @@ paths: description: Response content: application/json: - schema: *713 + schema: *714 examples: default: value: @@ -115088,15 +115151,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '304': *36 '500': *54 '401': *23 @@ -115122,7 +115185,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 requestBody: required: false content: @@ -115152,9 +115215,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '401': *23 '403': *27 '404': *6 @@ -115176,7 +115239,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '202': *38 '304': *36 @@ -115205,13 +115268,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '202': description: Response content: application/json: - schema: &714 + schema: &715 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -115264,7 +115327,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &715 + default: &716 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -115296,7 +115359,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *253 + - *254 - name: export_id in: path required: true @@ -115309,9 +115372,9 @@ paths: description: Response content: application/json: - schema: *714 + schema: *715 examples: - default: *715 + default: *716 '404': *6 x-github: githubCloudOnly: false @@ -115332,7 +115395,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *253 + - *254 responses: '200': description: Response @@ -115348,9 +115411,9 @@ paths: type: integer machines: type: array - items: *463 + items: *464 examples: - default: *716 + default: *717 '304': *36 '500': *54 '401': *23 @@ -115379,7 +115442,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *253 + - *254 requestBody: required: true content: @@ -115435,11 +115498,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *343 + repository: *344 machine: anyOf: - type: 'null' - - *463 + - *464 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -116236,15 +116299,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '304': *36 '500': *54 '400': *14 @@ -116276,15 +116339,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '500': *54 '401': *23 '403': *27 @@ -116314,9 +116377,9 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: &728 + default: &729 value: - id: 197 name: hello_docker @@ -116417,7 +116480,7 @@ paths: application/json: schema: type: array - items: &717 + items: &718 title: Email description: Email type: object @@ -116487,9 +116550,9 @@ paths: application/json: schema: type: array - items: *717 + items: *718 examples: - default: &730 + default: &731 value: - email: octocat@github.com verified: true @@ -116566,7 +116629,7 @@ paths: application/json: schema: type: array - items: *717 + items: *718 examples: default: value: @@ -116824,7 +116887,7 @@ paths: application/json: schema: type: array - items: &718 + items: &719 title: GPG Key description: A unique encryption key type: object @@ -116969,7 +117032,7 @@ paths: - subkeys - revoked examples: - default: &747 + default: &748 value: - id: 3 name: Octocat's GPG Key @@ -117054,9 +117117,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *719 examples: - default: &719 + default: &720 value: id: 3 name: Octocat's GPG Key @@ -117113,7 +117176,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &720 + - &721 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -117125,9 +117188,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *719 examples: - default: *719 + default: *720 '404': *6 '304': *36 '403': *27 @@ -117150,7 +117213,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *720 + - *721 responses: '204': description: Response @@ -117438,12 +117501,12 @@ paths: application/json: schema: anyOf: - - *238 + - *239 - type: object properties: {} additionalProperties: false examples: - default: *239 + default: *240 '204': description: Response when there are no restrictions x-github: @@ -117467,7 +117530,7 @@ paths: required: true content: application/json: - schema: *534 + schema: *535 examples: default: value: @@ -117478,7 +117541,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -117559,7 +117622,7 @@ paths: - closed - all default: open - - *249 + - *250 - name: sort description: What to sort results by. in: query @@ -117584,7 +117647,7 @@ paths: type: array items: *83 examples: - default: *250 + default: *251 headers: Link: *67 '404': *6 @@ -117617,7 +117680,7 @@ paths: application/json: schema: type: array - items: &721 + items: &722 title: Key description: Key type: object @@ -117720,9 +117783,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: - default: &722 + default: &723 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -117755,15 +117818,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *583 + - *584 responses: '200': description: Response content: application/json: - schema: *721 + schema: *722 examples: - default: *722 + default: *723 '404': *6 '304': *36 '403': *27 @@ -117786,7 +117849,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *583 + - *584 responses: '204': description: Response @@ -117819,7 +117882,7 @@ paths: application/json: schema: type: array - items: &723 + items: &724 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -117898,7 +117961,7 @@ paths: - account - plan examples: - default: &724 + default: &725 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -117960,9 +118023,9 @@ paths: application/json: schema: type: array - items: *723 + items: *724 examples: - default: *724 + default: *725 headers: Link: *67 '304': *36 @@ -118002,7 +118065,7 @@ paths: application/json: schema: type: array - items: *255 + items: *256 examples: default: value: @@ -118116,7 +118179,7 @@ paths: description: Response content: application/json: - schema: *255 + schema: *256 examples: default: value: @@ -118203,9 +118266,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *255 + schema: *256 examples: - default: &725 + default: &726 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -118252,9 +118315,9 @@ paths: processed asynchronously. content: application/json: - schema: *255 + schema: *256 examples: - default: *725 + default: *726 '403': *27 '404': *6 '422': *15 @@ -118283,7 +118346,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -118545,7 +118608,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -118725,7 +118788,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *258 + - *259 - name: exclude in: query required: false @@ -118738,7 +118801,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -118932,7 +118995,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *258 + - *259 responses: '302': description: Response @@ -118958,7 +119021,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *258 + - *259 responses: '204': description: Response @@ -118987,8 +119050,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *258 - - *726 + - *259 + - *727 responses: '204': description: Response @@ -119012,7 +119075,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *258 + - *259 - *17 - *19 responses: @@ -119024,7 +119087,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 '404': *6 @@ -119103,7 +119166,7 @@ paths: - docker - nuget - container - - *727 + - *728 - *19 - *17 responses: @@ -119113,10 +119176,10 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *728 - '400': *729 + default: *729 + '400': *730 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119136,16 +119199,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *265 - *266 + - *267 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: &748 + default: &749 value: id: 40201 name: octo-name @@ -119258,8 +119321,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *265 - *266 + - *267 responses: '204': description: Response @@ -119289,8 +119352,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *265 - *266 + - *267 - name: token description: package token schema: @@ -119322,8 +119385,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: - - *265 - *266 + - *267 - *19 - *17 - name: state @@ -119343,7 +119406,7 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: default: value: @@ -119392,15 +119455,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -119436,9 +119499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 responses: '204': description: Response @@ -119468,9 +119531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 responses: '204': description: Response @@ -119507,9 +119570,9 @@ paths: application/json: schema: type: array - items: *717 + items: *718 examples: - default: *730 + default: *731 headers: Link: *67 '304': *36 @@ -119622,7 +119685,7 @@ paths: type: array items: *79 examples: - default: &737 + default: &738 summary: Default response value: - id: 1296269 @@ -119940,9 +120003,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -119980,9 +120043,9 @@ paths: application/json: schema: type: array - items: *537 + items: *538 examples: - default: *731 + default: *732 headers: Link: *67 '304': *36 @@ -120005,7 +120068,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *242 + - *243 responses: '204': description: Response @@ -120028,7 +120091,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *242 + - *243 responses: '204': description: Response @@ -120061,7 +120124,7 @@ paths: application/json: schema: type: array - items: &732 + items: &733 title: Social account description: Social media account type: object @@ -120078,7 +120141,7 @@ paths: - provider - url examples: - default: &733 + default: &734 value: - provider: twitter url: https://twitter.com/github @@ -120141,9 +120204,9 @@ paths: application/json: schema: type: array - items: *732 + items: *733 examples: - default: *733 + default: *734 '422': *15 '304': *36 '404': *6 @@ -120231,7 +120294,7 @@ paths: application/json: schema: type: array - items: &734 + items: &735 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -120251,7 +120314,7 @@ paths: - title - created_at examples: - default: &765 + default: &766 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -120316,9 +120379,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: &735 + default: &736 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -120348,7 +120411,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: - - &736 + - &737 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -120360,9 +120423,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *735 + default: *736 '404': *6 '304': *36 '403': *27 @@ -120385,7 +120448,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: - - *736 + - *737 responses: '204': description: Response @@ -120414,7 +120477,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &766 + - &767 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 @@ -120439,11 +120502,11 @@ paths: type: array items: *79 examples: - default-response: *737 + default-response: *738 application/vnd.github.v3.star+json: schema: type: array - items: &767 + items: &768 title: Starred Repository description: Starred Repository type: object @@ -120599,8 +120662,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: - - *340 - *341 + - *342 responses: '204': description: Response if this repository is starred by you @@ -120628,8 +120691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -120653,8 +120716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -120689,7 +120752,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 '304': *36 @@ -120726,7 +120789,7 @@ paths: application/json: schema: type: array - items: *336 + items: *337 examples: default: value: @@ -120812,10 +120875,10 @@ paths: application/json: schema: oneOf: + - *713 - *712 - - *711 examples: - default-response: &741 + default-response: &742 summary: Default response value: login: octocat @@ -120850,7 +120913,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &742 + response-with-git-hub-plan-information: &743 summary: Response with GitHub plan information value: login: octocat @@ -120907,14 +120970,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &739 + - &740 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *281 + - *282 requestBody: required: true description: Details of the draft item to create in the project. @@ -120948,9 +121011,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: - draft_issue: *287 + draft_issue: *288 '304': *36 '403': *27 '401': *23 @@ -120973,7 +121036,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *738 + - *739 - *17 responses: '200': @@ -121008,8 +121071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *739 - - *281 + - *740 + - *282 requestBody: required: true content: @@ -121048,6 +121111,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -121083,17 +121187,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *740 + schema: *741 examples: table_view: summary: Response for creating a table view - value: *291 + value: *292 board_view: summary: Response for creating a board view with filter - value: *291 + value: *292 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *292 '304': *36 '403': *27 '401': *23 @@ -121135,11 +121239,11 @@ paths: application/json: schema: oneOf: + - *713 - *712 - - *711 examples: - default-response: *741 - response-with-git-hub-plan-information: *742 + default-response: *742 + response-with-git-hub-plan-information: *743 '404': *6 x-github: githubCloudOnly: false @@ -121189,8 +121293,8 @@ paths: required: - subject_digests examples: - default: *743 - withPredicateType: *744 + default: *744 + withPredicateType: *745 responses: '200': description: Response @@ -121244,7 +121348,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *745 + default: *746 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -121449,7 +121553,7 @@ paths: initiator: type: string examples: - default: *400 + default: *401 '201': description: Response content: @@ -121733,7 +121837,7 @@ paths: application/json: schema: *197 examples: - default: &746 + default: &747 summary: Example response for a user copilot space value: id: 42 @@ -121834,7 +121938,7 @@ paths: application/json: schema: *197 examples: - default: *746 + default: *747 '403': *27 '404': *6 x-github: @@ -121960,7 +122064,7 @@ paths: application/json: schema: *197 examples: - default: *746 + default: *747 '403': *27 '404': *6 '422': *15 @@ -122726,9 +122830,9 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *728 + default: *729 '403': *27 '401': *23 x-github: @@ -123112,9 +123216,9 @@ paths: application/json: schema: type: array - items: *718 + items: *719 examples: - default: *747 + default: *748 headers: Link: *67 x-github: @@ -123218,7 +123322,7 @@ paths: application/json: schema: *20 examples: - default: *533 + default: *534 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123343,7 +123447,7 @@ paths: - docker - nuget - container - - *727 + - *728 - *71 - *19 - *17 @@ -123354,12 +123458,12 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *728 + default: *729 '403': *27 '401': *23 - '400': *729 + '400': *730 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123379,17 +123483,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *265 - *266 + - *267 - *71 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *748 + default: *749 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -123410,8 +123514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *265 - *266 + - *267 - *71 responses: '204': @@ -123444,8 +123548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *265 - *266 + - *267 - *71 - name: token description: package token @@ -123478,8 +123582,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: - - *265 - *266 + - *267 - *71 responses: '200': @@ -123488,7 +123592,7 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: default: value: @@ -123546,16 +123650,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 - *71 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -123590,10 +123694,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *265 - *266 + - *267 - *71 - - *268 + - *269 responses: '204': description: Response @@ -123625,10 +123729,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *265 - *266 + - *267 - *71 - - *268 + - *269 responses: '204': description: Response @@ -123669,9 +123773,9 @@ paths: application/json: schema: type: array - items: *279 + items: *280 examples: - default: *280 + default: *281 headers: Link: *67 '304': *36 @@ -123693,16 +123797,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *281 + - *282 - *71 responses: '200': description: Response content: application/json: - schema: *279 + schema: *280 examples: - default: *280 + default: *281 headers: Link: *67 '304': *36 @@ -123724,7 +123828,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *281 + - *282 - *71 - *17 - *46 @@ -123736,9 +123840,9 @@ paths: application/json: schema: type: array - items: *284 + items: *285 examples: - default: *749 + default: *750 headers: Link: *67 '304': *36 @@ -123760,7 +123864,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *71 - - *281 + - *282 requestBody: required: true content: @@ -123798,7 +123902,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *750 + items: *751 required: - name - data_type @@ -123814,7 +123918,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *751 + iteration_configuration: *752 required: - name - data_type @@ -123836,20 +123940,20 @@ paths: value: name: Due date data_type: date - single_select_field: *752 - iteration_field: *753 + single_select_field: *753 + iteration_field: *754 responses: '201': description: Response content: application/json: - schema: *284 + schema: *285 examples: - text_field: *754 - number_field: *755 - date_field: *756 - single_select_field: *757 - iteration_field: *758 + text_field: *755 + number_field: *756 + date_field: *757 + single_select_field: *758 + iteration_field: *759 '304': *36 '403': *27 '401': *23 @@ -123870,17 +123974,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *281 - - *759 + - *282 + - *760 - *71 responses: '200': description: Response content: application/json: - schema: *284 + schema: *285 examples: - default: *760 + default: *761 headers: Link: *67 '304': *36 @@ -123903,7 +124007,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *281 + - *282 - *71 - *46 - *47 @@ -123936,9 +124040,9 @@ paths: application/json: schema: type: array - items: *288 + items: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -123960,7 +124064,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *71 - - *281 + - *282 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -124030,22 +124134,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *288 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *288 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *288 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *288 '304': *36 '403': *27 '401': *23 @@ -124065,9 +124169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *281 + - *282 - *71 - - *290 + - *291 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -124087,9 +124191,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -124110,9 +124214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *281 + - *282 - *71 - - *290 + - *291 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -124185,13 +124289,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *290 + number_field: *290 + date_field: *290 + single_select_field: *290 + iteration_field: *290 '401': *23 '403': *27 '404': *6 @@ -124211,9 +124315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *281 + - *282 - *71 - - *290 + - *291 responses: '204': description: Response @@ -124235,9 +124339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *281 + - *282 - *71 - - *761 + - *762 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -124263,9 +124367,9 @@ paths: application/json: schema: type: array - items: *288 + items: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -124486,7 +124590,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -124776,7 +124880,7 @@ paths: parameters: - *71 - *117 - - *762 + - *763 - *119 responses: '200': @@ -124875,9 +124979,9 @@ paths: - *117 - *118 - *119 - - *763 - - *122 - *764 + - *122 + - *765 responses: '200': description: Response when getting a billing usage summary @@ -125011,9 +125115,9 @@ paths: application/json: schema: type: array - items: *732 + items: *733 examples: - default: *733 + default: *734 headers: Link: *67 x-github: @@ -125043,9 +125147,9 @@ paths: application/json: schema: type: array - items: *734 + items: *735 examples: - default: *765 + default: *766 headers: Link: *67 x-github: @@ -125070,7 +125174,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *71 - - *766 + - *767 - *61 - *17 - *19 @@ -125082,11 +125186,11 @@ paths: schema: anyOf: - type: array - items: *767 + items: *768 - type: array items: *79 examples: - default-response: *737 + default-response: *738 headers: Link: *67 x-github: @@ -125117,7 +125221,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -125246,7 +125350,7 @@ webhooks: type: string enum: - disabled - enterprise: &768 + enterprise: &769 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -125315,7 +125419,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &769 + installation: &770 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -125336,7 +125440,7 @@ webhooks: required: - id - node_id - organization: &770 + organization: &771 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -125409,7 +125513,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &771 + repository: &772 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -126335,10 +126439,10 @@ webhooks: type: string enum: - enabled - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -126414,11 +126518,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - rule: &772 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + rule: &773 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) @@ -126641,11 +126745,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - rule: *772 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + rule: *773 sender: *4 required: - action @@ -126833,11 +126937,11 @@ webhooks: - everyone required: - from - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - rule: *772 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + rule: *773 sender: *4 required: - action @@ -126921,7 +127025,7 @@ webhooks: type: string enum: - completed - check_run: &774 + check_run: &775 title: CheckRun description: A check performed on the code of a given code change type: object @@ -127031,7 +127135,7 @@ webhooks: - examples: - neutral - deployment: *773 + deployment: *774 details_url: type: string examples: @@ -127129,10 +127233,10 @@ webhooks: - output - app - pull_requests - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 sender: *4 required: - check_run @@ -127523,11 +127627,11 @@ webhooks: type: string enum: - created - check_run: *774 - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + check_run: *775 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 sender: *4 required: - check_run @@ -127921,11 +128025,11 @@ webhooks: type: string enum: - requested_action - check_run: *774 - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + check_run: *775 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 requested_action: description: The action requested by the user. type: object @@ -128328,11 +128432,11 @@ webhooks: type: string enum: - rerequested - check_run: *774 - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + check_run: *775 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 sender: *4 required: - check_run @@ -129317,10 +129421,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -130034,10 +130138,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -130745,10 +130849,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -130917,7 +131021,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131069,20 +131173,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &775 + commit_oid: &776 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: *768 - installation: *769 - organization: *770 - ref: &776 + enterprise: *769 + installation: *770 + organization: *771 + ref: &777 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: *771 + repository: *772 sender: *4 required: - action @@ -131249,7 +131353,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131490,12 +131594,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -131593,7 +131697,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131778,12 +131882,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -131952,7 +132056,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132129,12 +132233,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -132235,7 +132339,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132424,9 +132528,9 @@ webhooks: type: - string - 'null' - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -132434,7 +132538,7 @@ webhooks: type: - string - 'null' - repository: *771 + repository: *772 sender: *4 required: - action @@ -132533,7 +132637,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132680,12 +132784,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -132854,7 +132958,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -133006,10 +133110,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -133269,10 +133373,10 @@ webhooks: - updated_at - author_association - body - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -133353,18 +133457,18 @@ webhooks: type: - string - 'null' - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *770 - pusher_type: &777 + organization: *771 + pusher_type: &778 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &778 + ref: &779 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -133374,7 +133478,7 @@ webhooks: enum: - tag - branch - repository: *771 + repository: *772 sender: *4 required: - ref @@ -133456,10 +133560,10 @@ webhooks: type: string enum: - created - definition: *292 - enterprise: *768 - installation: *769 - organization: *770 + definition: *293 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -133544,9 +133648,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -133623,10 +133727,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *292 - enterprise: *768 - installation: *769 - organization: *770 + definition: *293 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -133703,10 +133807,10 @@ webhooks: type: string enum: - updated - definition: *292 - enterprise: *768 - installation: *769 - organization: *770 + definition: *293 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -133783,19 +133887,19 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - repository: *771 - organization: *770 + enterprise: *769 + installation: *770 + repository: *772 + organization: *771 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *296 + items: *297 old_property_values: type: array description: The old custom property values for the repository. - items: *296 + items: *297 required: - action - repository @@ -133871,18 +133975,18 @@ webhooks: title: delete event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - pusher_type: *777 - ref: *778 + enterprise: *769 + installation: *770 + organization: *771 + pusher_type: *778 + ref: *779 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *771 + repository: *772 sender: *4 required: - ref @@ -133962,11 +134066,11 @@ webhooks: type: string enum: - assignees_changed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134046,11 +134150,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134131,11 +134235,11 @@ webhooks: type: string enum: - auto_reopened - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134216,11 +134320,11 @@ webhooks: type: string enum: - created - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134299,11 +134403,11 @@ webhooks: type: string enum: - dismissed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134382,11 +134486,11 @@ webhooks: type: string enum: - fixed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134466,11 +134570,11 @@ webhooks: type: string enum: - reintroduced - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134549,11 +134653,11 @@ webhooks: type: string enum: - reopened - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134630,9 +134734,9 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - key: &779 + enterprise: *769 + installation: *770 + key: &780 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -134670,8 +134774,8 @@ webhooks: - verified - created_at - read_only - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -134748,11 +134852,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - key: *779 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + key: *780 + organization: *771 + repository: *772 sender: *4 required: - action @@ -135319,12 +135423,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: &783 + workflow: &784 title: Workflow type: - object @@ -136075,13 +136179,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *500 + - *501 pull_requests: type: array - items: *602 - repository: *771 - organization: *770 - installation: *769 + items: *603 + repository: *772 + organization: *771 + installation: *770 sender: *4 responses: '200': @@ -136152,7 +136256,7 @@ webhooks: type: string enum: - approved - approver: &780 + approver: &781 type: object properties: avatar_url: @@ -136195,11 +136299,11 @@ webhooks: type: string comment: type: string - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - reviewers: &781 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + reviewers: &782 type: array items: type: object @@ -136280,7 +136384,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &782 + workflow_job_run: &783 type: object properties: conclusion: @@ -137026,18 +137130,18 @@ webhooks: type: string enum: - rejected - approver: *780 + approver: *781 comment: type: string - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - reviewers: *781 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + reviewers: *782 sender: *4 since: type: string - workflow_job_run: *782 + workflow_job_run: *783 workflow_job_runs: type: array items: @@ -137754,13 +137858,13 @@ webhooks: type: string enum: - requested - enterprise: *768 + enterprise: *769 environment: type: string - installation: *769 - organization: *770 - repository: *771 - requestor: &788 + installation: *770 + organization: *771 + repository: *772 + requestor: &789 title: User type: - object @@ -139693,12 +139797,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: *783 + workflow: *784 workflow_run: title: Deployment Workflow Run type: @@ -140389,7 +140493,7 @@ webhooks: type: string enum: - answered - answer: &786 + answer: &787 type: object properties: author_association: @@ -140549,11 +140653,11 @@ webhooks: - created_at - updated_at - body - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -140680,11 +140784,11 @@ webhooks: - from required: - category - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -140767,11 +140871,11 @@ webhooks: type: string enum: - closed - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -140853,7 +140957,7 @@ webhooks: type: string enum: - created - comment: &785 + comment: &786 type: object properties: author_association: @@ -141013,11 +141117,11 @@ webhooks: - updated_at - body - reactions - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141100,12 +141204,12 @@ webhooks: type: string enum: - deleted - comment: *785 - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + comment: *786 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141200,12 +141304,12 @@ webhooks: - from required: - body - comment: *785 - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + comment: *786 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141289,11 +141393,11 @@ webhooks: type: string enum: - created - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141375,11 +141479,11 @@ webhooks: type: string enum: - deleted - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141479,11 +141583,11 @@ webhooks: type: string required: - from - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141565,10 +141669,10 @@ webhooks: type: string enum: - labeled - discussion: *784 - enterprise: *768 - installation: *769 - label: &787 + discussion: *785 + enterprise: *769 + installation: *770 + label: &788 title: Label type: object properties: @@ -141601,8 +141705,8 @@ webhooks: - color - default - description - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141685,11 +141789,11 @@ webhooks: type: string enum: - locked - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141771,11 +141875,11 @@ webhooks: type: string enum: - pinned - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141857,11 +141961,11 @@ webhooks: type: string enum: - reopened - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141946,16 +142050,16 @@ webhooks: changes: type: object properties: - new_discussion: *784 - new_repository: *771 + new_discussion: *785 + new_repository: *772 required: - new_discussion - new_repository - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142038,10 +142142,10 @@ webhooks: type: string enum: - unanswered - discussion: *784 - old_answer: *786 - organization: *770 - repository: *771 + discussion: *785 + old_answer: *787 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142123,12 +142227,12 @@ webhooks: type: string enum: - unlabeled - discussion: *784 - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142211,11 +142315,11 @@ webhooks: type: string enum: - unlocked - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142297,11 +142401,11 @@ webhooks: type: string enum: - unpinned - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142374,7 +142478,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *768 + enterprise: *769 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -143052,9 +143156,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - forkee @@ -143200,9 +143304,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pages: description: The pages that were updated. type: array @@ -143240,7 +143344,7 @@ webhooks: - action - sha - html_url - repository: *771 + repository: *772 sender: *4 required: - pages @@ -143316,10 +143420,10 @@ webhooks: type: string enum: - created - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: &789 + organization: *771 + repositories: &790 description: An array of repository objects that the installation can access. type: array @@ -143345,8 +143449,8 @@ webhooks: - name - full_name - private - repository: *771 - requester: *788 + repository: *772 + requester: *789 sender: *4 required: - action @@ -143421,11 +143525,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -143502,11 +143606,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -143583,10 +143687,10 @@ webhooks: type: string enum: - added - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories_added: &790 + organization: *771 + repositories_added: &791 description: An array of repository objects, which were added to the installation. type: array @@ -143632,15 +143736,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *771 - repository_selection: &791 + repository: *772 + repository_selection: &792 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *788 + requester: *789 sender: *4 required: - action @@ -143719,10 +143823,10 @@ webhooks: type: string enum: - removed - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories_added: *790 + organization: *771 + repositories_added: *791 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -143749,9 +143853,9 @@ webhooks: - name - full_name - private - repository: *771 - repository_selection: *791 - requester: *788 + repository: *772 + repository_selection: *792 + requester: *789 sender: *4 required: - action @@ -143830,11 +143934,11 @@ webhooks: type: string enum: - suspend - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -144016,10 +144120,10 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 target_type: type: string @@ -144098,11 +144202,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -144268,11 +144372,11 @@ webhooks: pin: anyOf: - type: 'null' - - *568 + - *569 minimized: anyOf: - type: 'null' - - *569 + - *570 user: title: User type: @@ -144358,8 +144462,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -145171,8 +145275,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145189,7 +145293,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -145533,8 +145637,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -145614,7 +145718,7 @@ webhooks: type: string enum: - deleted - comment: &792 + comment: &793 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -145771,11 +145875,11 @@ webhooks: pin: anyOf: - type: 'null' - - *568 + - *569 minimized: anyOf: - type: 'null' - - *569 + - *570 required: - url - html_url @@ -145789,8 +145893,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -146598,8 +146702,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146616,7 +146720,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -146962,8 +147066,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -147043,7 +147147,7 @@ webhooks: type: string enum: - edited - changes: &816 + changes: &817 description: The changes to the comment. type: object properties: @@ -147055,9 +147159,9 @@ webhooks: type: string required: - from - comment: *792 - enterprise: *768 - installation: *769 + comment: *793 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -147868,8 +147972,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147886,7 +147990,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -148230,8 +148334,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -148312,9 +148416,9 @@ webhooks: type: string enum: - pinned - comment: *792 - enterprise: *768 - installation: *769 + comment: *793 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -149127,8 +149231,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149145,7 +149249,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -149491,8 +149595,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -149572,9 +149676,9 @@ webhooks: type: string enum: - unpinned - comment: *792 - enterprise: *768 - installation: *769 + comment: *793 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -150387,8 +150491,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150405,7 +150509,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -150751,8 +150855,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -150841,9 +150945,9 @@ webhooks: type: number blocking_issue: *83 blocking_issue_repo: *79 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -150932,9 +151036,9 @@ webhooks: type: number blocking_issue: *83 blocking_issue_repo: *79 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -151022,9 +151126,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -151113,9 +151217,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -151195,10 +151299,10 @@ webhooks: type: string enum: - assigned - assignee: *788 - enterprise: *768 - installation: *769 - issue: &793 + assignee: *789 + enterprise: *769 + installation: *770 + issue: &794 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -152009,11 +152113,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152030,7 +152134,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -152133,8 +152237,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -152214,8 +152318,8 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -153031,11 +153135,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153052,7 +153156,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -153298,8 +153402,8 @@ webhooks: required: - state - closed_at - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -153378,8 +153482,8 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154186,11 +154290,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154207,7 +154311,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -154309,8 +154413,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -154389,8 +154493,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155220,11 +155324,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155241,7 +155345,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -155322,7 +155426,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &794 + milestone: &795 title: Milestone description: A collection of related issues and pull requests. type: object @@ -155465,8 +155569,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -155565,8 +155669,8 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156377,11 +156481,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156395,7 +156499,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *247 title: description: Title of the issue type: string @@ -156501,9 +156605,9 @@ webhooks: - active_lock_reason - body - reactions - label: *787 - organization: *770 - repository: *771 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -156583,9 +156687,9 @@ webhooks: type: string enum: - field_added - enterprise: *768 - installation: *769 - issue: *793 + enterprise: *769 + installation: *770 + issue: *794 issue_field: type: object description: The issue field whose value was set or updated on the @@ -156751,8 +156855,8 @@ webhooks: - id required: - from - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -156832,9 +156936,9 @@ webhooks: type: string enum: - field_removed - enterprise: *768 - installation: *769 - issue: *793 + enterprise: *769 + installation: *770 + issue: *794 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -156921,8 +157025,8 @@ webhooks: - 'null' required: - id - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -157002,8 +157106,8 @@ webhooks: type: string enum: - labeled - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -157813,11 +157917,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157831,7 +157935,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *247 title: description: Title of the issue type: string @@ -157937,9 +158041,9 @@ webhooks: - active_lock_reason - body - reactions - label: *787 - organization: *770 - repository: *771 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -158019,8 +158123,8 @@ webhooks: type: string enum: - locked - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158855,11 +158959,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158873,7 +158977,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *247 title: description: Title of the issue type: string @@ -158956,8 +159060,8 @@ webhooks: format: uri user_view_type: type: string - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -159036,8 +159140,8 @@ webhooks: type: string enum: - milestoned - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159866,11 +159970,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159887,7 +159991,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -159967,9 +160071,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *794 - organization: *770 - repository: *771 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -160856,11 +160960,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160960,7 +161064,7 @@ webhooks: required: - login - id - type: *246 + type: *247 required: - id - number @@ -161452,8 +161556,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -162260,11 +162364,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162281,7 +162385,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -162387,8 +162491,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -162468,9 +162572,9 @@ webhooks: type: string enum: - pinned - enterprise: *768 - installation: *769 - issue: &795 + enterprise: *769 + installation: *770 + issue: &796 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -163275,11 +163379,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163296,7 +163400,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -163398,8 +163502,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -163478,8 +163582,8 @@ webhooks: type: string enum: - reopened - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -164312,11 +164416,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164413,9 +164517,9 @@ webhooks: format: uri user_view_type: type: string - type: *246 - organization: *770 - repository: *771 + type: *247 + organization: *771 + repository: *772 sender: *4 required: - action @@ -165303,11 +165407,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165324,7 +165428,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -165917,11 +166021,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *768 - installation: *769 - issue: *795 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *796 + organization: *771 + repository: *772 sender: *4 required: - action @@ -166001,12 +166105,12 @@ webhooks: type: string enum: - typed - enterprise: *768 - installation: *769 - issue: *793 - type: *246 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + type: *247 + organization: *771 + repository: *772 sender: *4 required: - action @@ -166087,7 +166191,7 @@ webhooks: type: string enum: - unassigned - assignee: &819 + assignee: &820 title: User type: - object @@ -166159,11 +166263,11 @@ webhooks: required: - login - id - enterprise: *768 - installation: *769 - issue: *793 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + organization: *771 + repository: *772 sender: *4 required: - action @@ -166242,12 +166346,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *768 - installation: *769 - issue: *793 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -166327,8 +166431,8 @@ webhooks: type: string enum: - unlocked - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -167161,11 +167265,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167182,7 +167286,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -167262,8 +167366,8 @@ webhooks: format: uri user_view_type: type: string - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167343,11 +167447,11 @@ webhooks: type: string enum: - unpinned - enterprise: *768 - installation: *769 - issue: *795 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *796 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167426,12 +167530,12 @@ webhooks: type: string enum: - untyped - enterprise: *768 - installation: *769 - issue: *793 - type: *246 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + type: *247 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167511,11 +167615,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167593,11 +167697,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167707,11 +167811,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167793,9 +167897,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: &796 + enterprise: *769 + installation: *770 + marketplace_purchase: &797 title: Marketplace Purchase type: object required: @@ -167883,8 +167987,8 @@ webhooks: type: integer unit_count: type: integer - organization: *770 - previous_marketplace_purchase: &797 + organization: *771 + previous_marketplace_purchase: &798 title: Marketplace Purchase type: object properties: @@ -167968,7 +168072,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *771 + repository: *772 sender: *4 required: - action @@ -168048,10 +168152,10 @@ webhooks: - changed effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: *796 - organization: *770 + enterprise: *769 + installation: *770 + marketplace_purchase: *797 + organization: *771 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -168139,7 +168243,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *771 + repository: *772 sender: *4 required: - action @@ -168221,10 +168325,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: *796 - organization: *770 + enterprise: *769 + installation: *770 + marketplace_purchase: *797 + organization: *771 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -168310,7 +168414,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *771 + repository: *772 sender: *4 required: - action @@ -168391,8 +168495,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 marketplace_purchase: title: Marketplace Purchase type: object @@ -168478,9 +168582,9 @@ webhooks: type: integer unit_count: type: integer - organization: *770 - previous_marketplace_purchase: *797 - repository: *771 + organization: *771 + previous_marketplace_purchase: *798 + repository: *772 sender: *4 required: - action @@ -168560,12 +168664,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: *796 - organization: *770 - previous_marketplace_purchase: *797 - repository: *771 + enterprise: *769 + installation: *770 + marketplace_purchase: *797 + organization: *771 + previous_marketplace_purchase: *798 + repository: *772 sender: *4 required: - action @@ -168667,11 +168771,11 @@ webhooks: type: string required: - to - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168773,11 +168877,11 @@ webhooks: type: - string - 'null' - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168856,11 +168960,11 @@ webhooks: type: string enum: - removed - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168938,11 +169042,11 @@ webhooks: type: string enum: - added - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 scope: description: The scope of the membership. Currently, can only be `team`. @@ -169020,7 +169124,7 @@ webhooks: required: - login - id - team: &798 + team: &799 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -169250,11 +169354,11 @@ webhooks: type: string enum: - removed - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 scope: description: The scope of the membership. Currently, can only be `team`. @@ -169333,7 +169437,7 @@ webhooks: required: - login - id - team: *798 + team: *799 required: - action - scope @@ -169415,8 +169519,8 @@ webhooks: type: string enum: - checks_requested - installation: *769 - merge_group: &799 + installation: *770 + merge_group: &800 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -169435,15 +169539,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *420 + head_commit: *421 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169529,10 +169633,10 @@ webhooks: - merged - invalidated - dequeued - installation: *769 - merge_group: *799 - organization: *770 - repository: *771 + installation: *770 + merge_group: *800 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169605,7 +169709,7 @@ webhooks: type: string enum: - deleted - enterprise: *768 + enterprise: *769 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -169714,12 +169818,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *769 - organization: *770 + installation: *770 + organization: *771 repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -169799,11 +169903,11 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 - milestone: *794 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169882,9 +169986,9 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - milestone: &800 + enterprise: *769 + installation: *770 + milestone: &801 title: Milestone description: A collection of related issues and pull requests. type: object @@ -170026,8 +170130,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170106,11 +170210,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - milestone: *794 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170220,11 +170324,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - milestone: *794 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170304,11 +170408,11 @@ webhooks: type: string enum: - opened - enterprise: *768 - installation: *769 - milestone: *800 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *801 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170387,11 +170491,11 @@ webhooks: type: string enum: - blocked - blocked_user: *788 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + blocked_user: *789 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170470,11 +170574,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *788 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + blocked_user: *789 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170553,9 +170657,9 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - membership: &801 + enterprise: *769 + installation: *770 + membership: &802 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -170665,8 +170769,8 @@ webhooks: - role - organization_url - user - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170744,11 +170848,11 @@ webhooks: type: string enum: - member_added - enterprise: *768 - installation: *769 - membership: *801 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + membership: *802 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170827,8 +170931,8 @@ webhooks: type: string enum: - member_invited - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -170950,10 +171054,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 - user: *788 + user: *789 required: - action - invitation @@ -171031,11 +171135,11 @@ webhooks: type: string enum: - member_removed - enterprise: *768 - installation: *769 - membership: *801 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + membership: *802 + organization: *771 + repository: *772 sender: *4 required: - action @@ -171122,11 +171226,11 @@ webhooks: properties: from: type: string - enterprise: *768 - installation: *769 - membership: *801 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + membership: *802 + organization: *771 + repository: *772 sender: *4 required: - action @@ -171203,9 +171307,9 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 package: description: Information about the package. type: object @@ -171728,7 +171832,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &802 + items: &803 title: Ruby Gems metadata type: object properties: @@ -171825,7 +171929,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -171901,9 +172005,9 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 package: description: Information about the package. type: object @@ -172265,7 +172369,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *802 + items: *803 source_url: type: string format: uri @@ -172336,7 +172440,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -172516,12 +172620,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *768 + enterprise: *769 id: type: integer - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - id @@ -172598,7 +172702,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &803 + personal_access_token_request: &804 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -172748,10 +172852,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *768 - organization: *770 + enterprise: *769 + organization: *771 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -172828,11 +172932,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *803 - enterprise: *768 - organization: *770 + personal_access_token_request: *804 + enterprise: *769 + organization: *771 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -172908,11 +173012,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *803 - enterprise: *768 - organization: *770 + personal_access_token_request: *804 + enterprise: *769 + organization: *771 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -172987,11 +173091,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *803 - organization: *770 - enterprise: *768 + personal_access_token_request: *804 + organization: *771 + enterprise: *769 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -173096,7 +173200,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *804 + last_response: *805 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -173128,8 +173232,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 zen: description: Random string of GitHub zen. @@ -173374,10 +173478,10 @@ webhooks: - from required: - note - enterprise: *768 - installation: *769 - organization: *770 - project_card: &805 + enterprise: *769 + installation: *770 + organization: *771 + project_card: &806 title: Project Card type: object properties: @@ -173500,7 +173604,7 @@ webhooks: - creator - created_at - updated_at - repository: *771 + repository: *772 sender: *4 required: - action @@ -173581,11 +173685,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - project_card: *805 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_card: *806 + repository: *772 sender: *4 required: - action @@ -173665,9 +173769,9 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 project_card: title: Project Card type: object @@ -173797,7 +173901,7 @@ webhooks: repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -173891,11 +173995,11 @@ webhooks: - from required: - note - enterprise: *768 - installation: *769 - organization: *770 - project_card: *805 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_card: *806 + repository: *772 sender: *4 required: - action @@ -173989,9 +174093,9 @@ webhooks: - from required: - column_id - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 project_card: allOf: - title: Project Card @@ -174188,7 +174292,7 @@ webhooks: type: string required: - after_id - repository: *771 + repository: *772 sender: *4 required: - action @@ -174268,10 +174372,10 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 - organization: *770 - project: &807 + enterprise: *769 + installation: *770 + organization: *771 + project: &808 title: Project type: object properties: @@ -174398,7 +174502,7 @@ webhooks: - creator - created_at - updated_at - repository: *771 + repository: *772 sender: *4 required: - action @@ -174478,10 +174582,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - project_column: &806 + enterprise: *769 + installation: *770 + organization: *771 + project_column: &807 title: Project Column type: object properties: @@ -174521,7 +174625,7 @@ webhooks: - name - created_at - updated_at - repository: *771 + repository: *772 sender: *4 required: - action @@ -174600,14 +174704,14 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - project_column: *806 + enterprise: *769 + installation: *770 + organization: *771 + project_column: *807 repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -174696,11 +174800,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - project_column: *806 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_column: *807 + repository: *772 sender: *4 required: - action @@ -174780,11 +174884,11 @@ webhooks: type: string enum: - moved - enterprise: *768 - installation: *769 - organization: *770 - project_column: *806 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_column: *807 + repository: *772 sender: *4 required: - action @@ -174864,11 +174968,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - project: *807 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 + repository: *772 sender: *4 required: - action @@ -174948,14 +175052,14 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - project: *807 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -175056,11 +175160,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - project: *807 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 + repository: *772 sender: *4 required: - action @@ -175139,11 +175243,11 @@ webhooks: type: string enum: - reopened - enterprise: *768 - installation: *769 - organization: *770 - project: *807 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 + repository: *772 sender: *4 required: - action @@ -175224,9 +175328,9 @@ webhooks: type: string enum: - closed - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -175307,9 +175411,9 @@ webhooks: type: string enum: - created - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -175390,9 +175494,9 @@ webhooks: type: string enum: - deleted - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -175513,9 +175617,9 @@ webhooks: type: string to: type: string - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -175598,7 +175702,7 @@ webhooks: type: string enum: - archived - changes: &811 + changes: &812 type: object properties: archived_at: @@ -175614,9 +175718,9 @@ webhooks: - string - 'null' format: date-time - installation: *769 - organization: *770 - projects_v2_item: &808 + installation: *770 + organization: *771 + projects_v2_item: &809 title: Projects v2 Item description: An item belonging to a project type: object @@ -175634,7 +175738,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *285 + content_type: *286 creator: *4 created_at: type: string @@ -175756,9 +175860,9 @@ webhooks: - 'null' to: type: string - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -175840,9 +175944,9 @@ webhooks: type: string enum: - created - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -175923,9 +176027,9 @@ webhooks: type: string enum: - deleted - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -176030,7 +176134,7 @@ webhooks: oneOf: - type: string - type: integer - - &809 + - &810 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -176054,7 +176158,7 @@ webhooks: required: - id - name - - &810 + - &811 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -176094,8 +176198,8 @@ webhooks: oneOf: - type: string - type: integer - - *809 - *810 + - *811 type: - 'null' - string @@ -176118,9 +176222,9 @@ webhooks: - 'null' required: - body - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -176217,9 +176321,9 @@ webhooks: type: - string - 'null' - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -176302,10 +176406,10 @@ webhooks: type: string enum: - restored - changes: *811 - installation: *769 - organization: *770 - projects_v2_item: *808 + changes: *812 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -176387,9 +176491,9 @@ webhooks: type: string enum: - reopened - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -176470,9 +176574,9 @@ webhooks: type: string enum: - created - installation: *769 - organization: *770 - projects_v2_status_update: *812 + installation: *770 + organization: *771 + projects_v2_status_update: *813 sender: *4 required: - action @@ -176553,9 +176657,9 @@ webhooks: type: string enum: - deleted - installation: *769 - organization: *770 - projects_v2_status_update: *812 + installation: *770 + organization: *771 + projects_v2_status_update: *813 sender: *4 required: - action @@ -176701,9 +176805,9 @@ webhooks: - string - 'null' format: date - installation: *769 - organization: *770 - projects_v2_status_update: *812 + installation: *770 + organization: *771 + projects_v2_status_update: *813 sender: *4 required: - action @@ -176774,10 +176878,10 @@ webhooks: title: public event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - repository @@ -176854,13 +176958,13 @@ webhooks: type: string enum: - assigned - assignee: *788 - enterprise: *768 - installation: *769 - number: &813 + assignee: *789 + enterprise: *769 + installation: *770 + number: &814 description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -179103,7 +179207,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -179232,7 +179336,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -179314,11 +179418,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -181552,7 +181656,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -181683,7 +181787,7 @@ webhooks: - draft reason: type: string - repository: *771 + repository: *772 sender: *4 required: - action @@ -181765,11 +181869,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -184003,7 +184107,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -184134,7 +184238,7 @@ webhooks: - draft reason: type: string - repository: *771 + repository: *772 sender: *4 required: - action @@ -184216,13 +184320,13 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: &814 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: &815 allOf: - - *602 + - *603 - type: object properties: allow_auto_merge: @@ -184284,7 +184388,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *771 + repository: *772 sender: *4 required: - action @@ -184365,12 +184469,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -184450,11 +184554,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *768 - milestone: *282 - number: *813 - organization: *770 - pull_request: &815 + enterprise: *769 + milestone: *283 + number: *814 + organization: *771 + pull_request: &816 title: Pull Request type: object properties: @@ -186675,7 +186779,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -186804,7 +186908,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -186883,11 +186987,11 @@ webhooks: type: string enum: - dequeued - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -189112,7 +189216,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -189256,7 +189360,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *771 + repository: *772 sender: *4 required: - action @@ -189380,12 +189484,12 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -189465,11 +189569,11 @@ webhooks: type: string enum: - enqueued - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -191694,7 +191798,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -191823,7 +191927,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -191903,11 +192007,11 @@ webhooks: type: string enum: - labeled - enterprise: *768 - installation: *769 - label: *787 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + label: *788 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -194149,7 +194253,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -194278,7 +194382,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -194359,10 +194463,10 @@ webhooks: type: string enum: - locked - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -196602,7 +196706,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -196731,7 +196835,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -196811,12 +196915,12 @@ webhooks: type: string enum: - milestoned - enterprise: *768 - milestone: *282 - number: *813 - organization: *770 - pull_request: *815 - repository: *771 + enterprise: *769 + milestone: *283 + number: *814 + organization: *771 + pull_request: *816 + repository: *772 sender: *4 required: - action @@ -196895,12 +196999,12 @@ webhooks: type: string enum: - opened - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -196981,12 +197085,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -197066,12 +197170,12 @@ webhooks: type: string enum: - reopened - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -197446,9 +197550,9 @@ webhooks: - start_side - side - reactions - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: type: object properties: @@ -199577,7 +199681,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -199701,7 +199805,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *771 + repository: *772 sender: *4 required: - action @@ -199781,7 +199885,7 @@ webhooks: type: string enum: - deleted - comment: &817 + comment: &818 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -200074,9 +200178,9 @@ webhooks: - start_side - side - reactions - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: type: object properties: @@ -202193,7 +202297,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -202317,7 +202421,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *771 + repository: *772 sender: *4 required: - action @@ -202397,11 +202501,11 @@ webhooks: type: string enum: - edited - changes: *816 - comment: *817 - enterprise: *768 - installation: *769 - organization: *770 + changes: *817 + comment: *818 + enterprise: *769 + installation: *770 + organization: *771 pull_request: type: object properties: @@ -204521,7 +204625,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -204645,7 +204749,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *771 + repository: *772 sender: *4 required: - action @@ -204726,9 +204830,9 @@ webhooks: type: string enum: - dismissed - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -206858,7 +206962,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -206984,7 +207088,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 + repository: *772 review: description: The review that was affected. type: object @@ -207235,9 +207339,9 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -209351,8 +209455,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 - review: &818 + repository: *772 + review: &819 description: The review that was affected. type: object properties: @@ -209590,12 +209694,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -211836,7 +211940,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -211965,7 +212069,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_reviewer: title: User type: @@ -212051,12 +212155,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -214304,7 +214408,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -214433,7 +214537,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_team: title: Team description: Groups of organization members that gives permissions @@ -214628,12 +214732,12 @@ webhooks: type: string enum: - review_requested - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -216875,7 +216979,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -217005,7 +217109,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_reviewer: title: User type: @@ -217092,12 +217196,12 @@ webhooks: type: string enum: - review_requested - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -219330,7 +219434,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -219460,7 +219564,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_team: title: Team description: Groups of organization members that gives permissions @@ -219644,9 +219748,9 @@ webhooks: type: string enum: - submitted - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -221779,7 +221883,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -221905,8 +222009,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 - review: *818 + repository: *772 + review: *819 sender: *4 required: - action @@ -221986,9 +222090,9 @@ webhooks: type: string enum: - resolved - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -224016,7 +224120,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -224142,7 +224246,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 + repository: *772 sender: *4 thread: type: object @@ -224539,9 +224643,9 @@ webhooks: type: string enum: - unresolved - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -226553,7 +226657,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -226678,7 +226782,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 + repository: *772 sender: *4 thread: type: object @@ -227071,11 +227175,11 @@ webhooks: type: string enum: - stacked - enterprise: *768 - installation: *769 - stack: *599 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + stack: *600 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -229317,7 +229421,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -229446,7 +229550,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -229532,10 +229636,10 @@ webhooks: type: string before: type: string - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -231764,7 +231868,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -231893,7 +231997,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -231975,11 +232079,11 @@ webhooks: type: string enum: - unassigned - assignee: *819 - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + assignee: *820 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -234223,7 +234327,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -234352,7 +234456,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -234431,11 +234535,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *768 - installation: *769 - label: *787 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + label: *788 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -236668,7 +236772,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -236797,7 +236901,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -236878,10 +236982,10 @@ webhooks: type: string enum: - unlocked - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -239105,7 +239209,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -239233,7 +239337,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -239436,7 +239540,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *768 + enterprise: *769 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -239531,8 +239635,8 @@ webhooks: - url - author - committer - installation: *769 - organization: *770 + installation: *770 + organization: *771 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -240131,9 +240235,9 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 registry_package: type: object properties: @@ -240610,7 +240714,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *802 + items: *803 summary: type: string tag_name: @@ -240666,7 +240770,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -240744,9 +240848,9 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 registry_package: type: object properties: @@ -241058,7 +241162,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *802 + items: *803 summary: type: string tag_name: @@ -241108,7 +241212,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -241185,10 +241289,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - release: &820 + enterprise: *769 + installation: *770 + organization: *771 + release: &821 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -241519,7 +241623,7 @@ webhooks: - updated_at - zipball_url - body - repository: *771 + repository: *772 sender: *4 required: - action @@ -241596,11 +241700,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - release: *820 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *821 + repository: *772 sender: *4 required: - action @@ -241717,11 +241821,11 @@ webhooks: type: boolean required: - to - enterprise: *768 - installation: *769 - organization: *770 - release: *820 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *821 + repository: *772 sender: *4 required: - action @@ -241799,9 +241903,9 @@ webhooks: type: string enum: - prereleased - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -242137,7 +242241,7 @@ webhooks: - string - 'null' format: uri - repository: *771 + repository: *772 sender: *4 required: - action @@ -242213,10 +242317,10 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 - release: &821 + enterprise: *769 + installation: *770 + organization: *771 + release: &822 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -242549,7 +242653,7 @@ webhooks: - string - 'null' format: uri - repository: *771 + repository: *772 sender: *4 required: - action @@ -242625,11 +242729,11 @@ webhooks: type: string enum: - released - enterprise: *768 - installation: *769 - organization: *770 - release: *820 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *821 + repository: *772 sender: *4 required: - action @@ -242705,11 +242809,11 @@ webhooks: type: string enum: - unpublished - enterprise: *768 - installation: *769 - organization: *770 - release: *821 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *822 + repository: *772 sender: *4 required: - action @@ -242785,11 +242889,11 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_advisory: *688 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_advisory: *689 sender: *4 required: - action @@ -242865,11 +242969,11 @@ webhooks: type: string enum: - reported - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_advisory: *688 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_advisory: *689 sender: *4 required: - action @@ -242945,10 +243049,10 @@ webhooks: type: string enum: - archived - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243025,10 +243129,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243106,10 +243210,10 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243194,10 +243298,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243312,10 +243416,10 @@ webhooks: - 'null' items: type: string - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243387,10 +243491,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 status: type: string @@ -243471,10 +243575,10 @@ webhooks: type: string enum: - privatized - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243551,10 +243655,10 @@ webhooks: type: string enum: - publicized - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243648,10 +243752,10 @@ webhooks: - name required: - repository - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243731,11 +243835,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_ruleset: *324 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_ruleset: *325 sender: *4 required: - action @@ -243813,11 +243917,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_ruleset: *324 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_ruleset: *325 sender: *4 required: - action @@ -243895,11 +243999,11 @@ webhooks: type: string enum: - edited - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_ruleset: *324 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_ruleset: *325 changes: type: object properties: @@ -243918,16 +244022,16 @@ webhooks: properties: added: type: array - items: *298 + items: *299 deleted: type: array - items: *298 + items: *299 updated: type: array items: type: object properties: - condition: *298 + condition: *299 changes: type: object properties: @@ -243960,16 +244064,16 @@ webhooks: properties: added: type: array - items: *624 + items: *625 deleted: type: array - items: *624 + items: *625 updated: type: array items: type: object properties: - rule: *624 + rule: *625 changes: type: object properties: @@ -244206,10 +244310,10 @@ webhooks: - from required: - owner - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244287,10 +244391,10 @@ webhooks: type: string enum: - unarchived - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244368,7 +244472,7 @@ webhooks: type: string enum: - create - alert: &822 + alert: &823 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -244493,10 +244597,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244706,10 +244810,10 @@ webhooks: type: string enum: - dismissed - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244787,11 +244891,11 @@ webhooks: type: string enum: - reopen - alert: *822 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *823 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244993,10 +245097,10 @@ webhooks: enum: - fixed - open - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245074,7 +245178,7 @@ webhooks: type: string enum: - assigned - alert: &824 + alert: &825 type: object properties: number: *181 @@ -245221,12 +245325,12 @@ webhooks: anyOf: - type: 'null' - *4 - metadata: *823 + metadata: *824 assignee: *4 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245304,11 +245408,11 @@ webhooks: type: string enum: - created - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245389,11 +245493,11 @@ webhooks: type: string enum: - created - alert: *824 - installation: *769 - location: *825 - organization: *770 - repository: *771 + alert: *825 + installation: *770 + location: *826 + organization: *771 + repository: *772 sender: *4 required: - location @@ -245631,11 +245735,11 @@ webhooks: type: string enum: - metadata_created - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245712,11 +245816,11 @@ webhooks: type: string enum: - metadata_removed - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245793,11 +245897,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245875,11 +245979,11 @@ webhooks: type: string enum: - reopened - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245957,11 +246061,11 @@ webhooks: type: string enum: - resolved - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -246039,12 +246143,12 @@ webhooks: type: string enum: - unassigned - alert: *824 + alert: *825 assignee: *4 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -246122,11 +246226,11 @@ webhooks: type: string enum: - validated - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -246256,10 +246360,10 @@ webhooks: - organization - enterprise - - repository: *771 - enterprise: *768 - installation: *769 - organization: *770 + repository: *772 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -246337,11 +246441,11 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - security_advisory: &826 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + security_advisory: &827 description: The details of the security advisory, including summary, description, and severity. type: object @@ -246527,11 +246631,11 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - security_advisory: *826 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + security_advisory: *827 sender: *4 required: - action @@ -246604,10 +246708,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -246793,11 +246897,11 @@ webhooks: from: type: object properties: - security_and_analysis: *297 - enterprise: *768 - installation: *769 - organization: *770 - repository: *343 + security_and_analysis: *298 + enterprise: *769 + installation: *770 + organization: *771 + repository: *344 sender: *4 required: - changes @@ -246875,12 +246979,12 @@ webhooks: type: string enum: - cancelled - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: &827 + sponsorship: &828 type: object properties: created_at: @@ -247185,12 +247289,12 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - sponsorship @@ -247278,12 +247382,12 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - changes @@ -247360,17 +247464,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &828 + effective_date: &829 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: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - sponsorship @@ -247444,7 +247548,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &829 + changes: &830 type: object properties: tier: @@ -247488,13 +247592,13 @@ webhooks: - from required: - tier - effective_date: *828 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + effective_date: *829 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - changes @@ -247571,13 +247675,13 @@ webhooks: type: string enum: - tier_changed - changes: *829 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + changes: *830 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - changes @@ -247651,10 +247755,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -247738,10 +247842,10 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -248175,15 +248279,15 @@ webhooks: type: - string - 'null' - enterprise: *768 + enterprise: *769 id: description: The unique identifier of the status. type: integer - installation: *769 + installation: *770 name: type: string - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 sha: description: The Commit SHA. @@ -248299,9 +248403,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -248390,9 +248494,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -248481,9 +248585,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -248572,9 +248676,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -248650,12 +248754,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - team: &830 + team: &831 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -248885,9 +248989,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -249357,7 +249461,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -249433,9 +249537,9 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -249905,7 +250009,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -249982,9 +250086,9 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -250454,7 +250558,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -250598,9 +250702,9 @@ webhooks: - from required: - permissions - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -251070,7 +251174,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - changes @@ -251148,9 +251252,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -251620,7 +251724,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -251696,10 +251800,10 @@ webhooks: type: string enum: - started - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -251772,17 +251876,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *768 + enterprise: *769 inputs: type: - object - 'null' additionalProperties: true - installation: *769 - organization: *770 + installation: *770 + organization: *771 ref: type: string - repository: *771 + repository: *772 sender: *4 workflow: type: string @@ -251864,10 +251968,10 @@ webhooks: type: string enum: - completed - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 workflow_job: allOf: @@ -252123,7 +252227,7 @@ webhooks: type: string required: - conclusion - deployment: *500 + deployment: *501 required: - action - repository @@ -252202,10 +252306,10 @@ webhooks: type: string enum: - in_progress - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 workflow_job: allOf: @@ -252487,7 +252591,7 @@ webhooks: required: - status - steps - deployment: *500 + deployment: *501 required: - action - repository @@ -252566,10 +252670,10 @@ webhooks: type: string enum: - queued - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 workflow_job: type: object @@ -252715,7 +252819,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *500 + deployment: *501 required: - action - repository @@ -252794,10 +252898,10 @@ webhooks: type: string enum: - waiting - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 workflow_job: type: object @@ -252944,7 +253048,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *500 + deployment: *501 required: - action - repository @@ -253024,12 +253128,12 @@ webhooks: type: string enum: - completed - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: *783 + workflow: *784 workflow_run: title: Workflow Run type: object @@ -254048,12 +254152,12 @@ webhooks: type: string enum: - in_progress - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: *783 + workflow: *784 workflow_run: title: Workflow Run type: object @@ -255057,12 +255161,12 @@ webhooks: type: string enum: - requested - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: *783 + workflow: *784 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index c5ad19bcac..75e4733dcf 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -29141,6 +29141,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -30740,7 +30748,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -30965,7 +30974,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -84719,6 +84729,10 @@ "octocat" ] }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -142928,6 +142942,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -144527,7 +144549,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -144752,7 +144775,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -228745,6 +228769,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ @@ -403457,6 +403528,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -404504,7 +404583,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -404662,7 +404742,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -405971,7 +406052,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -407288,7 +407370,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -808134,6 +808217,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index a15ad71cfe..0a127ff5b6 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -883,7 +883,7 @@ paths: - subscriptions_url - type - url - type: &332 + type: &333 type: string description: The type of credit the user is receiving. enum: @@ -1048,7 +1048,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &690 + - &691 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4302,7 +4302,7 @@ paths: schema: type: integer default: 30 - - &220 + - &221 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 @@ -4311,7 +4311,7 @@ paths: required: false schema: type: string - - &221 + - &222 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4331,7 +4331,7 @@ paths: application/json: schema: type: array - items: &222 + items: &223 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4427,7 +4427,7 @@ paths: - installation_id - repository_id examples: - default: &223 + default: &224 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4562,7 +4562,7 @@ paths: description: Response content: application/json: - schema: &224 + schema: &225 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4697,7 +4697,7 @@ paths: - request - response examples: - default: &225 + default: &226 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -12565,7 +12565,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 - - &489 + - &490 name: has in: query description: |- @@ -12599,6 +12599,16 @@ paths: - development - runtime - &211 + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string + - &212 name: sort in: query description: |- @@ -12624,7 +12634,7 @@ paths: application/json: schema: type: array - items: &212 + items: &213 type: object description: A Dependabot alert. properties: @@ -12695,7 +12705,7 @@ paths: - transitive - inconclusive - - security_advisory: &490 + security_advisory: &491 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12947,7 +12957,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &491 + auto_dismissed_at: &492 type: - string - 'null' @@ -12955,7 +12965,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &492 + dismissal_request: &493 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -13018,7 +13028,7 @@ paths: - repository additionalProperties: false examples: - default: &213 + default: &214 value: - number: 2 state: dismissed @@ -13028,6 +13038,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -13214,6 +13225,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -13403,7 +13415,7 @@ paths: description: Response content: application/json: - schema: &214 + schema: &215 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -13429,7 +13441,7 @@ paths: - *66 additionalProperties: false examples: - default: &215 + default: &216 value: default_level: public accessible_repositories: @@ -14674,7 +14686,7 @@ paths: properties: action: type: string - discussion: &784 + discussion: &785 title: Discussion description: A Discussion in a repository. type: object @@ -15171,7 +15183,7 @@ paths: milestone: anyOf: - type: 'null' - - &282 + - &283 title: Milestone description: A collection of related issues and pull requests. @@ -15348,7 +15360,7 @@ paths: timeline_url: type: string format: uri - type: &246 + type: &247 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -15461,7 +15473,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &702 + sub_issues_summary: &703 title: Sub-issues Summary type: object properties: @@ -15545,7 +15557,7 @@ paths: pin: anyOf: - type: 'null' - - &568 + - &569 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -15566,7 +15578,7 @@ paths: minimized: anyOf: - type: 'null' - - &569 + - &570 title: Minimized Issue Comment description: Details about why an issue comment was minimized. @@ -15591,7 +15603,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &703 + issue_dependencies_summary: &704 title: Issue Dependencies Summary type: object properties: @@ -15610,7 +15622,7 @@ paths: - total_blocking issue_field_values: type: array - items: &550 + items: &551 title: Issue Field Value description: A value assigned to an issue field type: object @@ -16426,7 +16438,7 @@ paths: type: string release: allOf: - - &614 + - &615 title: Release description: A release. type: object @@ -16508,7 +16520,7 @@ paths: author: *4 assets: type: array - items: &615 + items: &616 title: Release Asset description: Data related to a release. type: object @@ -18776,7 +18788,7 @@ paths: - closed - all default: open - - &249 + - &250 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18827,7 +18839,7 @@ paths: type: array items: *83 examples: - default: &250 + default: &251 value: - id: 1 node_id: MDU6SXNzdWUx @@ -20253,14 +20265,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &340 + - &341 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &341 + - &342 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20322,7 +20334,7 @@ paths: '404': *6 '403': *27 '304': *36 - '301': &344 + '301': &345 description: Moved permanently content: application/json: @@ -20344,7 +20356,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &588 + - &589 name: all description: If `true`, show notifications marked as read. in: query @@ -20352,7 +20364,7 @@ paths: schema: type: boolean default: false - - &589 + - &590 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20362,7 +20374,7 @@ paths: type: boolean default: false - *88 - - &590 + - &591 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: @@ -20742,7 +20754,7 @@ paths: type: boolean examples: - false - security_and_analysis: &297 + security_and_analysis: &298 type: - object - 'null' @@ -20953,7 +20965,7 @@ paths: - url - subscription_url examples: - default: &591 + default: &592 value: - id: '1' repository: @@ -21957,6 +21969,10 @@ paths: a single user (`user` scope). examples: - octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, + or for a multi-user budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget @@ -22906,7 +22922,7 @@ paths: parameters: - *75 - *117 - - &762 + - &763 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 @@ -23018,7 +23034,7 @@ paths: - *117 - *118 - *119 - - &763 + - &764 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -23026,7 +23042,7 @@ paths: schema: type: string - *122 - - &764 + - &765 name: sku description: The SKU to query for usage. in: query @@ -23995,7 +24011,7 @@ paths: type: integer repository_cache_usages: type: array - items: &351 + items: &352 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -25383,7 +25399,7 @@ paths: - all - local_only - selected - selected_actions_url: &356 + selected_actions_url: &357 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` @@ -25466,7 +25482,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &361 type: object properties: days: @@ -25508,7 +25524,7 @@ paths: required: true content: application/json: - schema: &361 + schema: &362 type: object properties: days: @@ -25565,7 +25581,7 @@ paths: required: - approval_policy examples: - default: &362 + default: &363 value: approval_policy: first_time_contributors '404': *6 @@ -25624,7 +25640,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &364 type: object required: - run_workflows_from_fork_pull_requests @@ -25678,7 +25694,7 @@ paths: required: true content: application/json: - schema: &364 + schema: &365 type: object required: - run_workflows_from_fork_pull_requests @@ -26313,7 +26329,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &366 type: object properties: default_workflow_permissions: &149 @@ -26364,7 +26380,7 @@ paths: required: false content: application/json: - schema: &366 + schema: &367 type: object properties: default_workflow_permissions: *149 @@ -27515,7 +27531,7 @@ paths: application/json: schema: type: array - items: &367 + items: &368 title: Runner Application description: Runner Application type: object @@ -27540,7 +27556,7 @@ paths: - download_url - filename examples: - default: &368 + default: &369 value: - os: osx architecture: x64 @@ -27626,7 +27642,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &369 + '201': &370 description: Response content: application/json: @@ -27741,7 +27757,7 @@ paths: - token - expires_at examples: - default: &370 + default: &371 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -27780,7 +27796,7 @@ paths: application/json: schema: *160 examples: - default: &371 + default: &372 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -27814,7 +27830,7 @@ paths: application/json: schema: *158 examples: - default: &372 + default: &373 value: id: 23 name: MBP @@ -28041,7 +28057,7 @@ paths: - *75 - *157 responses: - '200': &373 + '200': &374 description: Response content: application/json: @@ -28098,7 +28114,7 @@ paths: parameters: - *75 - *157 - - &374 + - &375 name: name description: The name of a self-hosted runner's custom label. in: path @@ -31070,12 +31086,12 @@ paths: required: - subject_digests examples: - default: &743 + default: &744 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &744 + withPredicateType: &745 value: subject_digests: - sha256:abc123 @@ -31120,7 +31136,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &745 + default: &746 value: attestations_subject_digests: - sha256:abc: @@ -31453,7 +31469,7 @@ paths: initiator: type: string examples: - default: &400 + default: &401 value: attestations: - repository_id: 1 @@ -31736,7 +31752,7 @@ paths: parent: anyOf: - type: 'null' - - &261 + - &262 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -32339,7 +32355,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *75 - - &426 + - &427 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`, @@ -32349,7 +32365,7 @@ paths: schema: &188 type: string description: The name of the tool used to generate the code scanning analysis. - - &427 + - &428 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 @@ -32373,7 +32389,7 @@ paths: be returned. in: query required: false - schema: &429 + schema: &430 type: string description: State of a code scanning alert. enum: @@ -32396,7 +32412,7 @@ paths: be returned. in: query required: false - schema: &430 + schema: &431 type: string description: Severity of a code scanning alert. enum: @@ -32430,7 +32446,7 @@ paths: updated_at: *183 url: *184 html_url: *185 - instances_url: &431 + instances_url: &432 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -32452,7 +32468,7 @@ paths: - type: 'null' - *4 dismissed_at: *187 - dismissed_reason: &432 + dismissed_reason: &433 type: - string - 'null' @@ -32463,14 +32479,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &433 + dismissed_comment: &434 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &434 + rule: &435 type: object properties: id: @@ -32531,7 +32547,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &435 + tool: &436 type: object properties: name: *188 @@ -32542,26 +32558,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *189 - most_recent_instance: &436 + most_recent_instance: &437 type: object properties: - ref: &428 + ref: &429 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &447 + analysis_key: &448 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &448 + environment: &449 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &449 + category: &450 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -32581,7 +32597,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &450 + location: &451 type: object description: Describe a region within a file for the alert. properties: @@ -32602,7 +32618,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &451 + items: &452 type: - string - 'null' @@ -33902,7 +33918,7 @@ paths: type: integer codespaces: type: array - items: &251 + items: &252 type: object title: Codespace description: A codespace. @@ -33937,7 +33953,7 @@ paths: machine: anyOf: - type: 'null' - - &463 + - &464 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -34224,7 +34240,7 @@ paths: - pulls_url - recent_folders examples: - default: &252 + default: &253 value: total_count: 3 codespaces: @@ -34889,7 +34905,7 @@ paths: - updated_at - visibility examples: - default: &464 + default: &465 value: total_count: 2 secrets: @@ -34927,7 +34943,7 @@ paths: description: Response content: application/json: - schema: &465 + schema: &466 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -34962,7 +34978,7 @@ paths: - key_id - key examples: - default: &466 + default: &467 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34994,7 +35010,7 @@ paths: application/json: schema: *196 examples: - default: &468 + default: &469 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -37080,7 +37096,7 @@ paths: currently being billed. seats: type: array - items: &254 + items: &255 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -38288,6 +38304,7 @@ paths: type: string - *210 - *211 + - *212 - *61 - *46 - *47 @@ -38299,9 +38316,9 @@ paths: application/json: schema: type: array - items: *212 + items: *213 examples: - default: *213 + default: *214 '304': *36 '400': *14 '403': *27 @@ -38350,9 +38367,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *215 examples: - default: *215 + default: *216 '403': *27 '404': *6 x-github: @@ -38516,7 +38533,7 @@ paths: type: integer secrets: type: array - items: &216 + items: &217 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -38595,7 +38612,7 @@ paths: description: Response content: application/json: - schema: &495 + schema: &496 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -38614,7 +38631,7 @@ paths: - key_id - key examples: - default: &496 + default: &497 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38644,7 +38661,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *217 examples: default: value: @@ -38941,7 +38958,7 @@ paths: application/json: schema: type: array - items: &263 + items: &264 title: Package description: A software package type: object @@ -39012,7 +39029,7 @@ paths: - created_at - updated_at examples: - default: &264 + default: &265 value: - id: 197 name: hello_docker @@ -39182,7 +39199,7 @@ paths: application/json: schema: type: array - items: &240 + items: &241 title: Organization Invitation description: Organization Invitation type: object @@ -39236,7 +39253,7 @@ paths: - invitation_teams_url - node_id examples: - default: &241 + default: &242 value: - id: 1 login: monalisa @@ -39303,7 +39320,7 @@ paths: application/json: schema: type: array - items: &217 + items: &218 title: Org Hook description: Org Hook type: object @@ -39488,9 +39505,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: &218 + default: &219 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -39538,7 +39555,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *75 - - &219 + - &220 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. @@ -39551,9 +39568,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 '404': *6 x-github: githubCloudOnly: false @@ -39581,7 +39598,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *75 - - *219 + - *220 requestBody: required: false content: @@ -39627,7 +39644,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *218 examples: default: value: @@ -39669,7 +39686,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *75 - - *219 + - *220 responses: '204': description: Response @@ -39697,7 +39714,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *75 - - *219 + - *220 responses: '200': description: Response @@ -39728,7 +39745,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *75 - - *219 + - *220 requestBody: required: false content: @@ -39779,10 +39796,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *75 - - *219 - - *17 - *220 + - *17 - *221 + - *222 responses: '200': description: Response @@ -39790,9 +39807,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *223 + default: *224 '400': *14 '422': *15 x-github: @@ -39818,16 +39835,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *75 - - *219 + - *220 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 '400': *14 '422': *15 x-github: @@ -39853,7 +39870,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *75 - - *219 + - *220 - *16 responses: '202': *38 @@ -39883,7 +39900,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *75 - - *219 + - *220 responses: '204': description: Response @@ -39908,7 +39925,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *75 - - &230 + - &231 name: actor_type in: path description: The type of the actor @@ -39921,14 +39938,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &231 + - &232 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &226 + - &227 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`.' @@ -39936,7 +39953,7 @@ paths: required: true schema: type: string - - &227 + - &228 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) @@ -40033,12 +40050,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *75 - - *226 - *227 + - *228 - *19 - *17 - *61 - - &236 + - &237 name: sort description: The property to sort the results by. in: query @@ -40119,14 +40136,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *75 - - *226 - *227 + - *228 responses: '200': description: Response content: application/json: - schema: &228 + schema: &229 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -40142,7 +40159,7 @@ paths: type: integer format: int64 examples: - default: &229 + default: &230 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -40165,23 +40182,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *75 - - &232 + - &233 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *226 - *227 + - *228 responses: '200': description: Response content: application/json: - schema: *228 + schema: *229 examples: - default: *229 + default: *230 x-github: enabledForGitHubApps: true category: orgs @@ -40201,18 +40218,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *75 - - *226 - *227 - - *230 + - *228 - *231 + - *232 responses: '200': description: Response content: application/json: - schema: *228 + schema: *229 examples: - default: *229 + default: *230 x-github: enabledForGitHubApps: true category: orgs @@ -40232,9 +40249,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *75 - - *226 - *227 - - &233 + - *228 + - &234 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -40247,7 +40264,7 @@ paths: description: Response content: application/json: - schema: &234 + schema: &235 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -40263,7 +40280,7 @@ paths: type: integer format: int64 examples: - default: &235 + default: &236 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -40302,18 +40319,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *75 - - *232 - - *226 - - *227 - *233 + - *227 + - *228 + - *234 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *235 + default: *236 x-github: enabledForGitHubApps: true category: orgs @@ -40333,19 +40350,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *75 - - *230 - *231 - - *226 + - *232 - *227 - - *233 + - *228 + - *234 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *235 + default: *236 x-github: enabledForGitHubApps: true category: orgs @@ -40365,13 +40382,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *75 - - *232 - - *226 + - *233 - *227 + - *228 - *19 - *17 - *61 - - *236 + - *237 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -40455,7 +40472,7 @@ paths: application/json: schema: *20 examples: - default: &533 + default: &534 value: id: 1 account: @@ -40621,12 +40638,12 @@ paths: application/json: schema: anyOf: - - &238 + - &239 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &237 + limit: &238 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -40654,7 +40671,7 @@ paths: properties: {} additionalProperties: false examples: - default: &239 + default: &240 value: limit: collaborators_only origin: organization @@ -40683,13 +40700,13 @@ paths: required: true content: application/json: - schema: &534 + schema: &535 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *237 + limit: *238 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -40714,9 +40731,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *239 + default: *240 '422': *15 x-github: githubCloudOnly: false @@ -40926,9 +40943,9 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: - default: *241 + default: *242 headers: Link: *67 '404': *6 @@ -41005,7 +41022,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -41060,7 +41077,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *75 - - &242 + - &243 name: invitation_id description: The unique identifier of the invitation. in: path @@ -41091,7 +41108,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *75 - - *242 + - *243 - *17 - *19 responses: @@ -41103,7 +41120,7 @@ paths: type: array items: *201 examples: - default: &262 + default: &263 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -41146,7 +41163,7 @@ paths: application/json: schema: type: array - items: &243 + items: &244 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -41409,9 +41426,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *244 examples: - default: &244 + default: &245 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -41467,7 +41484,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *75 - - &245 + - &246 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -41577,9 +41594,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *244 examples: - default: *244 + default: *245 '404': *6 '422': *7 x-github: @@ -41604,7 +41621,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *75 - - *245 + - *246 responses: '204': *58 '404': *6 @@ -41634,9 +41651,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: &538 + default: &539 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -41722,9 +41739,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: &247 + default: &248 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -41757,7 +41774,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *75 - - &248 + - &249 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -41813,9 +41830,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 '422': *7 x-github: @@ -41840,7 +41857,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *75 - - *248 + - *249 responses: '204': description: Response @@ -41903,7 +41920,7 @@ paths: - closed - all default: open - - *249 + - *250 - name: type description: Can be the name of an issue type. in: query @@ -41934,7 +41951,7 @@ paths: type: array items: *83 examples: - default: *250 + default: *251 headers: Link: *67 '404': *6 @@ -42094,9 +42111,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *252 examples: - default: *252 + default: *253 '304': *36 '500': *54 '401': *23 @@ -42123,7 +42140,7 @@ paths: parameters: - *75 - *71 - - &253 + - &254 name: codespace_name in: path required: true @@ -42158,15 +42175,15 @@ paths: parameters: - *75 - *71 - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: &462 + default: &463 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -42346,7 +42363,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *254 + schema: *255 examples: default: value: @@ -42422,7 +42439,7 @@ paths: description: Response content: application/json: - schema: &255 + schema: &256 title: Org Membership description: Org Membership type: object @@ -42491,7 +42508,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &256 + response-if-user-has-an-active-admin-membership-with-organization: &257 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -42592,9 +42609,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *256 examples: - response-if-user-already-had-membership-with-organization: *256 + response-if-user-already-had-membership-with-organization: *257 '422': *15 '403': *27 '451': *15 @@ -42667,7 +42684,7 @@ paths: application/json: schema: type: array - items: &257 + items: &258 title: Migration description: A migration. type: object @@ -43005,7 +43022,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -43184,7 +43201,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *75 - - &258 + - &259 name: migration_id description: The unique identifier of the migration. in: path @@ -43212,7 +43229,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -43382,7 +43399,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *75 - - *258 + - *259 responses: '302': description: Response @@ -43404,7 +43421,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *75 - - *258 + - *259 responses: '204': description: Response @@ -43428,8 +43445,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *75 - - *258 - - &725 + - *259 + - &726 name: repo_name description: repo_name parameter in: path @@ -43457,7 +43474,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *75 - - *258 + - *259 - *17 - *19 responses: @@ -43511,7 +43528,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &260 + items: &261 title: Organization Role description: Organization roles type: object @@ -43688,7 +43705,7 @@ paths: parameters: - *75 - *77 - - &259 + - &260 name: role_id description: The unique identifier of the role. in: path @@ -43725,7 +43742,7 @@ paths: parameters: - *75 - *77 - - *259 + - *260 responses: '204': description: Response @@ -43778,7 +43795,7 @@ paths: parameters: - *75 - *71 - - *259 + - *260 responses: '204': description: Response @@ -43810,7 +43827,7 @@ paths: parameters: - *75 - *71 - - *259 + - *260 responses: '204': description: Response @@ -43839,13 +43856,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *75 - - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *260 + schema: *261 examples: default: value: @@ -43896,7 +43913,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *75 - - *259 + - *260 - *17 - *19 responses: @@ -43975,7 +43992,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *262 type: description: The ownership type of the team type: string @@ -44008,7 +44025,7 @@ paths: - type - parent examples: - default: *262 + default: *263 headers: Link: *67 '404': @@ -44038,7 +44055,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *75 - - *259 + - *260 - *17 - *19 responses: @@ -44067,7 +44084,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *261 + items: *262 name: type: - string @@ -44377,7 +44394,7 @@ paths: - nuget - container - *75 - - &726 + - &727 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44413,12 +44430,12 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *264 + default: *265 '403': *27 '401': *23 - '400': &728 + '400': &729 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44440,7 +44457,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &265 + - &266 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 @@ -44458,7 +44475,7 @@ paths: - docker - nuget - container - - &266 + - &267 name: package_name description: The name of the package. in: path @@ -44471,7 +44488,7 @@ paths: description: Response content: application/json: - schema: *263 + schema: *264 examples: default: value: @@ -44523,8 +44540,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *265 - *266 + - *267 - *75 responses: '204': @@ -44557,8 +44574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - name: token description: package token @@ -44591,8 +44608,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: - - *265 - *266 + - *267 - *75 - *19 - *17 @@ -44613,7 +44630,7 @@ paths: application/json: schema: type: array - items: &267 + items: &268 title: Package Version description: A version of a software package type: object @@ -44748,10 +44765,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - - &268 + - &269 name: package_version_id description: Unique identifier of the package version. in: path @@ -44763,7 +44780,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -44799,10 +44816,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - - *268 + - *269 responses: '204': description: Response @@ -44834,10 +44851,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - - *268 + - *269 responses: '204': description: Response @@ -44867,7 +44884,7 @@ paths: - *75 - *17 - *19 - - &269 + - &270 name: sort description: The property by which to sort the results. in: query @@ -44878,7 +44895,7 @@ paths: - created_at default: created_at - *61 - - &270 + - &271 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -44890,7 +44907,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &271 + - &272 name: repository description: The name of the repository to use to filter the results. in: query @@ -44899,7 +44916,7 @@ paths: type: string examples: - Hello-World - - &272 + - &273 name: permission description: The permission to use to filter the results. in: query @@ -44908,7 +44925,7 @@ paths: type: string examples: - issues_read - - &273 + - &274 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) @@ -44918,7 +44935,7 @@ paths: schema: type: string format: date-time - - &274 + - &275 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) @@ -44928,7 +44945,7 @@ paths: schema: type: string format: date-time - - &275 + - &276 name: token_id description: The ID of the token in: query @@ -45247,7 +45264,7 @@ paths: type: array items: *156 examples: - default: &276 + default: &277 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -45384,14 +45401,14 @@ paths: - *75 - *17 - *19 - - *269 - - *61 - *270 + - *61 - *271 - *272 - *273 - *274 - *275 + - *276 responses: '500': *54 '422': *15 @@ -45675,7 +45692,7 @@ paths: type: array items: *156 examples: - default: *276 + default: *277 headers: Link: *67 x-github: @@ -45717,7 +45734,7 @@ paths: type: integer configurations: type: array - items: &277 + items: &278 title: Organization private registry description: Private registry configuration for an organization type: object @@ -46234,7 +46251,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &278 + org-private-registry-with-selected-visibility: &279 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -46332,9 +46349,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *277 + schema: *278 examples: - default: *278 + default: *279 '404': *6 x-github: githubCloudOnly: false @@ -46586,7 +46603,7 @@ paths: application/json: schema: type: array - items: &279 + items: &280 title: Projects v2 Project description: A projects v2 project type: object @@ -46660,7 +46677,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &812 + - &813 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -46745,7 +46762,7 @@ paths: - deleted_at - deleted_by examples: - default: &280 + default: &281 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -46848,7 +46865,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &281 + - &282 name: project_number description: The project's number. in: path @@ -46861,9 +46878,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *280 examples: - default: *280 + default: *281 headers: Link: *67 '304': *36 @@ -46886,7 +46903,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *75 - - *281 + - *282 requestBody: required: true description: Details of the draft item to create in the project. @@ -46920,7 +46937,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &287 title: Projects v2 Item description: An item belonging to a project type: object @@ -46934,7 +46951,7 @@ paths: content: oneOf: - *83 - - &437 + - &438 title: Pull Request Simple description: Pull Request Simple type: object @@ -47054,7 +47071,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *283 active_lock_reason: type: - string @@ -47137,7 +47154,7 @@ paths: _links: type: object properties: - comments: &283 + comments: &284 title: Link description: Hypermedia Link type: object @@ -47146,13 +47163,13 @@ paths: type: string required: - href - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + commits: *284 + statuses: *284 + html: *284 + issue: *284 + review_comments: *284 + review_comment: *284 + self: *284 required: - comments - commits @@ -47163,7 +47180,7 @@ paths: - review_comment - self author_association: *80 - auto_merge: &598 + auto_merge: &599 title: Auto merge description: The status of auto merging a pull request. type: @@ -47189,7 +47206,7 @@ paths: - merge_method - commit_title - commit_message - stack: &599 + stack: &600 title: Pull Request Stack description: The stack information associated with a pull request. @@ -47303,7 +47320,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &285 + content_type: &286 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -47347,7 +47364,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &287 + draft_issue: &288 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -47421,7 +47438,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *281 + - *282 - *75 - *17 - *46 @@ -47433,7 +47450,7 @@ paths: application/json: schema: type: array - items: &284 + items: &285 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -47586,7 +47603,7 @@ paths: - updated_at - project_url examples: - default: &749 + default: &750 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47716,7 +47733,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *281 + - *282 - *75 requestBody: required: true @@ -47763,7 +47780,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &750 + items: &751 type: object properties: name: @@ -47800,7 +47817,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &751 + iteration_configuration: &752 type: object description: The configuration for iteration fields. properties: @@ -47850,7 +47867,7 @@ paths: value: name: Due date data_type: date - single_select_field: &752 + single_select_field: &753 summary: Create a single select field value: name: Priority @@ -47877,7 +47894,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &753 + iteration_field: &754 summary: Create an iteration field value: name: Sprint @@ -47901,9 +47918,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *284 + schema: *285 examples: - text_field: &754 + text_field: &755 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47912,7 +47929,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &755 + number_field: &756 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47921,7 +47938,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &756 + date_field: &757 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47930,7 +47947,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &757 + single_select_field: &758 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47964,7 +47981,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &758 + iteration_field: &759 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -48009,8 +48026,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *281 - - &759 + - *282 + - &760 name: field_id description: The unique identifier of the field. in: path @@ -48023,9 +48040,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *285 examples: - default: &760 + default: &761 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48081,7 +48098,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *281 + - *282 - *75 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -48114,7 +48131,7 @@ paths: application/json: schema: type: array - items: &288 + items: &289 title: Projects v2 Item description: An item belonging to a project type: object @@ -48131,7 +48148,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *285 + content_type: *286 content: type: - object @@ -48181,7 +48198,7 @@ paths: - updated_at - archived_at examples: - default: &289 + default: &290 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -48879,7 +48896,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *75 - - *281 + - *282 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -48949,22 +48966,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *288 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *288 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *288 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *288 '304': *36 '403': *27 '401': *23 @@ -48984,9 +49001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *281 + - *282 - *75 - - &290 + - &291 name: item_id description: The unique identifier of the project item. in: path @@ -49012,9 +49029,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -49035,9 +49052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *281 + - *282 - *75 - - *290 + - *291 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -49110,13 +49127,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *290 + number_field: *290 + date_field: *290 + single_select_field: *290 + iteration_field: *290 '401': *23 '403': *27 '404': *6 @@ -49136,9 +49153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *281 + - *282 - *75 - - *290 + - *291 responses: '204': description: Response @@ -49162,7 +49179,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *75 - - *281 + - *282 requestBody: required: true content: @@ -49201,6 +49218,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -49236,7 +49294,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &740 + schema: &741 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -49340,7 +49398,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &291 + value: &292 value: id: 1 number: 1 @@ -49386,10 +49444,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *291 + value: *292 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *292 '304': *36 '403': *27 '401': *23 @@ -49417,9 +49475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *281 + - *282 - *75 - - &761 + - &762 name: view_number description: The number that identifies the project view. in: path @@ -49451,9 +49509,9 @@ paths: application/json: schema: type: array - items: *288 + items: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -49486,7 +49544,7 @@ paths: application/json: schema: type: array - items: &292 + items: &293 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -49564,7 +49622,7 @@ paths: - property_name - value_type examples: - default: &293 + default: &294 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -49624,7 +49682,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *292 + items: *293 minItems: 1 maxItems: 100 required: @@ -49654,9 +49712,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *293 + default: *294 '403': *27 '404': *6 x-github: @@ -49678,7 +49736,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *75 - - &294 + - &295 name: custom_property_name description: The custom property name in: path @@ -49690,9 +49748,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: &295 + default: &296 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -49727,7 +49785,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *75 - - *294 + - *295 requestBody: required: true content: @@ -49807,9 +49865,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: *295 + default: *296 '403': *27 '404': *6 x-github: @@ -49833,7 +49891,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *75 - - *294 + - *295 responses: '204': *58 '403': *27 @@ -49897,7 +49955,7 @@ paths: - octocat/Hello-World properties: type: array - items: &296 + items: &297 title: Custom Property Value description: Custom property name and associated value type: object @@ -49987,7 +50045,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *296 + items: *297 required: - repository_names - properties @@ -50179,7 +50237,7 @@ paths: type: array items: *156 examples: - default: *276 + default: *277 headers: Link: *67 x-github: @@ -50382,7 +50440,7 @@ paths: description: Response content: application/json: - schema: &343 + schema: &344 title: Full Repository description: Full Repository type: object @@ -50852,7 +50910,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &481 + code_of_conduct: &482 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -50882,7 +50940,7 @@ paths: - key - name - html_url - security_and_analysis: *297 + security_and_analysis: *298 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -50966,7 +51024,7 @@ paths: - network_count - subscribers_count examples: - default: &345 + default: &346 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -51487,7 +51545,7 @@ paths: - *75 - *17 - *19 - - &623 + - &624 name: targets description: | A comma-separated list of rule targets to filter by. @@ -51506,7 +51564,7 @@ paths: application/json: schema: type: array - items: &324 + items: &325 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -51541,7 +51599,7 @@ paths: source: type: string description: The name of the source - enforcement: &300 + enforcement: &301 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -51554,7 +51612,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &301 + items: &302 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -51626,7 +51684,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &298 + - &299 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -51650,7 +51708,7 @@ paths: match. items: type: string - - &302 + - &303 title: Organization ruleset conditions type: object description: |- @@ -51664,7 +51722,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *298 + - *299 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -51698,7 +51756,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *298 + - *299 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -51720,7 +51778,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *298 + - *299 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -51733,7 +51791,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &299 + items: &300 title: Repository ruleset property targeting definition type: object @@ -51766,7 +51824,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *299 + items: *300 required: - repository_property type: @@ -51774,12 +51832,12 @@ paths: - object rules: type: array - items: &624 + items: &625 title: Repository Rule type: object description: A repository rule. oneOf: - - &303 + - &304 title: creation description: Only allow users with bypass permission to create matching refs. @@ -51791,7 +51849,7 @@ paths: type: string enum: - creation - - &304 + - &305 title: update description: Only allow users with bypass permission to update matching refs. @@ -51812,7 +51870,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &305 + - &306 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -51824,7 +51882,7 @@ paths: type: string enum: - deletion - - &306 + - &307 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -51836,7 +51894,7 @@ paths: type: string enum: - required_linear_history - - &621 + - &622 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -51914,7 +51972,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &307 + - &308 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -51938,7 +51996,7 @@ paths: type: string required: - required_deployment_environments - - &308 + - &309 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -51950,7 +52008,7 @@ paths: type: string enum: - required_signatures - - &309 + - &310 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -52093,7 +52151,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &310 + - &311 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -52141,7 +52199,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &311 + - &312 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -52153,7 +52211,7 @@ paths: type: string enum: - non_fast_forward - - &312 + - &313 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -52190,7 +52248,7 @@ paths: required: - operator - pattern - - &313 + - &314 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -52227,7 +52285,7 @@ paths: required: - operator - pattern - - &314 + - &315 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -52264,7 +52322,7 @@ paths: required: - operator - pattern - - &315 + - &316 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -52301,7 +52359,7 @@ paths: required: - operator - pattern - - &316 + - &317 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -52338,7 +52396,7 @@ paths: required: - operator - pattern - - &321 + - &322 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -52388,7 +52446,7 @@ paths: - repository_id required: - workflows - - &322 + - &323 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -52449,7 +52507,7 @@ paths: - tool required: - code_scanning_tools - - &323 + - &324 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -52475,7 +52533,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &622 + - &623 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -52487,7 +52545,7 @@ paths: type: string enum: - license_compliance_scanning - - &317 + - &318 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -52512,7 +52570,7 @@ paths: type: string required: - restricted_file_paths - - &318 + - &319 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -52536,7 +52594,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &319 + - &320 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -52559,7 +52617,7 @@ paths: type: string required: - restricted_file_extensions - - &320 + - &321 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -52657,21 +52715,20 @@ paths: - push - repository default: branch - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *302 + conditions: *303 rules: type: array description: An array of rules within the ruleset. - items: &326 + items: &327 title: Repository Rule type: object description: A repository rule. oneOf: - - *303 - *304 - *305 - *306 @@ -52692,6 +52749,7 @@ paths: - *321 - *322 - *323 + - *324 required: - name - enforcement @@ -52729,9 +52787,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: &325 + default: &326 value: id: 21 name: super cool ruleset @@ -52787,7 +52845,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *75 - - &625 + - &626 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 @@ -52802,7 +52860,7 @@ paths: in: query schema: type: string - - &626 + - &627 name: time_period description: |- The time period to filter by. @@ -52818,14 +52876,14 @@ paths: - week - month default: day - - &627 + - &628 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 - - &628 + - &629 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -52838,7 +52896,7 @@ paths: - bypass - all default: all - - &629 + - &630 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -52861,7 +52919,7 @@ paths: description: Response content: application/json: - schema: &630 + schema: &631 title: Rule Suites description: Response type: array @@ -52917,7 +52975,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &631 + default: &632 value: - id: 21 actor_id: 12 @@ -52961,7 +53019,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *75 - - &632 + - &633 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -52977,7 +53035,7 @@ paths: description: Response content: application/json: - schema: &633 + schema: &634 title: Rule Suite description: Response type: object @@ -53084,7 +53142,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &634 + default: &635 value: id: 21 actor_id: 12 @@ -53157,9 +53215,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *325 + default: *326 '404': *6 '500': *54 put: @@ -53203,16 +53261,16 @@ paths: - tag - push - repository - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *302 + conditions: *303 rules: description: An array of rules within the ruleset. type: array - items: *326 + items: *327 examples: default: value: @@ -53247,9 +53305,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *325 + default: *326 '404': *6 '422': *15 '500': *54 @@ -53307,7 +53365,7 @@ paths: application/json: schema: type: array - items: &327 + items: &328 title: Ruleset version type: object description: The historical version of a ruleset @@ -53331,7 +53389,7 @@ paths: type: string format: date-time examples: - default: &636 + default: &637 value: - version_id: 3 actor: @@ -53384,9 +53442,9 @@ paths: description: Response content: application/json: - schema: &637 + schema: &638 allOf: - - *327 + - *328 - type: object required: - state @@ -53456,7 +53514,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *75 - - &638 + - &639 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -53467,7 +53525,7 @@ paths: enum: - open - resolved - - &639 + - &640 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -53477,7 +53535,7 @@ paths: required: false schema: type: string - - &640 + - &641 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -53488,7 +53546,7 @@ paths: required: false schema: type: string - - &641 + - &642 name: exclude_providers in: query description: |- @@ -53499,7 +53557,7 @@ paths: required: false schema: type: string - - &642 + - &643 name: providers in: query description: |- @@ -53510,7 +53568,7 @@ paths: required: false schema: type: string - - &643 + - &644 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -53519,7 +53577,7 @@ paths: required: false schema: type: string - - &644 + - &645 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -53538,7 +53596,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &645 + - &646 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. @@ -53553,7 +53611,7 @@ paths: - *61 - *19 - *17 - - &646 + - &647 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 @@ -53563,7 +53621,7 @@ paths: required: false schema: type: string - - &647 + - &648 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 @@ -53573,7 +53631,7 @@ paths: required: false schema: type: string - - &648 + - &649 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -53582,7 +53640,7 @@ paths: required: false schema: type: string - - &649 + - &650 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -53591,7 +53649,7 @@ paths: schema: type: boolean default: false - - &650 + - &651 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -53600,7 +53658,7 @@ paths: schema: type: boolean default: false - - &651 + - &652 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -53609,7 +53667,7 @@ paths: schema: type: boolean default: false - - &652 + - &653 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -53620,7 +53678,7 @@ paths: required: false schema: type: boolean - - &653 + - &654 name: included_metadata in: query description: |- @@ -53631,7 +53689,7 @@ paths: required: false schema: type: string - - &654 + - &655 name: owner_email_hash in: query description: |- @@ -53666,14 +53724,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &655 + state: &656 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: &656 + resolution: &657 type: - string - 'null' @@ -53792,14 +53850,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &657 + - &658 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &659 + - &660 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -53863,7 +53921,7 @@ paths: - blob_url - commit_sha - commit_url - - &660 + - &661 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. @@ -53924,7 +53982,7 @@ paths: - page_url - commit_sha - commit_url - - &661 + - &662 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -53946,7 +54004,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &662 + - &663 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -53968,7 +54026,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &663 + - &664 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -53990,7 +54048,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &664 + - &665 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -54005,7 +54063,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &665 + - &666 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -54020,7 +54078,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &666 + - &667 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -54035,7 +54093,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &667 + - &668 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. @@ -54057,7 +54115,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &668 + - &669 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. @@ -54079,7 +54137,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &669 + - &670 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. @@ -54101,7 +54159,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &670 + - &671 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. @@ -54123,7 +54181,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &671 + - &672 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 @@ -54373,7 +54431,7 @@ paths: subcategory: custom-patterns parameters: - *75 - - &672 + - &673 name: state description: Filter custom patterns by state. When absent, returns patterns in all states. @@ -54384,7 +54442,7 @@ paths: enum: - published - unpublished - - &673 + - &674 name: push_protection description: Filter custom patterns by whether push protection is enabled. When absent, returns patterns regardless of push protection status. @@ -54395,7 +54453,7 @@ paths: enum: - enabled - disabled - - &674 + - &675 name: sort description: The property to sort the results by. in: query @@ -54417,7 +54475,7 @@ paths: application/json: schema: type: array - items: &328 + items: &329 title: Secret Scanning Custom Pattern description: A custom pattern for secret scanning. type: object @@ -54469,7 +54527,7 @@ paths: description: List of regexes that the secret must not match. items: type: string - custom_pattern_version: &329 + custom_pattern_version: &330 type: - string - 'null' @@ -54494,7 +54552,7 @@ paths: - state - push_protection_enabled examples: - default: &675 + default: &676 value: - id: 1 name: Example Custom Pattern @@ -54557,7 +54615,7 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: &676 + items: &677 title: Secret Scanning Custom Pattern To Create description: A custom pattern to create in a bulk operation. type: object @@ -54594,7 +54652,7 @@ paths: items: type: string examples: - default: &677 + default: &678 value: patterns: - name: Example Custom Pattern @@ -54618,9 +54676,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *328 + items: *329 examples: - default: &678 + default: &679 value: created_patterns: - id: 1 @@ -54672,7 +54730,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: &679 + items: &680 title: Secret Scanning Custom Pattern Validation Error description: A validation error for a custom pattern in a batch operation. @@ -54726,7 +54784,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: &680 + items: &681 title: Secret Scanning Custom Pattern To Delete description: A custom pattern to delete in a bulk operation. type: object @@ -54736,7 +54794,7 @@ paths: pattern_id: type: integer description: The ID of the custom pattern to delete. - custom_pattern_version: *329 + custom_pattern_version: *330 post_delete_action: type: string description: |- @@ -54749,7 +54807,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: &681 + default: &682 value: patterns: - pattern_id: 2 @@ -54760,7 +54818,7 @@ paths: '400': *14 '403': *27 '404': *6 - '412': &330 + '412': &331 description: Precondition Failed content: application/json: @@ -54795,7 +54853,7 @@ paths: required: true content: application/json: - schema: &682 + schema: &683 title: Secret Scanning Custom Pattern To Update description: Fields to update on a custom pattern. At least one updatable field (`pattern`, `start_delimiter`, `end_delimiter`, `must_match`, @@ -54834,9 +54892,9 @@ paths: description: Updated list of regexes that the secret must not match. items: type: string - custom_pattern_version: *329 + custom_pattern_version: *330 examples: - default: &683 + default: &684 value: pattern: updated_secret_[0-9A-Z]{16} start_delimiter: "[^0-9A-Za-z]" @@ -54851,9 +54909,9 @@ paths: description: Pattern updated successfully. content: application/json: - schema: *328 + schema: *329 examples: - default: &684 + default: &685 value: id: 1 name: Example Custom Pattern @@ -54873,7 +54931,7 @@ paths: '400': *14 '403': *27 '404': *6 - '412': *330 + '412': *331 '422': *15 "/orgs/{org}/secret-scanning/pattern-configurations": get: @@ -54906,11 +54964,11 @@ paths: related to push protection. type: object properties: - pattern_config_version: *329 + pattern_config_version: *330 provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &331 + items: &332 type: object properties: token_type: @@ -54979,7 +55037,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *331 + items: *332 examples: default: value: @@ -55036,7 +55094,7 @@ paths: schema: type: object properties: - pattern_config_version: *329 + pattern_config_version: *330 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -55062,7 +55120,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *329 + custom_pattern_version: *330 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -55160,7 +55218,7 @@ paths: application/json: schema: type: array - items: &688 + items: &689 description: A repository security advisory. type: object properties: @@ -55383,7 +55441,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *333 credits_detailed: type: - array @@ -55394,7 +55452,7 @@ paths: type: object properties: user: *4 - type: *332 + type: *333 state: type: string description: The state of the user's acceptance of the @@ -55457,7 +55515,7 @@ paths: - private_fork additionalProperties: false examples: - default: &689 + default: &690 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -55844,7 +55902,7 @@ paths: application/json: schema: type: array - items: *261 + items: *262 examples: default: value: @@ -56199,7 +56257,7 @@ paths: type: integer network_configurations: type: array - items: &333 + items: &334 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -56352,9 +56410,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: &334 + default: &335 value: id: 123456789ABCDEF name: My network configuration @@ -56383,7 +56441,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - &335 + - &336 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -56395,9 +56453,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 headers: Link: *67 x-github: @@ -56419,7 +56477,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - *335 + - *336 requestBody: required: true content: @@ -56472,9 +56530,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56494,7 +56552,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *75 - - *335 + - *336 responses: '204': description: Response @@ -56618,7 +56676,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 headers: Link: *67 '403': *27 @@ -56708,7 +56766,7 @@ paths: description: Response content: application/json: - schema: &336 + schema: &337 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -56782,7 +56840,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *262 members_count: type: integer examples: @@ -57107,7 +57165,7 @@ paths: - repos_count - organization examples: - default: &337 + default: &338 value: id: 1 node_id: MDQ6VGVhbTE= @@ -57184,9 +57242,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 x-github: githubCloudOnly: false @@ -57277,16 +57335,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '201': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 '422': *15 '403': *27 @@ -57316,7 +57374,7 @@ paths: responses: '204': description: Response - '422': &338 + '422': &339 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -57350,12 +57408,12 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: - default: *241 + default: *242 headers: Link: *67 - '422': *338 + '422': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57399,7 +57457,7 @@ paths: application/json: schema: type: array - items: &705 + items: &706 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -57542,7 +57600,7 @@ paths: - type - url examples: - default: &706 + default: &707 value: - login: octocat id: 1 @@ -57601,7 +57659,7 @@ paths: description: Response content: application/json: - schema: &339 + schema: &340 title: Team Membership description: Team Membership type: object @@ -57629,7 +57687,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &707 + response-if-user-is-a-team-maintainer: &708 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -57692,9 +57750,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-users-membership-with-team-is-now-pending: &708 + response-if-users-membership-with-team-is-now-pending: &709 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -57772,7 +57830,7 @@ paths: type: array items: *156 examples: - default: *276 + default: *277 headers: Link: *67 x-github: @@ -57803,14 +57861,14 @@ paths: parameters: - *75 - *77 - - *340 - *341 + - *342 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &709 + schema: &710 title: Team Repository description: A team's access to a repository. type: object @@ -58445,8 +58503,8 @@ paths: parameters: - *75 - *77 - - *340 - *341 + - *342 requestBody: required: false content: @@ -58493,8 +58551,8 @@ paths: parameters: - *75 - *77 - - *340 - *341 + - *342 responses: '204': description: Response @@ -58531,7 +58589,7 @@ paths: type: array items: *201 examples: - response-if-child-teams-exist: &710 + response-if-child-teams-exist: &711 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -58684,7 +58742,7 @@ paths: resources: type: object properties: - core: &342 + core: &343 title: Rate Limit type: object properties: @@ -58701,17 +58759,17 @@ paths: - remaining - reset - used - graphql: *342 - search: *342 - code_search: *342 - source_import: *342 - integration_manifest: *342 - actions_runner_registration: *342 - scim: *342 - dependency_snapshots: *342 - dependency_sbom: *342 - code_scanning_autofix: *342 - copilot_usage_records: *342 + graphql: *343 + search: *343 + code_search: *343 + source_import: *343 + integration_manifest: *343 + actions_runner_registration: *343 + scim: *343 + dependency_snapshots: *343 + dependency_sbom: *343 + code_scanning_autofix: *343 + copilot_usage_records: *343 required: - core - search @@ -58808,14 +58866,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *343 + schema: *344 examples: default-response: summary: Default response @@ -59319,7 +59377,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *344 + '301': *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59337,8 +59395,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -59649,10 +59707,10 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 - '307': &346 + default: *346 + '307': &347 description: Temporary Redirect content: application/json: @@ -59681,8 +59739,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -59704,7 +59762,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *346 + '307': *347 '404': *6 '409': *53 x-github: @@ -59728,11 +59786,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 - - &378 + - &379 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -59755,7 +59813,7 @@ paths: type: integer artifacts: type: array - items: &347 + items: &348 title: Artifact description: An artifact type: object @@ -59850,7 +59908,7 @@ paths: - expires_at - updated_at examples: - default: &379 + default: &380 value: total_count: 2 artifacts: @@ -59911,9 +59969,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *340 - *341 - - &348 + - *342 + - &349 name: artifact_id description: The unique identifier of the artifact. in: path @@ -59925,7 +59983,7 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: default: value: @@ -59963,9 +60021,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *340 - *341 - - *348 + - *342 + - *349 responses: '204': description: Response @@ -59989,9 +60047,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *340 - *341 - - *348 + - *342 + - *349 - name: archive_format in: path required: true @@ -60001,7 +60059,7 @@ paths: '302': description: Response headers: - Location: &498 + Location: &499 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 @@ -60026,14 +60084,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &349 + schema: &350 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -60067,13 +60125,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *349 + schema: *350 examples: selected_actions: *41 responses: @@ -60102,14 +60160,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &350 + schema: &351 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -60143,13 +60201,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *350 + schema: *351 examples: selected_actions: *43 responses: @@ -60180,14 +60238,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *351 + schema: *352 examples: default: value: @@ -60213,11 +60271,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 - - &352 + - &353 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 @@ -60251,7 +60309,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &354 title: Repository actions caches description: Repository actions caches type: object @@ -60301,7 +60359,7 @@ paths: - total_count - actions_caches examples: - default: &354 + default: &355 value: total_count: 1 actions_caches: @@ -60333,23 +60391,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: - - *340 - *341 + - *342 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *352 + - *353 responses: '200': description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60369,8 +60427,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: - - *340 - *341 + - *342 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -60399,8 +60457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *47 responses: @@ -60483,8 +60541,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *340 - *341 + - *342 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -60640,9 +60698,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *340 - *341 - - &355 + - *342 + - &356 name: job_id description: The unique identifier of the job. in: path @@ -60654,7 +60712,7 @@ paths: description: Response content: application/json: - schema: &382 + schema: &383 title: Job description: Information of a job execution in a workflow run type: object @@ -61001,9 +61059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *340 - *341 - - *355 + - *342 + - *356 responses: '302': description: Response @@ -61031,9 +61089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *340 - *341 - - *355 + - *342 + - *356 requestBody: required: false content: @@ -61084,8 +61142,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: - - *340 - *341 + - *342 responses: '200': description: Status response @@ -61144,8 +61202,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -61213,8 +61271,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -61232,7 +61290,7 @@ paths: type: integer secrets: type: array - items: &384 + items: &385 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -61253,7 +61311,7 @@ paths: - created_at - updated_at examples: - default: &385 + default: &386 value: total_count: 2 secrets: @@ -61286,8 +61344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -61305,7 +61363,7 @@ paths: type: integer variables: type: array - items: &386 + items: &387 title: Actions Variable type: object properties: @@ -61339,7 +61397,7 @@ paths: - created_at - updated_at examples: - default: &387 + default: &388 value: total_count: 2 variables: @@ -61372,8 +61430,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -61382,11 +61440,11 @@ paths: schema: type: object properties: - enabled: &357 + enabled: &358 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *141 - selected_actions_url: *356 + selected_actions_url: *357 sha_pinning_required: *142 required: - enabled @@ -61415,8 +61473,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -61427,7 +61485,7 @@ paths: schema: type: object properties: - enabled: *357 + enabled: *358 allowed_actions: *141 sha_pinning_required: *142 required: @@ -61459,14 +61517,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: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &358 + schema: &359 type: object properties: access_level: @@ -61483,7 +61541,7 @@ paths: required: - access_level examples: - default: &359 + default: &360 value: access_level: organization x-github: @@ -61507,15 +61565,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: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *358 + schema: *359 examples: - default: *359 + default: *360 responses: '204': description: Response @@ -61539,14 +61597,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *360 + schema: *361 examples: default: value: @@ -61570,8 +61628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Empty response for successful settings update @@ -61581,7 +61639,7 @@ paths: required: true content: application/json: - schema: *361 + schema: *362 examples: default: summary: Set retention days @@ -61605,8 +61663,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -61614,7 +61672,7 @@ paths: application/json: schema: *143 examples: - default: *362 + default: *363 '404': *6 x-github: enabledForGitHubApps: true @@ -61633,8 +61691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -61668,14 +61726,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: default: *144 '403': *27 @@ -61697,13 +61755,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *364 + schema: *365 examples: default: *144 responses: @@ -61729,8 +61787,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -61757,8 +61815,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -61790,14 +61848,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *365 + schema: *366 examples: default: *151 x-github: @@ -61820,8 +61878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Success response @@ -61832,7 +61890,7 @@ paths: required: true content: application/json: - schema: *366 + schema: *367 examples: default: *151 x-github: @@ -61861,8 +61919,8 @@ paths: in: query schema: type: string - - *340 - *341 + - *342 - *17 - *19 responses: @@ -61906,8 +61964,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -61915,9 +61973,9 @@ paths: application/json: schema: type: array - items: *367 + items: *368 examples: - default: *368 + default: *369 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61939,8 +61997,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -61983,7 +62041,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *369 + '201': *370 '404': *6 '422': *7 '409': *53 @@ -62014,8 +62072,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -62023,7 +62081,7 @@ paths: application/json: schema: *160 examples: - default: *370 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62051,8 +62109,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -62060,7 +62118,7 @@ paths: application/json: schema: *160 examples: - default: *371 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62082,8 +62140,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: - - *340 - *341 + - *342 - *157 responses: '200': @@ -62092,7 +62150,7 @@ paths: application/json: schema: *158 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62113,8 +62171,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: - - *340 - *341 + - *342 - *157 responses: '204': @@ -62141,8 +62199,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: - - *340 - *341 + - *342 - *157 responses: '200': *162 @@ -62167,8 +62225,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: - - *340 - *341 + - *342 - *157 requestBody: required: true @@ -62217,8 +62275,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: - - *340 - *341 + - *342 - *157 requestBody: required: true @@ -62268,11 +62326,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: - - *340 - *341 + - *342 - *157 responses: - '200': *373 + '200': *374 '404': *6 x-github: githubCloudOnly: false @@ -62299,10 +62357,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: - - *340 - *341 + - *342 - *157 - - *374 + - *375 responses: '200': *162 '404': *6 @@ -62330,9 +62388,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *340 - *341 - - &390 + - *342 + - &391 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. @@ -62340,7 +62398,7 @@ paths: required: false schema: type: string - - &391 + - &392 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -62348,7 +62406,7 @@ paths: required: false schema: type: string - - &392 + - &393 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -62357,7 +62415,7 @@ paths: required: false schema: type: string - - &393 + - &394 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 @@ -62384,7 +62442,7 @@ paths: - pending - *17 - *19 - - &394 + - &395 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)." @@ -62393,7 +62451,7 @@ paths: schema: type: string format: date-time - - &375 + - &376 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -62402,13 +62460,13 @@ paths: schema: type: boolean default: false - - &395 + - &396 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &396 + - &397 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -62431,7 +62489,7 @@ paths: type: integer workflow_runs: type: array - items: &376 + items: &377 title: Workflow Run description: An invocation of a workflow type: object @@ -62609,7 +62667,7 @@ paths: head_commit: anyOf: - type: 'null' - - &420 + - &421 title: Simple Commit description: A commit. type: object @@ -62724,7 +62782,7 @@ paths: - workflow_url - pull_requests examples: - default: &397 + default: &398 value: total_count: 1 workflow_runs: @@ -62960,24 +63018,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *340 - *341 - - &377 + - *342 + - &378 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *376 + schema: *377 examples: - default: &380 + default: &381 value: id: 30433642 name: Build @@ -63218,9 +63276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '204': description: Response @@ -63243,9 +63301,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '200': description: Response @@ -63373,9 +63431,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: - - *340 - *341 - - *377 + - *342 + - *378 responses: '201': description: Response @@ -63408,12 +63466,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *340 - *341 - - *377 + - *342 + - *378 - *17 - *19 - - *378 + - *379 - *61 responses: '200': @@ -63430,9 +63488,9 @@ paths: type: integer artifacts: type: array - items: *347 + items: *348 examples: - default: *379 + default: *380 headers: Link: *67 x-github: @@ -63456,25 +63514,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *340 - *341 - - *377 - - &381 + - *342 + - *378 + - &382 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *376 + schema: *377 examples: - default: *380 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63497,10 +63555,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *340 - *341 - - *377 - - *381 + - *342 + - *378 + - *382 - *17 - *19 responses: @@ -63518,9 +63576,9 @@ paths: type: integer jobs: type: array - items: *382 + items: *383 examples: - default: &383 + default: &384 value: total_count: 1 jobs: @@ -63633,10 +63691,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *340 - *341 - - *377 - - *381 + - *342 + - *378 + - *382 responses: '302': description: Response @@ -63664,9 +63722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '202': description: Response @@ -63712,9 +63770,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 - *17 - *46 - *47 @@ -63891,9 +63949,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: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: true content: @@ -63960,9 +64018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '202': description: Response @@ -63995,9 +64053,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 - 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 @@ -64027,9 +64085,9 @@ paths: type: integer jobs: type: array - items: *382 + items: *383 examples: - default: *383 + default: *384 headers: Link: *67 x-github: @@ -64054,9 +64112,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '302': description: Response @@ -64083,9 +64141,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '204': description: Response @@ -64112,9 +64170,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '200': description: Response @@ -64183,7 +64241,7 @@ paths: items: type: object properties: - type: &505 + type: &506 type: string description: The type of reviewer. enum: @@ -64269,9 +64327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: true content: @@ -64321,7 +64379,7 @@ paths: application/json: schema: type: array - items: &500 + items: &501 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -64433,7 +64491,7 @@ paths: - created_at - updated_at examples: - default: &501 + default: &502 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -64489,9 +64547,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: false content: @@ -64536,9 +64594,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: false content: @@ -64592,9 +64650,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '200': description: Response @@ -64731,8 +64789,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -64750,9 +64808,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -64777,8 +64835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -64808,17 +64866,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *384 + schema: *385 examples: - default: &398 + default: &399 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -64844,8 +64902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -64903,8 +64961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -64930,8 +64988,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -64949,9 +65007,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -64974,8 +65032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -65027,17 +65085,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: &399 + default: &400 value: name: USERNAME value: octocat @@ -65063,8 +65121,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 requestBody: required: true @@ -65107,8 +65165,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '204': @@ -65134,8 +65192,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -65153,7 +65211,7 @@ paths: type: integer workflows: type: array - items: &388 + items: &389 title: Workflow description: A GitHub Actions workflow type: object @@ -65271,9 +65329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *340 - *341 - - &389 + - *342 + - &390 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -65288,7 +65346,7 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: default: value: @@ -65321,9 +65379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '204': description: Response @@ -65348,9 +65406,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '200': description: Response including the workflow run ID and URLs. @@ -65430,9 +65488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '204': description: Response @@ -65459,19 +65517,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *340 - *341 - - *389 + - *342 - *390 - *391 - *392 - *393 + - *394 - *17 - *19 - - *394 - - *375 - *395 + - *376 - *396 + - *397 responses: '200': description: Response @@ -65487,9 +65545,9 @@ paths: type: integer workflow_runs: type: array - items: *376 + items: *377 examples: - default: *397 + default: *398 headers: Link: *67 x-github: @@ -65521,9 +65579,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '200': description: Response @@ -65584,8 +65642,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *340 - *341 + - *342 - *61 - *17 - *46 @@ -65758,8 +65816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -65777,9 +65835,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -65803,8 +65861,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -65822,9 +65880,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -65849,8 +65907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -65868,9 +65926,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -65895,8 +65953,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -65926,17 +65984,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *384 + schema: *385 examples: - default: *398 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65958,8 +66016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -66017,8 +66075,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -66044,8 +66102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -66063,9 +66121,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -66088,8 +66146,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -66141,17 +66199,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *399 + default: *400 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66172,8 +66230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 requestBody: required: true @@ -66216,8 +66274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '204': @@ -66239,8 +66297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -66277,8 +66335,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *340 - *341 + - *342 - name: assignee in: path required: true @@ -66314,8 +66372,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -66425,8 +66483,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *340 - *341 + - *342 - *17 - *46 - *47 @@ -66467,7 +66525,7 @@ paths: initiator: type: string examples: - default: *400 + default: *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66487,8 +66545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -66496,7 +66554,7 @@ paths: application/json: schema: type: array - items: &401 + items: &402 title: Autolink reference description: An autolink reference. type: object @@ -66555,8 +66613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -66595,9 +66653,9 @@ paths: description: response content: application/json: - schema: *401 + schema: *402 examples: - default: &402 + default: &403 value: id: 1 key_prefix: TICKET- @@ -66628,9 +66686,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *340 - *341 - - &403 + - *342 + - &404 name: autolink_id description: The unique identifier of the autolink. in: path @@ -66642,9 +66700,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *402 + default: *403 '404': *6 x-github: githubCloudOnly: false @@ -66664,9 +66722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *340 - *341 - - *403 + - *342 + - *404 responses: '204': description: Response @@ -66690,8 +66748,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: - - *340 - *341 + - *342 responses: '200': description: Response if Dependabot is enabled @@ -66741,8 +66799,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -66763,8 +66821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -66784,8 +66842,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *340 - *341 + - *342 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -66823,7 +66881,7 @@ paths: - url protected: type: boolean - protection: &405 + protection: &406 title: Branch Protection description: Branch Protection type: object @@ -66866,7 +66924,7 @@ paths: required: - contexts - checks - enforce_admins: &408 + enforce_admins: &409 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -66883,7 +66941,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &410 + required_pull_request_reviews: &411 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -66967,7 +67025,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &407 + restrictions: &408 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -67260,9 +67318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *340 - *341 - - &406 + - *342 + - &407 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). @@ -67276,14 +67334,14 @@ paths: description: Response content: application/json: - schema: &416 + schema: &417 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &473 + commit: &474 title: Commit description: Commit type: object @@ -67322,7 +67380,7 @@ paths: author: anyOf: - type: 'null' - - &404 + - &405 title: Git User description: Metaproperties for Git author/committer information. @@ -67344,7 +67402,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *405 message: type: string examples: @@ -67368,7 +67426,7 @@ paths: required: - sha - url - verification: &523 + verification: &524 title: Verification type: object properties: @@ -67448,7 +67506,7 @@ paths: type: integer files: type: array - items: &483 + items: &484 title: Diff Entry description: Diff Entry type: object @@ -67544,7 +67602,7 @@ paths: - self protected: type: boolean - protection: *405 + protection: *406 protection_url: type: string format: uri @@ -67653,7 +67711,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *344 + '301': *345 '404': *6 x-github: githubCloudOnly: false @@ -67675,15 +67733,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -67877,9 +67935,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -68139,7 +68197,7 @@ paths: url: type: string format: uri - required_status_checks: &413 + required_status_checks: &414 title: Status Check Policy description: Status Check Policy type: object @@ -68298,7 +68356,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *407 + restrictions: *408 required_conversation_resolution: type: object properties: @@ -68410,9 +68468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -68437,17 +68495,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: &409 + default: &410 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -68469,17 +68527,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: *409 + default: *410 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68498,9 +68556,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -68525,17 +68583,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: &411 + default: &412 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -68631,9 +68689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -68731,9 +68789,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *411 + default: *412 '422': *15 x-github: githubCloudOnly: false @@ -68754,9 +68812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -68783,17 +68841,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: &412 + default: &413 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -68816,17 +68874,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: *412 + default: *413 '404': *6 x-github: githubCloudOnly: false @@ -68846,9 +68904,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -68873,17 +68931,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *413 + schema: *414 examples: - default: &414 + default: &415 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -68909,9 +68967,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -68963,9 +69021,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: - default: *414 + default: *415 '404': *6 '422': *15 x-github: @@ -68987,9 +69045,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -69013,9 +69071,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -69049,9 +69107,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -69118,9 +69176,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -69184,9 +69242,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: content: application/json: @@ -69252,15 +69310,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *407 + schema: *408 examples: default: value: @@ -69351,9 +69409,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -69376,9 +69434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -69388,7 +69446,7 @@ paths: type: array items: *5 examples: - default: &415 + default: &416 value: - id: 1 slug: octoapp @@ -69445,9 +69503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -69481,7 +69539,7 @@ paths: type: array items: *5 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -69502,9 +69560,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -69538,7 +69596,7 @@ paths: type: array items: *5 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -69559,9 +69617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -69595,7 +69653,7 @@ paths: type: array items: *5 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -69617,9 +69675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -69629,7 +69687,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '404': *6 x-github: githubCloudOnly: false @@ -69649,9 +69707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -69689,7 +69747,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '422': *15 x-github: githubCloudOnly: false @@ -69710,9 +69768,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -69750,7 +69808,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '422': *15 x-github: githubCloudOnly: false @@ -69771,9 +69829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: content: application/json: @@ -69810,7 +69868,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '422': *15 x-github: githubCloudOnly: false @@ -69832,9 +69890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -69868,9 +69926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -69928,9 +69986,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -69988,9 +70046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -70050,9 +70108,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -70074,7 +70132,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -70190,8 +70248,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -70470,7 +70528,7 @@ paths: description: Response content: application/json: - schema: &417 + schema: &418 title: CheckRun description: A check performed on the code of a given code change type: object @@ -70606,7 +70664,7 @@ paths: check. type: array items: *86 - deployment: &773 + deployment: &774 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -70893,9 +70951,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *340 - *341 - - &418 + - *342 + - &419 name: check_run_id description: The unique identifier of the check run. in: path @@ -70907,9 +70965,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: &419 + default: &420 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -71009,9 +71067,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *340 - *341 - - *418 + - *342 + - *419 requestBody: required: true content: @@ -71251,9 +71309,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *419 + default: *420 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71273,9 +71331,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *340 - *341 - - *418 + - *342 + - *419 - *17 - *19 responses: @@ -71385,9 +71443,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *340 - *341 - - *418 + - *342 + - *419 responses: '201': description: Response @@ -71431,8 +71489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -71454,7 +71512,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &421 + schema: &422 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -71552,7 +71610,7 @@ paths: - string - 'null' format: date-time - head_commit: *420 + head_commit: *421 latest_check_runs_count: type: integer check_runs_url: @@ -71580,7 +71638,7 @@ paths: - check_runs_url - pull_requests examples: - default: &422 + default: &423 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -71871,9 +71929,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71892,8 +71950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -72202,9 +72260,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *340 - *341 - - &423 + - *342 + - &424 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -72216,9 +72274,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72241,17 +72299,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *340 - *341 - - *423 - - &478 + - *342 + - *424 + - &479 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &479 + - &480 name: status description: Returns check runs with the specified `status`. in: query @@ -72290,9 +72348,9 @@ paths: type: integer check_runs: type: array - items: *417 + items: *418 examples: - default: &480 + default: &481 value: total_count: 1 check_runs: @@ -72394,9 +72452,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *340 - *341 - - *423 + - *342 + - *424 responses: '201': description: Response @@ -72425,8 +72483,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#list-code-quality-findings-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *61 - *46 @@ -72448,7 +72506,7 @@ paths: application/json: schema: type: array - items: &424 + items: &425 description: Code quality finding type: object properties: @@ -72578,7 +72636,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': &425 + '403': &426 description: Response if the user is not authorized to access Code quality for this repository. content: @@ -72605,8 +72663,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-finding parameters: - - *340 - *341 + - *342 - name: finding_number in: path description: The number that identifies a finding. @@ -72618,7 +72676,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -72647,7 +72705,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': *425 + '403': *426 '404': *6 '503': *115 x-github: @@ -72669,8 +72727,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -72752,7 +72810,7 @@ paths: updated_at: '2023-01-01T00:00:00Z' schedule: weekly ai_findings_option: on_push - '403': *425 + '403': *426 '404': *6 '503': *115 x-github: @@ -72773,8 +72831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -72912,21 +72970,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *340 - *341 - - *426 + - *342 - *427 + - *428 - *19 - *17 - - &445 + - &446 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: *428 - - &446 + schema: *429 + - &447 name: pr description: The number of the pull request for the results you want to list. in: query @@ -72951,13 +73009,13 @@ paths: be returned. in: query required: false - schema: *429 + schema: *430 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *430 + schema: *431 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -72981,7 +73039,7 @@ paths: updated_at: *183 url: *184 html_url: *185 - instances_url: *431 + instances_url: *432 state: *190 fixed_at: *186 dismissed_by: @@ -72989,11 +73047,11 @@ paths: - type: 'null' - *4 dismissed_at: *187 - dismissed_reason: *432 - dismissed_comment: *433 - rule: *434 - tool: *435 - most_recent_instance: *436 + dismissed_reason: *433 + dismissed_comment: *434 + rule: *435 + tool: *436 + most_recent_instance: *437 dismissal_approved_by: anyOf: - type: 'null' @@ -73116,7 +73174,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *36 - '403': &438 + '403': &439 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -73143,9 +73201,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *340 - *341 - - &439 + - *342 + - &440 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -73159,7 +73217,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &441 type: object properties: number: *181 @@ -73167,7 +73225,7 @@ paths: updated_at: *183 url: *184 html_url: *185 - instances_url: *431 + instances_url: *432 state: *190 fixed_at: *186 dismissed_by: @@ -73175,8 +73233,8 @@ paths: - type: 'null' - *4 dismissed_at: *187 - dismissed_reason: *432 - dismissed_comment: *433 + dismissed_reason: *433 + dismissed_comment: *434 rule: type: object properties: @@ -73238,8 +73296,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *435 - most_recent_instance: *436 + tool: *436 + most_recent_instance: *437 dismissal_approved_by: anyOf: - type: 'null' @@ -73250,7 +73308,7 @@ paths: linked_pull_requests: description: Pull requests linked to this alert. type: array - items: *437 + items: *438 required: - number - created_at @@ -73339,7 +73397,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *36 - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -73359,9 +73417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 requestBody: required: true content: @@ -73376,8 +73434,8 @@ paths: enum: - open - dismissed - dismissed_reason: *432 - dismissed_comment: *433 + dismissed_reason: *433 + dismissed_comment: *434 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -73405,7 +73463,7 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: default: value: @@ -73481,7 +73539,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &444 + '403': &445 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -73508,15 +73566,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: - - *340 - *341 - - *439 + - *342 + - *440 responses: '200': description: Response content: application/json: - schema: &441 + schema: &442 type: object properties: status: @@ -73543,13 +73601,13 @@ paths: - description - started_at examples: - default: &442 + default: &443 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &443 + '400': &444 description: Bad Request content: application/json: @@ -73560,7 +73618,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': *438 + '403': *439 '404': *6 '500': *54 x-github: @@ -73585,29 +73643,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: - - *340 - *341 - - *439 + - *342 + - *440 responses: '200': description: OK content: application/json: - schema: *441 + schema: *442 examples: - default: *442 + default: *443 '202': description: Accepted content: application/json: - schema: *441 + schema: *442 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *443 + '400': *444 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -73639,9 +73697,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: - - *340 - *341 - - *439 + - *342 + - *440 requestBody: required: false content: @@ -73687,8 +73745,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *443 - '403': *444 + '400': *444 + '403': *445 '404': *6 '422': description: Unprocessable Entity @@ -73712,13 +73770,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 - *19 - *17 - - *445 - *446 + - *447 responses: '200': description: Response @@ -73729,10 +73787,10 @@ paths: items: type: object properties: - ref: *428 - analysis_key: *447 - environment: *448 - category: *449 + ref: *429 + analysis_key: *448 + environment: *449 + category: *450 state: type: - string @@ -73749,7 +73807,7 @@ paths: properties: text: type: string - location: *450 + location: *451 html_url: type: string classifications: @@ -73757,7 +73815,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *451 + items: *452 examples: default: value: @@ -73794,7 +73852,7 @@ paths: end_column: 50 classifications: - source - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -73828,25 +73886,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *340 - *341 - - *426 + - *342 - *427 + - *428 - *19 - *17 - - *446 + - *447 - 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: *428 + schema: *429 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &452 + schema: &453 type: string description: An identifier for the upload. examples: @@ -73868,23 +73926,23 @@ paths: application/json: schema: type: array - items: &453 + items: &454 type: object properties: - ref: *428 - commit_sha: &461 + ref: *429 + commit_sha: &462 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 64 pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" - analysis_key: *447 + analysis_key: *448 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *449 + category: *450 error: type: string examples: @@ -73909,8 +73967,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *452 - tool: *435 + sarif_id: *453 + tool: *436 deletable: type: boolean warning: @@ -73972,7 +74030,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -74008,8 +74066,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: - - *340 - *341 + - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -74022,7 +74080,7 @@ paths: description: Response content: application/json: - schema: *453 + schema: *454 examples: response: summary: application/json response @@ -74076,7 +74134,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *438 + '403': *439 '404': *6 '422': description: Response if analysis could not be processed @@ -74163,8 +74221,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: - - *340 - *341 + - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -74220,7 +74278,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': *444 + '403': *445 '404': *6 '503': *115 x-github: @@ -74242,8 +74300,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -74251,7 +74309,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 title: CodeQL Database description: A CodeQL database. type: object @@ -74363,7 +74421,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': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -74392,8 +74450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *340 - *341 + - *342 - name: language in: path description: The language of the CodeQL database. @@ -74405,7 +74463,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *455 examples: default: value: @@ -74437,9 +74495,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': &487 + '302': &488 description: Found - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -74461,8 +74519,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *340 - *341 + - *342 - name: language in: path description: The language of the CodeQL database. @@ -74472,7 +74530,7 @@ paths: responses: '204': description: Response - '403': *444 + '403': *445 '404': *6 '503': *115 x-github: @@ -74500,8 +74558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -74510,7 +74568,7 @@ paths: type: object additionalProperties: false properties: - language: &455 + language: &456 type: string description: The language targeted by the CodeQL query enum: @@ -74590,7 +74648,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &459 + schema: &460 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -74600,7 +74658,7 @@ paths: description: The ID of the variant analysis. controller_repo: *66 actor: *4 - query_language: *455 + query_language: *456 query_pack_url: type: string description: The download url for the query pack. @@ -74648,7 +74706,7 @@ paths: items: type: object properties: - repository: &456 + repository: &457 title: Repository Identifier description: Repository Identifier type: object @@ -74690,7 +74748,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &460 + analysis_status: &461 type: string description: The new status of the CodeQL variant analysis repository task. @@ -74722,7 +74780,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &457 + access_mismatch_repos: &458 type: object properties: repository_count: @@ -74737,7 +74795,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: *456 + items: *457 required: - repository_count - repositories @@ -74760,8 +74818,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *457 - over_limit_repos: *457 + no_codeql_db_repos: *458 + over_limit_repos: *458 required: - access_mismatch_repos - not_found_repos @@ -74777,7 +74835,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &458 + value: &459 summary: Default response value: id: 1 @@ -74923,10 +74981,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *458 + value: *459 repository_lists: summary: Response for a successful variant analysis submission - value: *458 + value: *459 '404': *6 '422': description: Unable to process variant analysis submission @@ -74954,8 +75012,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: - - *340 - *341 + - *342 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -74967,9 +75025,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: - default: *458 + default: *459 '404': *6 '503': *115 x-github: @@ -74992,7 +75050,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: - - *340 + - *341 - name: repo in: path description: The name of the controller repository. @@ -75027,7 +75085,7 @@ paths: type: object properties: repository: *66 - analysis_status: *460 + analysis_status: *461 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -75152,8 +75210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -75244,7 +75302,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -75265,8 +75323,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -75360,7 +75418,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *444 + '403': *445 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -75431,8 +75489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -75440,7 +75498,7 @@ paths: schema: type: object properties: - commit_sha: *461 + commit_sha: *462 ref: type: string description: |- @@ -75500,7 +75558,7 @@ paths: schema: type: object properties: - id: *452 + id: *453 url: type: string description: The REST API URL for checking the status of the upload. @@ -75514,7 +75572,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': *444 + '403': *445 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -75537,8 +75595,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *340 - *341 + - *342 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -75586,7 +75644,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': *438 + '403': *439 '404': description: Not Found if the sarif id does not match any upload '503': *115 @@ -75611,8 +75669,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: - - *340 - *341 + - *342 responses: '200': description: Response @@ -75693,8 +75751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *340 - *341 + - *342 - 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 @@ -75822,8 +75880,8 @@ paths: parameters: - *17 - *19 - - *340 - *341 + - *342 responses: '200': description: Response @@ -75839,7 +75897,7 @@ paths: type: integer codespaces: type: array - items: *251 + items: *252 examples: default: value: @@ -76137,8 +76195,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -76202,17 +76260,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '400': *14 '401': *23 '403': *27 @@ -76241,8 +76299,8 @@ paths: parameters: - *17 - *19 - - *340 - *341 + - *342 responses: '200': description: Response @@ -76306,8 +76364,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *340 - *341 + - *342 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -76344,9 +76402,9 @@ paths: type: integer machines: type: array - items: *463 + items: *464 examples: - default: &715 + default: &716 value: total_count: 2 machines: @@ -76386,8 +76444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *340 - *341 + - *342 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -76474,8 +76532,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: - - *340 - *341 + - *342 - 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 @@ -76544,8 +76602,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -76563,7 +76621,7 @@ paths: type: integer secrets: type: array - items: &467 + items: &468 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -76584,7 +76642,7 @@ paths: - created_at - updated_at examples: - default: *464 + default: *465 headers: Link: *67 x-github: @@ -76607,16 +76665,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *465 + schema: *466 examples: - default: *466 + default: *467 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -76636,17 +76694,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *467 + schema: *468 examples: - default: *468 + default: *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76666,8 +76724,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -76720,8 +76778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -76750,8 +76808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *340 - *341 + - *342 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -76789,7 +76847,7 @@ paths: application/json: schema: type: array - items: &469 + items: &470 title: Collaborator description: Collaborator type: object @@ -76982,8 +77040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *340 - *341 + - *342 - *71 responses: '204': @@ -77030,8 +77088,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *340 - *341 + - *342 - *71 requestBody: required: false @@ -77058,7 +77116,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &537 + schema: &538 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -77286,8 +77344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *340 - *341 + - *342 - *71 responses: '204': @@ -77319,8 +77377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *340 - *341 + - *342 - *71 responses: '200': @@ -77341,7 +77399,7 @@ paths: user: anyOf: - type: 'null' - - *469 + - *470 required: - permission - role_name @@ -77395,8 +77453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -77406,7 +77464,7 @@ paths: application/json: schema: type: array - items: &470 + items: &471 title: Commit Comment description: Commit Comment type: object @@ -77464,7 +77522,7 @@ paths: - created_at - updated_at examples: - default: &475 + default: &476 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77523,17 +77581,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 responses: '200': description: Response content: application/json: - schema: *470 + schema: *471 examples: - default: &476 + default: &477 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77590,8 +77648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -77614,7 +77672,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *471 examples: default: value: @@ -77665,8 +77723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -77688,8 +77746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -77716,7 +77774,7 @@ paths: application/json: schema: type: array - items: &471 + items: &472 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -77760,7 +77818,7 @@ paths: - content - created_at examples: - default: &540 + default: &541 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -77805,8 +77863,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -77839,9 +77897,9 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: &472 + default: &473 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -77870,9 +77928,9 @@ paths: description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -77894,10 +77952,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *340 - *341 + - *342 - *97 - - &541 + - &542 name: reaction_id description: The unique identifier of the reaction. in: path @@ -77952,8 +78010,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *340 - *341 + - *342 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -78009,9 +78067,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: &606 + default: &607 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -78105,9 +78163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *340 - *341 - - &474 + - *342 + - &475 name: commit_sha description: The SHA of the commit. in: path @@ -78179,9 +78237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *340 - *341 - - *474 + - *342 + - *475 - *17 - *19 responses: @@ -78191,9 +78249,9 @@ paths: application/json: schema: type: array - items: *470 + items: *471 examples: - default: *475 + default: *476 headers: Link: *67 x-github: @@ -78221,9 +78279,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *340 - *341 - - *474 + - *342 + - *475 requestBody: required: true content: @@ -78258,9 +78316,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *471 examples: - default: *476 + default: *477 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -78288,9 +78346,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *340 - *341 - - *474 + - *342 + - *475 - *17 - *19 responses: @@ -78300,9 +78358,9 @@ paths: application/json: schema: type: array - items: *437 + items: *438 examples: - default: &597 + default: &598 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -78839,11 +78897,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *340 - *341 + - *342 - *19 - *17 - - &477 + - &478 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)" @@ -78858,9 +78916,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - default: &585 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -78948,7 +79006,7 @@ paths: schema: type: string examples: - default: &484 + default: &485 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -78961,7 +79019,7 @@ paths: schema: type: string examples: - default: &485 + default: &486 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -79014,11 +79072,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *340 - *341 - - *477 + - *342 - *478 - *479 + - *480 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -79052,9 +79110,9 @@ paths: type: integer check_runs: type: array - items: *417 + items: *418 examples: - default: *480 + default: *481 headers: Link: *67 x-github: @@ -79079,9 +79137,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *340 - *341 - - *477 + - *342 + - *478 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -79089,7 +79147,7 @@ paths: schema: type: integer example: 1 - - *478 + - *479 - *17 - *19 responses: @@ -79107,7 +79165,7 @@ paths: type: integer check_suites: type: array - items: *421 + items: *422 examples: default: value: @@ -79307,9 +79365,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *340 - *341 - - *477 + - *342 + - *478 - *17 - *19 responses: @@ -79511,9 +79569,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *340 - *341 - - *477 + - *342 + - *478 - *17 - *19 responses: @@ -79523,7 +79581,7 @@ paths: application/json: schema: type: array - items: &694 + items: &695 title: Status description: The status of a commit. type: object @@ -79604,7 +79662,7 @@ paths: site_admin: false headers: Link: *67 - '301': *344 + '301': *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79632,8 +79690,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -79666,11 +79724,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *481 + - *482 code_of_conduct_file: anyOf: - type: 'null' - - &482 + - &483 title: Community Health File type: object properties: @@ -79690,19 +79748,19 @@ paths: contributing: anyOf: - type: 'null' - - *482 + - *483 readme: anyOf: - type: 'null' - - *482 + - *483 issue_template: anyOf: - type: 'null' - - *482 + - *483 pull_request_template: anyOf: - type: 'null' - - *482 + - *483 required: - code_of_conduct - code_of_conduct_file @@ -79831,8 +79889,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *340 - *341 + - *342 - *19 - *17 - name: basehead @@ -79880,8 +79938,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *473 - merge_base_commit: *473 + base_commit: *474 + merge_base_commit: *474 status: type: string enum: @@ -79905,10 +79963,10 @@ paths: - 6 commits: type: array - items: *473 + items: *474 files: type: array - items: *483 + items: *484 required: - url - html_url @@ -80154,12 +80212,12 @@ paths: schema: type: string examples: - default: *484 + default: *485 application/vnd.github.patch: schema: type: string examples: - default: *485 + default: *486 '404': *6 '500': *54 '503': *115 @@ -80204,8 +80262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *340 - *341 + - *342 - name: path description: path parameter in: path @@ -80375,7 +80433,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &486 + response-if-content-is-a-file-github-object: &487 summary: Response if content is a file value: type: file @@ -80512,7 +80570,7 @@ paths: - size - type - url - - &612 + - &613 title: Content File description: Content File type: object @@ -80730,7 +80788,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *486 + response-if-content-is-a-file: *487 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -80799,7 +80857,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *487 + '302': *488 '304': *36 x-github: githubCloudOnly: false @@ -80822,8 +80880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *340 - *341 + - *342 - name: path description: path parameter in: path @@ -80918,7 +80976,7 @@ paths: description: Response content: application/json: - schema: &488 + schema: &489 title: File Commit description: File Commit type: object @@ -81074,7 +81132,7 @@ paths: description: Response content: application/json: - schema: *488 + schema: *489 examples: example-for-creating-a-file: value: @@ -81128,7 +81186,7 @@ paths: schema: oneOf: - *3 - - &518 + - &519 description: Repository rule violation was detected type: object properties: @@ -81149,7 +81207,7 @@ paths: items: type: object properties: - placeholder_id: &685 + placeholder_id: &686 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -81181,8 +81239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *340 - *341 + - *342 - name: path description: path parameter in: path @@ -81243,7 +81301,7 @@ paths: description: Response content: application/json: - schema: *488 + schema: *489 examples: default: value: @@ -81298,8 +81356,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *340 - *341 + - *342 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -81429,8 +81487,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -81582,8 +81640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *340 - *341 + - *342 - *203 - *204 - *205 @@ -81596,10 +81654,11 @@ paths: schema: type: string - *208 - - *489 + - *490 - *209 - *210 - *211 + - *212 - *61 - *46 - *47 @@ -81611,7 +81670,7 @@ paths: application/json: schema: type: array - items: &493 + items: &494 type: object description: A Dependabot alert. properties: @@ -81662,7 +81721,7 @@ paths: - transitive - inconclusive - - security_advisory: *490 + security_advisory: *491 security_vulnerability: *65 url: *184 html_url: *185 @@ -81693,8 +81752,8 @@ paths: dismissal. maxLength: 280 fixed_at: *186 - auto_dismissed_at: *491 - dismissal_request: *492 + auto_dismissed_at: *492 + dismissal_request: *493 assignees: type: array description: The users assigned to this alert. @@ -81727,6 +81786,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -81848,6 +81908,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -81949,9 +82010,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *340 - *341 - - &494 + - *342 + - &495 name: alert_number in: path description: |- @@ -81966,7 +82027,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -81978,6 +82039,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -82098,9 +82160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *340 - *341 - - *494 + - *342 + - *495 requestBody: required: true content: @@ -82173,7 +82235,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -82185,6 +82247,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -82303,8 +82366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -82322,7 +82385,7 @@ paths: type: integer secrets: type: array - items: &497 + items: &498 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -82376,16 +82439,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *495 + schema: *496 examples: - default: *496 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82405,15 +82468,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *497 + schema: *498 examples: default: value: @@ -82439,8 +82502,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -82493,8 +82556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -82517,8 +82580,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: - - *340 - *341 + - *342 - 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 @@ -82695,8 +82758,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: - - *340 - *341 + - *342 responses: '200': description: Response @@ -82955,8 +83018,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *340 - *341 + - *342 - name: sbom_uuid in: path required: true @@ -82967,7 +83030,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *498 + Location: *499 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -82988,8 +83051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -83027,8 +83090,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -83111,7 +83174,7 @@ paths: - version - url additionalProperties: false - metadata: &499 + metadata: &500 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83150,7 +83213,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *499 + metadata: *500 resolved: type: object description: A collection of resolved package dependencies. @@ -83164,7 +83227,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *499 + metadata: *500 relationship: type: string description: A notation of whether a dependency is requested @@ -83297,8 +83360,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *340 - *341 + - *342 - name: sha description: The SHA recorded at creation time. in: query @@ -83339,9 +83402,9 @@ paths: application/json: schema: type: array - items: *500 + items: *501 examples: - default: *501 + default: *502 headers: Link: *67 x-github: @@ -83407,8 +83470,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -83490,7 +83553,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: simple-example: summary: Simple example @@ -83563,9 +83626,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *340 - *341 - - &502 + - *342 + - &503 name: deployment_id description: deployment_id parameter in: path @@ -83577,7 +83640,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -83642,9 +83705,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *340 - *341 - - *502 + - *342 + - *503 responses: '204': description: Response @@ -83666,9 +83729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *340 - *341 - - *502 + - *342 + - *503 - *17 - *19 responses: @@ -83678,7 +83741,7 @@ paths: application/json: schema: type: array - items: &503 + items: &504 title: Deployment Status description: The status of a deployment. type: object @@ -83842,9 +83905,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *340 - *341 - - *502 + - *342 + - *503 requestBody: required: true content: @@ -83919,9 +83982,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: &504 + default: &505 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -83977,9 +84040,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *340 - *341 - - *502 + - *342 + - *503 - name: status_id in: path required: true @@ -83990,9 +84053,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 '404': *6 x-github: githubCloudOnly: false @@ -84017,8 +84080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -84075,8 +84138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -84094,7 +84157,7 @@ paths: - 5 environments: type: array - items: &506 + items: &507 title: Environment description: Details of a deployment environment type: object @@ -84156,7 +84219,7 @@ paths: type: string examples: - wait_timer - wait_timer: &508 + wait_timer: &509 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -84198,7 +84261,7 @@ paths: items: type: object properties: - type: *505 + type: *506 reviewer: anyOf: - *4 @@ -84225,7 +84288,7 @@ paths: - id - node_id - type - deployment_branch_policy: &509 + deployment_branch_policy: &510 type: - object - 'null' @@ -84342,9 +84405,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *340 - *341 - - &507 + - *342 + - &508 name: environment_name in: path required: true @@ -84357,9 +84420,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &510 + default: &511 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -84443,9 +84506,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *340 - *341 - - *507 + - *342 + - *508 requestBody: required: false content: @@ -84455,7 +84518,7 @@ paths: - object - 'null' properties: - wait_timer: *508 + wait_timer: *509 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -84474,14 +84537,14 @@ paths: items: type: object properties: - type: *505 + type: *506 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *509 + deployment_branch_policy: *510 additionalProperties: false examples: default: @@ -84501,9 +84564,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -84527,9 +84590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *340 - *341 - - *507 + - *342 + - *508 responses: '204': description: Default response @@ -84554,9 +84617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *17 - *19 responses: @@ -84575,7 +84638,7 @@ paths: - 2 branch_policies: type: array - items: &511 + items: &512 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -84636,9 +84699,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 + - *342 + - *508 requestBody: required: true content: @@ -84686,9 +84749,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - example-wildcard: &512 + example-wildcard: &513 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -84730,10 +84793,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 - - &513 + - *342 + - *508 + - &514 name: branch_policy_id in: path required: true @@ -84745,9 +84808,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84766,10 +84829,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 - - *513 + - *342 + - *508 + - *514 requestBody: required: true content: @@ -84798,9 +84861,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84819,10 +84882,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 - - *513 + - *342 + - *508 + - *514 responses: '204': description: Response @@ -84847,9 +84910,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *507 + - *508 + - *342 - *341 - - *340 responses: '200': description: List of deployment protection rules @@ -84866,7 +84929,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &514 + items: &515 title: Deployment protection rule description: Deployment protection rule type: object @@ -84888,7 +84951,7 @@ paths: for the environment. examples: - true - app: &515 + app: &516 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -84991,9 +85054,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: - - *507 + - *508 + - *342 - *341 - - *340 requestBody: content: application/json: @@ -85014,9 +85077,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *514 + schema: *515 examples: - default: &516 + default: &517 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -85051,9 +85114,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: - - *507 + - *508 + - *342 - *341 - - *340 - *19 - *17 responses: @@ -85073,7 +85136,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *515 + items: *516 examples: default: value: @@ -85108,10 +85171,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *340 - *341 - - *507 - - &517 + - *342 + - *508 + - &518 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -85123,9 +85186,9 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85146,10 +85209,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *507 + - *508 + - *342 - *341 - - *340 - - *517 + - *518 responses: '204': description: Response @@ -85175,9 +85238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *17 - *19 responses: @@ -85195,9 +85258,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -85222,9 +85285,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *340 - *341 - - *507 + - *342 + - *508 responses: '200': description: Response @@ -85254,18 +85317,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *164 responses: '200': description: Response content: application/json: - schema: *384 + schema: *385 examples: - default: *398 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85287,9 +85350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *164 requestBody: required: true @@ -85347,9 +85410,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *164 responses: '204': @@ -85375,9 +85438,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *173 - *19 responses: @@ -85395,9 +85458,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -85420,9 +85483,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *340 - *341 - - *507 + - *342 + - *508 requestBody: required: true content: @@ -85474,18 +85537,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *167 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *399 + default: *400 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85506,10 +85569,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *340 - *341 + - *342 - *167 - - *507 + - *508 requestBody: required: true content: @@ -85551,10 +85614,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *340 - *341 + - *342 - *167 - - *507 + - *508 responses: '204': description: Response @@ -85576,8 +85639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -85645,8 +85708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *340 - *341 + - *342 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -85805,8 +85868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -85839,9 +85902,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 '400': *14 '422': *15 '403': *27 @@ -85862,8 +85925,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -85923,7 +85986,7 @@ paths: schema: oneOf: - *125 - - *518 + - *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85948,8 +86011,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *340 - *341 + - *342 - name: file_sha in: path required: true @@ -86049,8 +86112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -86159,7 +86222,7 @@ paths: description: Response content: application/json: - schema: &519 + schema: &520 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -86386,15 +86449,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *340 - *341 - - *474 + - *342 + - *475 responses: '200': description: Response content: application/json: - schema: *519 + schema: *520 examples: default: value: @@ -86450,9 +86513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *340 - *341 - - &520 + - *342 + - &521 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. @@ -86469,7 +86532,7 @@ paths: application/json: schema: type: array - items: &521 + items: &522 title: Git Reference description: Git references within a repository type: object @@ -86545,17 +86608,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *340 - *341 - - *520 + - *342 + - *521 responses: '200': description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: &522 + default: &523 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -86584,8 +86647,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -86614,9 +86677,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: *522 + default: *523 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -86642,9 +86705,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *340 - *341 - - *520 + - *342 + - *521 requestBody: required: true content: @@ -86673,9 +86736,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: *522 + default: *523 '422': *15 '409': *53 x-github: @@ -86693,9 +86756,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *340 - *341 - - *520 + - *342 + - *521 responses: '204': description: Response @@ -86750,8 +86813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -86818,7 +86881,7 @@ paths: description: Response content: application/json: - schema: &524 + schema: &525 title: Git Tag description: Metadata for a Git tag type: object @@ -86874,7 +86937,7 @@ paths: - sha - type - url - verification: *523 + verification: *524 required: - sha - url @@ -86884,7 +86947,7 @@ paths: - tag - message examples: - default: &525 + default: &526 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -86957,8 +87020,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *340 - *341 + - *342 - name: tag_sha in: path required: true @@ -86969,9 +87032,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: - default: *525 + default: *526 '404': *6 '409': *53 x-github: @@ -86995,8 +87058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -87070,7 +87133,7 @@ paths: description: Response content: application/json: - schema: &526 + schema: &527 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -87172,8 +87235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *340 - *341 + - *342 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -87196,7 +87259,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *527 examples: default-response: summary: Default response @@ -87254,8 +87317,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -87299,8 +87362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -87310,7 +87373,7 @@ paths: application/json: schema: type: array - items: &527 + items: &528 title: Webhook description: Webhooks for repositories. type: object @@ -87373,7 +87436,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &804 + last_response: &805 title: Hook Response type: object properties: @@ -87450,8 +87513,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -87504,9 +87567,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: &528 + default: &529 value: type: Repository id: 12345678 @@ -87554,17 +87617,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 '404': *6 x-github: githubCloudOnly: false @@ -87584,9 +87647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 requestBody: required: true content: @@ -87631,9 +87694,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 '422': *15 '404': *6 x-github: @@ -87654,9 +87717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '204': description: Response @@ -87680,9 +87743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '200': description: Response @@ -87709,9 +87772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *340 - *341 - - *219 + - *342 + - *220 requestBody: required: false content: @@ -87755,12 +87818,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *340 - *341 - - *219 - - *17 + - *342 - *220 + - *17 - *221 + - *222 responses: '200': description: Response @@ -87768,9 +87831,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *223 + default: *224 '400': *14 '422': *15 x-github: @@ -87789,18 +87852,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 '400': *14 '422': *15 x-github: @@ -87819,9 +87882,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 - *16 responses: '202': *38 @@ -87844,9 +87907,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '204': description: Response @@ -87871,9 +87934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '204': description: Response @@ -87896,8 +87959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response if immutable releases are enabled @@ -87945,8 +88008,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *340 - *341 + - *342 responses: '204': *58 '409': *53 @@ -87966,8 +88029,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *340 - *341 + - *342 responses: '204': *58 '409': *53 @@ -88024,14 +88087,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &529 + schema: &530 title: Import description: A repository import from an external source. type: object @@ -88138,7 +88201,7 @@ paths: - html_url - authors_url examples: - default: &532 + default: &533 value: vcs: subversion use_lfs: true @@ -88154,7 +88217,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': &530 + '503': &531 description: Unavailable due to service under maintenance. content: application/json: @@ -88183,8 +88246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -88232,7 +88295,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: default: value: @@ -88257,7 +88320,7 @@ paths: type: string '422': *15 '404': *6 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88285,8 +88348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -88338,7 +88401,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: example-1: summary: Example 1 @@ -88386,7 +88449,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': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88409,12 +88472,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *340 - *341 + - *342 responses: '204': description: Response - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88440,9 +88503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *340 - *341 - - &738 + - *342 + - &739 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -88456,7 +88519,7 @@ paths: application/json: schema: type: array - items: &531 + items: &532 title: Porter Author description: Porter Author type: object @@ -88510,7 +88573,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': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88535,8 +88598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *340 - *341 + - *342 - name: author_id in: path required: true @@ -88566,7 +88629,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: default: value: @@ -88579,7 +88642,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88603,8 +88666,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -88645,7 +88708,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88673,8 +88736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -88701,11 +88764,11 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: - default: *532 + default: *533 '422': *15 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88728,8 +88791,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -88737,8 +88800,8 @@ paths: application/json: schema: *20 examples: - default: *533 - '301': *344 + default: *534 + '301': *345 '404': *6 x-github: githubCloudOnly: false @@ -88758,8 +88821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -88767,12 +88830,12 @@ paths: application/json: schema: anyOf: - - *238 + - *239 - type: object properties: {} additionalProperties: false examples: - default: &535 + default: &536 value: limit: collaborators_only origin: repository @@ -88797,13 +88860,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *534 + schema: *535 examples: default: summary: Example request body @@ -88815,9 +88878,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *535 + default: *536 '409': description: Response x-github: @@ -88839,8 +88902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -88867,8 +88930,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -88922,13 +88985,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: &536 + schema: &537 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -88978,13 +89041,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *536 + schema: *537 examples: default: summary: Example request body @@ -89017,8 +89080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89071,8 +89134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -89148,8 +89211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -89159,9 +89222,9 @@ paths: application/json: schema: type: array - items: *537 + items: *538 examples: - default: &730 + default: &731 value: - id: 1 repository: @@ -89292,9 +89355,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *340 - *341 - - *242 + - *342 + - *243 requestBody: required: false content: @@ -89323,7 +89386,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: default: value: @@ -89454,9 +89517,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *340 - *341 - - *242 + - *342 + - *243 responses: '204': description: Response @@ -89479,8 +89542,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89488,9 +89551,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *538 + default: *539 '404': *6 x-github: githubCloudOnly: false @@ -89519,8 +89582,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *340 - *341 + - *342 - 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 @@ -89582,7 +89645,7 @@ paths: required: false schema: type: string - - *249 + - *250 - name: sort description: What to sort results by. in: query @@ -89607,7 +89670,7 @@ paths: type: array items: *83 examples: - default: &548 + default: &549 value: - id: 1 node_id: MDU6SXNzdWUx @@ -89756,7 +89819,7 @@ paths: state_reason: completed headers: Link: *67 - '301': *344 + '301': *345 '422': *15 '404': *6 x-github: @@ -89785,8 +89848,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -89895,7 +89958,7 @@ paths: application/json: schema: *83 examples: - default: &545 + default: &546 value: id: 1 node_id: MDU6SXNzdWUx @@ -90061,8 +90124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *340 - *341 + - *342 - *105 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -90085,7 +90148,7 @@ paths: type: array items: *84 examples: - default: &547 + default: &548 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -90144,8 +90207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '200': @@ -90154,7 +90217,7 @@ paths: application/json: schema: *84 examples: - default: &539 + default: &540 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -90210,8 +90273,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -90236,7 +90299,7 @@ paths: application/json: schema: *84 examples: - default: *539 + default: *540 '422': *15 x-github: githubCloudOnly: false @@ -90254,8 +90317,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -90284,8 +90347,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '200': @@ -90365,8 +90428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -90392,8 +90455,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -90420,9 +90483,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -90443,8 +90506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -90477,16 +90540,16 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -90508,10 +90571,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *340 - *341 + - *342 - *97 - - *541 + - *542 responses: '204': description: Response @@ -90531,8 +90594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -90542,7 +90605,7 @@ paths: application/json: schema: type: array - items: &544 + items: &545 title: Issue Event description: Issue Event type: object @@ -90689,7 +90752,7 @@ paths: required: - from - to - issue_type: &542 + issue_type: &543 title: Issue Type description: The type of issue. type: @@ -90720,11 +90783,11 @@ paths: required: - id - name - prev_issue_type: *542 + prev_issue_type: *543 sub_issue: anyOf: - type: 'null' - - &543 + - &544 title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency @@ -90782,19 +90845,19 @@ paths: parent_issue: anyOf: - type: 'null' - - *543 + - *544 blocked_by: anyOf: - type: 'null' - - *543 + - *544 blocking: anyOf: - type: 'null' - - *543 + - *544 intent: anyOf: - type: 'null' - - &549 + - &550 title: Issue Event Intent description: The intent behind an agent's action on an issue, including the rationale and confidence. Present (and `null` @@ -91016,8 +91079,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *340 - *341 + - *342 - name: event_id in: path required: true @@ -91028,7 +91091,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: default: value: @@ -91255,9 +91318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *340 - *341 - - &546 + - *342 + - &547 name: issue_number description: The number that identifies the issue. in: path @@ -91273,7 +91336,7 @@ paths: examples: default: summary: Issue - value: *545 + value: *546 pinned_comment: summary: Issue with pinned comment value: @@ -91453,7 +91516,7 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *344 + '301': *345 '404': *6 '410': *31 '304': *36 @@ -91480,9 +91543,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -91847,11 +91910,11 @@ paths: - already_applied - issue_already_closed examples: - default: *545 + default: *546 '422': *15 '503': *115 '403': *27 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -91871,9 +91934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -91923,7 +91986,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91939,9 +92002,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: content: application/json: @@ -91968,7 +92031,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91990,9 +92053,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: - - *340 - *341 - - *546 + - *342 + - *547 - name: assignee in: path required: true @@ -92032,9 +92095,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *88 - *17 - *19 @@ -92047,7 +92110,7 @@ paths: type: array items: *84 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 @@ -92080,9 +92143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -92106,7 +92169,7 @@ paths: application/json: schema: *84 examples: - default: *539 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -92141,9 +92204,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -92155,10 +92218,10 @@ paths: type: array items: *83 examples: - default: *548 + default: *549 headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -92188,9 +92251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -92214,13 +92277,13 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *344 + '301': *345 '403': *27 '410': *31 '422': *15 @@ -92253,9 +92316,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -92269,8 +92332,8 @@ paths: application/json: schema: *83 examples: - default: *545 - '301': *344 + default: *546 + '301': *345 '400': *14 '401': *23 '403': *27 @@ -92301,9 +92364,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -92315,10 +92378,10 @@ paths: type: array items: *83 examples: - default: *548 + default: *549 headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -92337,9 +92400,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -92353,7 +92416,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &555 + - &556 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -92394,7 +92457,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - label - id @@ -92406,7 +92469,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &557 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -92447,7 +92510,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - label - id @@ -92488,7 +92551,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - id - node_id @@ -92542,7 +92605,7 @@ paths: - performed_via_github_app - assignee - assigner - - &557 + - &558 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -92588,7 +92651,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &559 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -92634,7 +92697,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &560 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -92683,7 +92746,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &561 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -92725,7 +92788,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &562 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -92767,7 +92830,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &562 + - &563 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -92823,7 +92886,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &563 + - &564 title: Locked Issue Event description: Locked Issue Event type: object @@ -92868,7 +92931,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &565 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -92929,7 +92992,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &566 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -92990,7 +93053,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &567 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -93051,7 +93114,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &568 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -93109,7 +93172,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &570 + - &571 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -93137,11 +93200,11 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *542 + issue_type: *543 intent: anyOf: - type: 'null' - - *549 + - *550 required: - issue_type - id @@ -93153,7 +93216,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &572 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -93181,11 +93244,11 @@ paths: anyOf: - type: 'null' - *5 - prev_issue_type: *542 + prev_issue_type: *543 intent: anyOf: - type: 'null' - - *549 + - *550 required: - prev_issue_type - id @@ -93197,7 +93260,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &572 + - &573 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -93225,12 +93288,12 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *542 - prev_issue_type: *542 + issue_type: *543 + prev_issue_type: *543 intent: anyOf: - type: 'null' - - *549 + - *550 required: - issue_type - prev_issue_type @@ -93243,7 +93306,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &573 + - &574 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -93274,7 +93337,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *543 + - *544 required: - sub_issue - id @@ -93286,7 +93349,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &575 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -93317,7 +93380,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *543 + - *544 required: - sub_issue - id @@ -93329,7 +93392,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &576 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -93360,7 +93423,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *543 + - *544 required: - parent_issue - id @@ -93372,7 +93435,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &576 + - &577 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -93403,7 +93466,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *543 + - *544 required: - parent_issue - id @@ -93415,7 +93478,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &578 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -93446,7 +93509,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *543 + - *544 required: - blocked_by - id @@ -93458,7 +93521,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &579 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -93489,7 +93552,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *543 + - *544 required: - blocked_by - id @@ -93501,7 +93564,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &580 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -93532,7 +93595,7 @@ paths: blocking: anyOf: - type: 'null' - - *543 + - *544 required: - blocking - id @@ -93544,7 +93607,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &581 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -93575,7 +93638,7 @@ paths: blocking: anyOf: - type: 'null' - - *543 + - *544 required: - blocking - id @@ -93639,9 +93702,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -93651,9 +93714,9 @@ paths: application/json: schema: type: array - items: *550 + items: *551 examples: - default: &551 + default: &552 value: - issue_field_id: 1 issue_field_name: DRI @@ -93693,7 +93756,7 @@ paths: color: green headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -93724,9 +93787,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -93798,9 +93861,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *550 + items: *551 examples: - default: *551 + default: *552 '400': *14 '403': *27 '404': *6 @@ -93836,9 +93899,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -93905,9 +93968,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *550 + items: *551 examples: - default: *551 + default: *552 '400': *14 '403': *27 '404': *6 @@ -93938,10 +94001,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *340 - *341 - - *546 - - *245 + - *342 + - *547 + - *246 responses: '204': description: Issue field value deleted successfully @@ -93966,9 +94029,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -93980,7 +94043,7 @@ paths: type: array items: *82 examples: - default: &552 + default: &553 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -93998,7 +94061,7 @@ paths: default: false headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -94016,9 +94079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -94098,8 +94161,8 @@ paths: type: array items: *82 examples: - default: *552 - '301': *344 + default: *553 + '301': *345 '404': *6 '410': *31 '422': *15 @@ -94118,9 +94181,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -94182,8 +94245,8 @@ paths: type: array items: *82 examples: - default: *552 - '301': *344 + default: *553 + '301': *345 '404': *6 '410': *31 '422': *15 @@ -94202,13 +94265,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 responses: '204': description: Response - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -94229,9 +94292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: name in: path required: true @@ -94255,7 +94318,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -94277,9 +94340,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -94326,9 +94389,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 responses: '204': description: Response @@ -94358,9 +94421,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 responses: '200': description: Response @@ -94368,8 +94431,8 @@ paths: application/json: schema: *83 examples: - default: *545 - '301': *344 + default: *546 + '301': *345 '404': *6 '410': *31 x-github: @@ -94388,9 +94451,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - 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. @@ -94416,9 +94479,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -94440,9 +94503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -94474,16 +94537,16 @@ paths: description: Response content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Response content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -94505,10 +94568,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *340 - *341 - - *546 - - *541 + - *342 + - *547 + - *542 responses: '204': description: Response @@ -94537,9 +94600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -94563,7 +94626,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -94596,9 +94659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -94610,7 +94673,7 @@ paths: type: array items: *83 examples: - default: *548 + default: *549 headers: Link: *67 '404': *6 @@ -94642,9 +94705,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -94673,7 +94736,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -94700,9 +94763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -94735,7 +94798,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 '403': *27 '404': *6 '422': *7 @@ -94764,9 +94827,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-issue-suggestions parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: state in: query required: false @@ -94803,7 +94866,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Issue Suggestion description: An agent-proposed change to an issue that a maintainer can approve or dismiss. @@ -94967,9 +95030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#approve-an-issue-suggestion parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: suggestion_id in: path required: true @@ -94981,9 +95044,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: &554 + default: &555 value: id: 12 issue_id: 4567 @@ -95021,9 +95084,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#dismiss-an-issue-suggestion parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: suggestion_id in: path required: true @@ -95035,9 +95098,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *554 + default: *555 '403': *27 '404': *6 '422': *15 @@ -95057,9 +95120,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 - name: exclude @@ -95080,7 +95143,6 @@ paths: description: Timeline Event type: object anyOf: - - *555 - *556 - *557 - *558 @@ -95093,6 +95155,7 @@ paths: - *565 - *566 - *567 + - *568 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -95149,11 +95212,11 @@ paths: pin: anyOf: - type: 'null' - - *568 + - *569 minimized: anyOf: - type: 'null' - - *569 + - *570 required: - event - actor @@ -95429,7 +95492,7 @@ paths: type: string comments: type: array - items: &600 + items: &601 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -95670,7 +95733,7 @@ paths: type: string comments: type: array - items: *470 + items: *471 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -95702,7 +95765,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - id - node_id @@ -95787,7 +95850,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - id - node_id @@ -95798,7 +95861,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *570 - *571 - *572 - *573 @@ -95809,6 +95871,7 @@ paths: - *578 - *579 - *580 + - *581 examples: default: value: @@ -95982,8 +96045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -95993,7 +96056,7 @@ paths: application/json: schema: type: array - items: &581 + items: &582 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -96061,8 +96124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -96098,9 +96161,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: &582 + default: &583 value: id: 1 key: ssh-rsa AAA... @@ -96134,9 +96197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *340 - *341 - - &583 + - *342 + - &584 name: key_id description: The unique identifier of the key. in: path @@ -96148,9 +96211,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: *582 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -96168,9 +96231,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *340 - *341 - - *583 + - *342 + - *584 responses: '204': description: Response @@ -96190,8 +96253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -96203,7 +96266,7 @@ paths: type: array items: *82 examples: - default: *552 + default: *553 headers: Link: *67 '404': *6 @@ -96224,8 +96287,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -96263,7 +96326,7 @@ paths: application/json: schema: *82 examples: - default: &584 + default: &585 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -96295,8 +96358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *340 - *341 + - *342 - name: name in: path required: true @@ -96309,7 +96372,7 @@ paths: application/json: schema: *82 examples: - default: *584 + default: *585 '404': *6 x-github: githubCloudOnly: false @@ -96326,8 +96389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *340 - *341 + - *342 - name: name in: path required: true @@ -96392,8 +96455,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *340 - *341 + - *342 - name: name in: path required: true @@ -96419,8 +96482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -96459,9 +96522,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *340 - *341 - - *445 + - *342 + - *446 responses: '200': description: Response @@ -96608,8 +96671,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -96674,8 +96737,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -96709,9 +96772,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *473 + schema: *474 examples: - default: *585 + default: *586 '204': description: Response when already merged '404': @@ -96736,8 +96799,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *340 - *341 + - *342 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -96778,7 +96841,7 @@ paths: application/json: schema: type: array - items: *282 + items: *283 examples: default: value: @@ -96834,8 +96897,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -96875,9 +96938,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: &586 + default: &587 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -96936,9 +96999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *340 - *341 - - &587 + - *342 + - &588 name: milestone_number description: The number that identifies the milestone. in: path @@ -96950,9 +97013,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: *586 + default: *587 '404': *6 x-github: githubCloudOnly: false @@ -96969,9 +97032,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *340 - *341 - - *587 + - *342 + - *588 requestBody: required: false content: @@ -97009,9 +97072,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: *586 + default: *587 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97027,9 +97090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *340 - *341 - - *587 + - *342 + - *588 responses: '204': description: Response @@ -97050,9 +97113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *340 - *341 - - *587 + - *342 + - *588 - *17 - *19 responses: @@ -97064,7 +97127,7 @@ paths: type: array items: *82 examples: - default: *552 + default: *553 headers: Link: *67 x-github: @@ -97083,12 +97146,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *340 - *341 - - *588 + - *342 - *589 - - *88 - *590 + - *88 + - *591 - *17 - *19 responses: @@ -97100,7 +97163,7 @@ paths: type: array items: *108 examples: - default: *591 + default: *592 headers: Link: *67 x-github: @@ -97124,8 +97187,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -97183,14 +97246,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &592 + schema: &593 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -97334,7 +97397,7 @@ paths: - custom_404 - public examples: - default: &593 + default: &594 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -97375,8 +97438,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97431,9 +97494,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '422': *15 '409': *53 x-github: @@ -97456,8 +97519,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97557,8 +97620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -97584,8 +97647,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -97595,7 +97658,7 @@ paths: application/json: schema: type: array - items: &594 + items: &595 title: Page Build description: Page Build type: object @@ -97687,8 +97750,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -97735,16 +97798,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: &595 + default: &596 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -97792,8 +97855,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *340 - *341 + - *342 - name: build_id in: path required: true @@ -97804,9 +97867,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: *595 + default: *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97826,8 +97889,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97935,9 +97998,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *340 - *341 - - &596 + - *342 + - &597 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -97995,9 +98058,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *340 - *341 - - *596 + - *342 + - *597 responses: '204': *58 '404': *6 @@ -98024,8 +98087,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -98320,8 +98383,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: - - *340 - *341 + - *342 responses: '200': description: Private vulnerability reporting status @@ -98358,8 +98421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': *58 '422': *14 @@ -98380,8 +98443,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': *58 '422': *14 @@ -98403,8 +98466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -98412,7 +98475,7 @@ paths: application/json: schema: type: array - items: *296 + items: *297 examples: default: value: @@ -98443,8 +98506,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -98456,7 +98519,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *296 + items: *297 required: - properties examples: @@ -98506,8 +98569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *340 - *341 + - *342 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -98567,9 +98630,9 @@ paths: application/json: schema: type: array - items: *437 + items: *438 examples: - default: *597 + default: *598 headers: Link: *67 '304': *36 @@ -98601,8 +98664,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -98669,7 +98732,7 @@ paths: description: Response content: application/json: - schema: &602 + schema: &603 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -98798,7 +98861,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *283 active_lock_reason: type: - string @@ -98837,7 +98900,7 @@ paths: items: *4 requested_teams: type: array - items: *261 + items: *262 head: type: object properties: @@ -98875,14 +98938,14 @@ paths: _links: type: object properties: - comments: *283 - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + comments: *284 + commits: *284 + statuses: *284 + html: *284 + issue: *284 + review_comments: *284 + review_comment: *284 + self: *284 required: - comments - commits @@ -98893,8 +98956,8 @@ paths: - review_comment - self author_association: *80 - auto_merge: *598 - stack: *599 + auto_merge: *599 + stack: *600 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -98994,7 +99057,7 @@ paths: - merged_by - review_comments examples: - default: &603 + default: &604 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -99501,8 +99564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *340 - *341 + - *342 - name: sort in: query required: false @@ -99531,9 +99594,9 @@ paths: application/json: schema: type: array - items: *600 + items: *601 examples: - default: &605 + default: &606 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -99610,17 +99673,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *340 - *341 + - *342 - *97 responses: '200': description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: &601 + default: &602 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -99695,8 +99758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -99719,9 +99782,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: *601 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99737,8 +99800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -99760,8 +99823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *340 - *341 + - *342 - *97 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -99788,9 +99851,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -99811,8 +99874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -99845,16 +99908,16 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -99876,10 +99939,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *340 - *341 + - *342 - *97 - - *541 + - *542 responses: '204': description: Response @@ -99922,9 +99985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *340 - *341 - - &604 + - *342 + - &605 name: pull_number description: The number that identifies the pull request. in: path @@ -99937,9 +100000,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 '304': *36 '404': *6 '406': @@ -99974,9 +100037,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -100018,9 +100081,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 '422': *15 '403': *27 x-github: @@ -100042,9 +100105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: true content: @@ -100105,17 +100168,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '401': *23 '403': *27 '404': *6 @@ -100145,9 +100208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *105 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -100168,9 +100231,9 @@ paths: application/json: schema: type: array - items: *600 + items: *601 examples: - default: *605 + default: *606 headers: Link: *67 x-github: @@ -100203,9 +100266,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: true content: @@ -100311,7 +100374,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: example-for-a-multi-line-comment: value: @@ -100399,9 +100462,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *97 requestBody: required: true @@ -100424,7 +100487,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: default: value: @@ -100510,9 +100573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *17 - *19 responses: @@ -100522,9 +100585,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *606 + default: *607 headers: Link: *67 x-github: @@ -100554,9 +100617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *17 - *19 responses: @@ -100566,7 +100629,7 @@ paths: application/json: schema: type: array - items: *483 + items: *484 examples: default: value: @@ -100604,9 +100667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *340 - *341 - - *604 + - *342 + - *605 responses: '204': description: Response if pull request has been merged @@ -100629,9 +100692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -100754,9 +100817,9 @@ paths: category: pulls subcategory: pulls parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -100809,7 +100872,7 @@ paths: description: if the merge request was accepted and will run in the background content: application/json: - schema: &607 + schema: &608 title: Pull Request Merge Async Result description: Pull Request Merge Async Result type: object @@ -100894,7 +100957,7 @@ paths: merge queue content: application/json: - schema: *607 + schema: *608 examples: response-if-pull-request-was-already-merged: summary: Already merged @@ -100914,7 +100977,7 @@ paths: this pull request content: application/json: - schema: *607 + schema: *608 examples: response-if-a-merge-request-already-exists: value: @@ -100930,7 +100993,7 @@ paths: it is closed content: application/json: - schema: *607 + schema: *608 examples: response-if-pull-request-is-not-ready-to-be-merged: value: @@ -100962,9 +101025,9 @@ paths: category: pulls subcategory: pulls parameters: - - *340 - *341 - - *604 + - *342 + - *605 - name: uuid description: The UUID of the asynchronous merge request, as returned when the merge was requested. @@ -100977,7 +101040,7 @@ paths: description: the current result of the asynchronous merge request content: application/json: - schema: *607 + schema: *608 examples: response-if-the-merge-is-still-queued: summary: Still queued @@ -101025,9 +101088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 responses: '200': description: Response @@ -101102,9 +101165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -101141,7 +101204,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: default: value: @@ -101677,9 +101740,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: true content: @@ -101713,7 +101776,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: default: value: @@ -102198,9 +102261,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *17 - *19 responses: @@ -102210,7 +102273,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -102366,9 +102429,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -102458,9 +102521,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: &610 + default: &611 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102523,10 +102586,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - &609 + - *342 + - *605 + - &610 name: review_id description: The unique identifier of the review. in: path @@ -102538,9 +102601,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: &611 + default: &612 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -102599,10 +102662,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 requestBody: required: true content: @@ -102625,7 +102688,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -102687,18 +102750,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 responses: '200': description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *610 + default: *611 '422': *7 '404': *6 x-github: @@ -102725,10 +102788,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 - *17 - *19 responses: @@ -102826,9 +102889,9 @@ paths: _links: type: object properties: - self: *283 - html: *283 - pull_request: *283 + self: *284 + html: *284 + pull_request: *284 required: - self - html @@ -102986,10 +103049,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 requestBody: required: true content: @@ -103018,7 +103081,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -103081,10 +103144,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 requestBody: required: true content: @@ -103119,9 +103182,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *611 + default: *612 '404': *6 '422': *7 '403': *27 @@ -103143,9 +103206,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -103209,8 +103272,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *340 - *341 + - *342 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -103223,9 +103286,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: &613 + default: &614 value: type: file encoding: base64 @@ -103267,8 +103330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *340 - *341 + - *342 - name: dir description: The alternate path to look for a README file in: path @@ -103288,9 +103351,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *613 + default: *614 '404': *6 '422': *15 x-github: @@ -103312,8 +103375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -103323,7 +103386,7 @@ paths: application/json: schema: type: array - items: *614 + items: *615 examples: default: value: @@ -103422,8 +103485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -103499,9 +103562,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: &618 + default: &619 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -103606,9 +103669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *340 - *341 - - &616 + - *342 + - &617 name: asset_id description: The unique identifier of the asset. in: path @@ -103620,9 +103683,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: - default: &617 + default: &618 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 @@ -103657,7 +103720,7 @@ paths: type: User site_admin: false '404': *6 - '302': *487 + '302': *488 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103673,9 +103736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *340 - *341 - - *616 + - *342 + - *617 requestBody: required: false content: @@ -103704,9 +103767,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: - default: *617 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103722,9 +103785,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *340 - *341 - - *616 + - *342 + - *617 responses: '204': description: Response @@ -103749,8 +103812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -103836,16 +103899,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *618 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -103863,8 +103926,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *340 - *341 + - *342 - name: tag description: tag parameter in: path @@ -103877,9 +103940,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *618 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -103901,9 +103964,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *340 - *341 - - &619 + - *342 + - &620 name: release_id description: The unique identifier of the release. in: path @@ -103917,9 +103980,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: *614 + schema: *615 examples: - default: *618 + default: *619 '401': description: Unauthorized x-github: @@ -103943,9 +104006,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 requestBody: required: false content: @@ -104009,9 +104072,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *618 + default: *619 '404': description: Not Found if the discussion category name is invalid content: @@ -104032,9 +104095,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 responses: '204': description: Response @@ -104055,9 +104118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *340 - *341 - - *619 + - *342 + - *620 - *17 - *19 responses: @@ -104067,7 +104130,7 @@ paths: application/json: schema: type: array - items: *615 + items: *616 examples: default: value: @@ -104148,9 +104211,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: - - *340 - *341 - - *619 + - *342 + - *620 - name: name in: query required: true @@ -104176,7 +104239,7 @@ paths: description: Response for successful upload content: application/json: - schema: *615 + schema: *616 examples: response-for-successful-upload: value: @@ -104231,9 +104294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 - 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. @@ -104257,9 +104320,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -104280,9 +104343,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 requestBody: required: true content: @@ -104312,16 +104375,16 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -104343,10 +104406,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *340 - *341 - - *619 - - *541 + - *342 + - *620 + - *542 responses: '204': description: Response @@ -104370,9 +104433,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 - *17 - *19 responses: @@ -104388,8 +104451,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *303 - - &620 + - *304 + - &621 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -104408,72 +104471,72 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *304 - - *620 - allOf: - *305 - - *620 + - *621 - allOf: - *306 - - *620 - - allOf: - *621 - - *620 - allOf: - *307 - - *620 + - *621 + - allOf: + - *622 + - *621 - allOf: - *308 - - *620 + - *621 - allOf: - *309 - - *620 + - *621 - allOf: - *310 - - *620 + - *621 - allOf: - *311 - - *620 + - *621 - allOf: - *312 - - *620 + - *621 - allOf: - *313 - - *620 + - *621 - allOf: - *314 - - *620 + - *621 - allOf: - *315 - - *620 + - *621 - allOf: - *316 - - *620 + - *621 - allOf: - - *321 - - *620 + - *317 + - *621 - allOf: - *322 - - *620 + - *621 - allOf: - *323 - - *620 + - *621 - allOf: - - *622 - - *620 + - *324 + - *621 - allOf: - - *317 - - *620 + - *623 + - *621 - allOf: - *318 - - *620 + - *621 - allOf: - *319 - - *620 + - *621 - allOf: - *320 - - *620 + - *621 + - allOf: + - *321 + - *621 examples: default: value: @@ -104512,8 +104575,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - *17 - *19 - name: includes_parents @@ -104524,7 +104587,7 @@ paths: schema: type: boolean default: true - - *623 + - *624 responses: '200': description: Response @@ -104532,7 +104595,7 @@ paths: application/json: schema: type: array - items: *324 + items: *325 examples: default: value: @@ -104579,8 +104642,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 requestBody: description: Request body required: true @@ -104600,16 +104663,16 @@ paths: - tag - push default: branch - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *302 + conditions: *299 rules: type: array description: An array of rules within the ruleset. - items: *624 + items: *625 required: - name - enforcement @@ -104640,9 +104703,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: &635 + default: &636 value: id: 42 name: super cool ruleset @@ -104690,13 +104753,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *340 - *341 - - *625 + - *342 - *626 - *627 - *628 - *629 + - *630 - *17 - *19 responses: @@ -104704,9 +104767,9 @@ paths: description: Response content: application/json: - schema: *630 + schema: *631 examples: - default: *631 + default: *632 '404': *6 '500': *54 x-github: @@ -104727,17 +104790,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *340 - *341 - - *632 + - *342 + - *633 responses: '200': description: Response content: application/json: - schema: *633 + schema: *634 examples: - default: *634 + default: *635 '404': *6 '500': *54 x-github: @@ -104765,8 +104828,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104786,9 +104849,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *635 + default: *636 '404': *6 '500': *54 put: @@ -104806,8 +104869,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104832,16 +104895,16 @@ paths: - branch - tag - push - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *302 + conditions: *299 rules: description: An array of rules within the ruleset. type: array - items: *624 + items: *625 examples: default: value: @@ -104869,9 +104932,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *635 + default: *636 '404': *6 '422': *15 '500': *54 @@ -104890,8 +104953,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104914,8 +104977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *340 - *341 + - *342 - *17 - *19 - name: ruleset_id @@ -104931,9 +104994,9 @@ paths: application/json: schema: type: array - items: *327 + items: *328 examples: - default: *636 + default: *637 '404': *6 '500': *54 x-github: @@ -104952,8 +105015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104971,7 +105034,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: default: value: @@ -105026,9 +105089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *340 - *341 - - *638 + - *342 - *639 - *640 - *641 @@ -105036,10 +105098,10 @@ paths: - *643 - *644 - *645 + - *646 - *61 - *19 - *17 - - *646 - *647 - *648 - *649 @@ -105048,6 +105110,7 @@ paths: - *652 - *653 - *654 + - *655 responses: '200': description: Response @@ -105071,8 +105134,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *655 - resolution: *656 + state: *656 + resolution: *657 resolved_at: type: - string @@ -105178,7 +105241,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *657 + - *658 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -105337,16 +105400,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *340 - *341 - - *439 - - *651 + - *342 + - *440 + - *652 responses: '200': description: Response content: application/json: - schema: &658 + schema: &659 type: object properties: number: *181 @@ -105361,8 +105424,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *655 - resolution: *656 + state: *656 + resolution: *657 resolved_at: type: - string @@ -105468,7 +105531,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *657 + - *658 has_more_locations: type: boolean description: A boolean value representing whether or not the token @@ -105491,7 +105554,7 @@ paths: anyOf: - type: 'null' - *4 - metadata: &823 + metadata: &824 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -105564,9 +105627,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 requestBody: required: true content: @@ -105574,8 +105637,8 @@ paths: schema: type: object properties: - state: *655 - resolution: *656 + state: *656 + resolution: *657 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -105623,7 +105686,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: default: value: @@ -105725,9 +105788,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 - *19 - *17 responses: @@ -105738,7 +105801,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &825 + items: &826 type: object properties: type: @@ -105765,7 +105828,6 @@ paths: - commit details: oneOf: - - *659 - *660 - *661 - *662 @@ -105778,6 +105840,7 @@ paths: - *669 - *670 - *671 + - *672 examples: default: value: @@ -105866,11 +105929,11 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 - - *672 + - *342 - *673 - *674 + - *675 - *61 - *19 - *17 @@ -105881,9 +105944,9 @@ paths: application/json: schema: type: array - items: *328 + items: *329 examples: - default: *675 + default: *676 headers: Link: *67 '403': *27 @@ -105906,8 +105969,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -105920,9 +105983,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *676 + items: *677 examples: - default: *677 + default: *678 responses: '201': description: All patterns created successfully. @@ -105934,9 +105997,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *328 + items: *329 examples: - default: *678 + default: *679 '400': *14 '403': *27 '404': *6 @@ -105960,7 +106023,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *679 + items: *680 delete: summary: Bulk delete repository custom patterns description: |- @@ -105979,8 +106042,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -105994,7 +106057,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *680 + items: *681 post_delete_action: type: string description: |- @@ -106007,14 +106070,14 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *681 + default: *682 responses: '204': description: All patterns deleted successfully. '400': *14 '403': *27 '404': *6 - '412': *330 + '412': *331 "/repos/{owner}/{repo}/secret-scanning/custom-patterns/{pattern_id}": patch: summary: Update a repository custom pattern @@ -106034,8 +106097,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 + - *342 - name: pattern_id in: path required: true @@ -106046,21 +106109,21 @@ paths: required: true content: application/json: - schema: *682 + schema: *683 examples: - default: *683 + default: *684 responses: '200': description: Pattern updated successfully. content: application/json: - schema: *328 + schema: *329 examples: - default: *684 + default: *685 '400': *14 '403': *27 '404': *6 - '412': *330 + '412': *331 '422': *15 "/repos/{owner}/{repo}/secret-scanning/push-protection-bypasses": post: @@ -106078,8 +106141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -106087,14 +106150,14 @@ paths: schema: type: object properties: - reason: &686 + reason: &687 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *685 + placeholder_id: *686 required: - reason - placeholder_id @@ -106111,7 +106174,7 @@ paths: schema: type: object properties: - reason: *686 + reason: *687 expire_at: type: - string @@ -106158,8 +106221,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: - - *340 - *341 + - *342 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -106174,7 +106237,7 @@ paths: properties: incremental_scans: type: array - items: &687 + items: &688 description: Information on a single scan performed by secret scanning on the repository type: object @@ -106207,15 +106270,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *687 + items: *688 backfill_scans: type: array - items: *687 + items: *688 custom_pattern_backfill_scans: type: array items: allOf: - - *687 + - *688 - type: object properties: pattern_name: @@ -106228,7 +106291,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *687 + items: *688 examples: default: value: @@ -106293,8 +106356,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *340 - *341 + - *342 - *61 - name: sort description: The property to sort the results by. @@ -106338,9 +106401,9 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: - default: *689 + default: *690 '400': *14 '404': *6 x-github: @@ -106363,8 +106426,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -106444,7 +106507,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *333 required: - login - type @@ -106534,9 +106597,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: &691 + default: &692 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -106766,8 +106829,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -106880,7 +106943,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: default: value: @@ -107026,17 +107089,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *340 - *341 - - *690 + - *342 + - *691 responses: '200': description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *691 + default: *692 '403': *27 '404': *6 x-github: @@ -107060,9 +107123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *340 - *341 - - *690 + - *342 + - *691 requestBody: required: true content: @@ -107142,7 +107205,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *333 required: - login - type @@ -107233,10 +107296,10 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *691 - add_credit: *691 + default: *692 + add_credit: *692 '403': *27 '404': *6 '422': @@ -107274,9 +107337,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: - - *340 - *341 - - *690 + - *342 + - *691 responses: '202': *38 '400': *14 @@ -107303,17 +107366,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *340 - *341 - - *690 + - *342 + - *691 responses: '202': description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 '400': *14 '422': *15 '403': *27 @@ -107334,8 +107397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#list-pull-request-stacks parameters: - - *340 - *341 + - *342 - name: pull_request description: Filter to the stack containing this repository pull request number. in: query @@ -107468,8 +107531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#create-a-pull-request-stack parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -107536,7 +107599,7 @@ paths: format: date-time pull_requests: type: array - items: &692 + items: &693 title: Pull Request Stack Pull Request type: object allOf: @@ -107763,8 +107826,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#get-a-pull-request-stack parameters: - - *340 - *341 + - *342 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -107813,7 +107876,7 @@ paths: format: date-time pull_requests: type: array - items: *692 + items: *693 examples: default: value: @@ -107933,8 +107996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#add-pull-requests-to-a-pull-request-stack parameters: - - *340 - *341 + - *342 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -108006,7 +108069,7 @@ paths: format: date-time pull_requests: type: array - items: *692 + items: *693 examples: default: value: @@ -108213,8 +108276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#remove-pull-requests-from-a-pull-request-stack parameters: - - *340 - *341 + - *342 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -108263,7 +108326,7 @@ paths: format: date-time pull_requests: type: array - items: *692 + items: *693 examples: default: value: @@ -108369,8 +108432,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -108466,8 +108529,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *340 - *341 + - *342 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -108476,7 +108539,7 @@ paths: application/json: schema: type: array - items: &693 + items: &694 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -108509,8 +108572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -108588,8 +108651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -108683,8 +108746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *340 - *341 + - *342 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -108838,8 +108901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *340 - *341 + - *342 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -108849,7 +108912,7 @@ paths: application/json: schema: type: array - items: *693 + items: *694 examples: default: value: @@ -108882,8 +108945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *340 - *341 + - *342 - name: sha in: path required: true @@ -108939,7 +109002,7 @@ paths: description: Response content: application/json: - schema: *694 + schema: *695 examples: default: value: @@ -108993,8 +109056,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -109026,14 +109089,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *340 - *341 + - *342 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &695 + schema: &696 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -109106,8 +109169,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -109133,7 +109196,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: default: value: @@ -109160,8 +109223,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -109181,8 +109244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -109264,8 +109327,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *340 - *341 + - *342 - name: ref in: path required: true @@ -109301,8 +109364,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -109314,7 +109377,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 headers: Link: *67 '404': *6 @@ -109334,8 +109397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *340 - *341 + - *342 - *19 - *17 responses: @@ -109343,7 +109406,7 @@ paths: description: Response content: application/json: - schema: &696 + schema: &697 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -109355,7 +109418,7 @@ paths: required: - names examples: - default: &697 + default: &698 value: names: - octocat @@ -109378,8 +109441,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -109410,9 +109473,9 @@ paths: description: Response content: application/json: - schema: *696 + schema: *697 examples: - default: *697 + default: *698 '404': *6 '422': *7 x-github: @@ -109433,9 +109496,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *340 - *341 - - &698 + - *342 + - &699 name: per description: The time frame to display results for. in: query @@ -109466,7 +109529,7 @@ paths: - 128 clones: type: array - items: &699 + items: &700 title: Traffic type: object properties: @@ -109553,8 +109616,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -109648,8 +109711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -109712,9 +109775,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *340 - *341 - - *698 + - *342 + - *699 responses: '200': description: Response @@ -109735,7 +109798,7 @@ paths: - 3782 views: type: array - items: *699 + items: *700 required: - uniques - count @@ -109812,8 +109875,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -110086,8 +110149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -110110,8 +110173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -110133,8 +110196,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -110160,8 +110223,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *340 - *341 + - *342 - name: ref in: path required: true @@ -110253,9 +110316,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -110507,7 +110570,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &700 + text_matches: &701 title: Search Result Text Matches type: array items: @@ -110670,7 +110733,7 @@ paths: enum: - author-date - committer-date - - &701 + - &702 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 @@ -110739,7 +110802,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *405 comment_count: type: integer message: @@ -110758,7 +110821,7 @@ paths: url: type: string format: uri - verification: *523 + verification: *524 required: - author - committer @@ -110773,7 +110836,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *405 parents: type: array items: @@ -110790,7 +110853,7 @@ paths: type: number node_id: type: string - text_matches: *700 + text_matches: *701 required: - sha - node_id @@ -110982,7 +111045,7 @@ paths: - interactions - created - updated - - *701 + - *702 - *17 - *19 - name: advanced_search @@ -111096,11 +111159,11 @@ paths: type: - string - 'null' - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: type: string state_reason: @@ -111110,7 +111173,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *283 comments: type: integer created_at: @@ -111124,7 +111187,7 @@ paths: - string - 'null' format: date-time - text_matches: *700 + text_matches: *701 pull_request: type: object properties: @@ -111173,7 +111236,7 @@ paths: timeline_url: type: string format: uri - type: *246 + type: *247 performed_via_github_app: anyOf: - type: 'null' @@ -111398,7 +111461,7 @@ paths: enum: - created - updated - - *701 + - *702 - *17 - *19 responses: @@ -111443,7 +111506,7 @@ paths: - 'null' score: type: number - text_matches: *700 + text_matches: *701 required: - id - node_id @@ -111528,7 +111591,7 @@ paths: - forks - help-wanted-issues - updated - - *701 + - *702 - *17 - *19 responses: @@ -111774,7 +111837,7 @@ paths: - admin - pull - push - text_matches: *700 + text_matches: *701 temp_clone_token: type: string allow_merge_commit: @@ -112082,7 +112145,7 @@ paths: - string - 'null' format: uri - text_matches: *700 + text_matches: *701 related: type: - array @@ -112275,7 +112338,7 @@ paths: - followers - repositories - joined - - *701 + - *702 - *17 - *19 responses: @@ -112385,7 +112448,7 @@ paths: type: - boolean - 'null' - text_matches: *700 + text_matches: *701 blog: type: - string @@ -112467,7 +112530,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &704 + - &705 name: team_id description: The unique identifier of the team. in: path @@ -112479,9 +112542,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 x-github: githubCloudOnly: false @@ -112508,7 +112571,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *704 + - *705 requestBody: required: true content: @@ -112578,16 +112641,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '201': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 '422': *15 '403': *27 @@ -112615,7 +112678,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *704 + - *705 responses: '204': description: Response @@ -112644,7 +112707,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *704 + - *705 - *17 - *19 responses: @@ -112654,9 +112717,9 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: - default: *241 + default: *242 headers: Link: *67 x-github: @@ -112684,7 +112747,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *704 + - *705 - name: role description: Filters members returned by their role in the team. in: query @@ -112705,9 +112768,9 @@ paths: application/json: schema: type: array - items: *705 + items: *706 examples: - default: *706 + default: *707 headers: Link: *67 '404': *6 @@ -112735,7 +112798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -112772,7 +112835,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -112812,7 +112875,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -112849,16 +112912,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *704 + - *705 - *71 responses: '200': description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-user-is-a-team-maintainer: *707 + response-if-user-is-a-team-maintainer: *708 '404': *6 x-github: githubCloudOnly: false @@ -112891,7 +112954,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *704 + - *705 - *71 requestBody: required: false @@ -112917,9 +112980,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-users-membership-with-team-is-now-pending: *708 + response-if-users-membership-with-team-is-now-pending: *709 '403': description: Forbidden if team synchronization is set up '422': @@ -112953,7 +113016,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -112981,7 +113044,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *704 + - *705 - *17 - *19 responses: @@ -112993,7 +113056,7 @@ paths: type: array items: *156 examples: - default: *276 + default: *277 headers: Link: *67 '404': *6 @@ -113023,15 +113086,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *704 - - *340 + - *705 - *341 + - *342 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *709 + schema: *710 examples: alternative-response-with-extra-repository-information: value: @@ -113181,9 +113244,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *704 - - *340 + - *705 - *341 + - *342 requestBody: required: false content: @@ -113233,9 +113296,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *704 - - *340 + - *705 - *341 + - *342 responses: '204': description: Response @@ -113260,7 +113323,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *704 + - *705 - *17 - *19 responses: @@ -113272,7 +113335,7 @@ paths: type: array items: *201 examples: - response-if-child-teams-exist: *710 + response-if-child-teams-exist: *711 headers: Link: *67 '404': *6 @@ -113305,7 +113368,7 @@ paths: application/json: schema: oneOf: - - &711 + - &712 title: Private User description: Private User type: object @@ -113555,7 +113618,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &737 + - &738 title: Public User description: Public User type: object @@ -113889,7 +113952,7 @@ paths: description: Response content: application/json: - schema: *711 + schema: *712 examples: default: value: @@ -114092,9 +114155,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *252 examples: - default: *252 + default: *253 '304': *36 '500': *54 '401': *23 @@ -114233,17 +114296,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '401': *23 '403': *27 '404': *6 @@ -114287,7 +114350,7 @@ paths: type: integer secrets: type: array - items: &712 + items: &713 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -114329,7 +114392,7 @@ paths: - visibility - selected_repositories_url examples: - default: *464 + default: *465 headers: Link: *67 x-github: @@ -114407,7 +114470,7 @@ paths: description: Response content: application/json: - schema: *712 + schema: *713 examples: default: value: @@ -114697,15 +114760,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '304': *36 '500': *54 '401': *23 @@ -114731,7 +114794,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 requestBody: required: false content: @@ -114761,9 +114824,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '401': *23 '403': *27 '404': *6 @@ -114785,7 +114848,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '202': *38 '304': *36 @@ -114814,13 +114877,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '202': description: Response content: application/json: - schema: &713 + schema: &714 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -114873,7 +114936,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &714 + default: &715 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -114905,7 +114968,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *253 + - *254 - name: export_id in: path required: true @@ -114918,9 +114981,9 @@ paths: description: Response content: application/json: - schema: *713 + schema: *714 examples: - default: *714 + default: *715 '404': *6 x-github: githubCloudOnly: false @@ -114941,7 +115004,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *253 + - *254 responses: '200': description: Response @@ -114957,9 +115020,9 @@ paths: type: integer machines: type: array - items: *463 + items: *464 examples: - default: *715 + default: *716 '304': *36 '500': *54 '401': *23 @@ -114988,7 +115051,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *253 + - *254 requestBody: required: true content: @@ -115044,11 +115107,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *343 + repository: *344 machine: anyOf: - type: 'null' - - *463 + - *464 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -115845,15 +115908,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '304': *36 '500': *54 '400': *14 @@ -115885,15 +115948,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '500': *54 '401': *23 '403': *27 @@ -115923,9 +115986,9 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: &727 + default: &728 value: - id: 197 name: hello_docker @@ -116026,7 +116089,7 @@ paths: application/json: schema: type: array - items: &716 + items: &717 title: Email description: Email type: object @@ -116096,9 +116159,9 @@ paths: application/json: schema: type: array - items: *716 + items: *717 examples: - default: &729 + default: &730 value: - email: octocat@github.com verified: true @@ -116175,7 +116238,7 @@ paths: application/json: schema: type: array - items: *716 + items: *717 examples: default: value: @@ -116433,7 +116496,7 @@ paths: application/json: schema: type: array - items: &717 + items: &718 title: GPG Key description: A unique encryption key type: object @@ -116578,7 +116641,7 @@ paths: - subkeys - revoked examples: - default: &747 + default: &748 value: - id: 3 name: Octocat's GPG Key @@ -116663,9 +116726,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: &718 + default: &719 value: id: 3 name: Octocat's GPG Key @@ -116722,7 +116785,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &719 + - &720 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -116734,9 +116797,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: *718 + default: *719 '404': *6 '304': *36 '403': *27 @@ -116759,7 +116822,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *719 + - *720 responses: '204': description: Response @@ -117047,12 +117110,12 @@ paths: application/json: schema: anyOf: - - *238 + - *239 - type: object properties: {} additionalProperties: false examples: - default: *239 + default: *240 '204': description: Response when there are no restrictions x-github: @@ -117076,7 +117139,7 @@ paths: required: true content: application/json: - schema: *534 + schema: *535 examples: default: value: @@ -117087,7 +117150,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -117168,7 +117231,7 @@ paths: - closed - all default: open - - *249 + - *250 - name: sort description: What to sort results by. in: query @@ -117193,7 +117256,7 @@ paths: type: array items: *83 examples: - default: *250 + default: *251 headers: Link: *67 '404': *6 @@ -117226,7 +117289,7 @@ paths: application/json: schema: type: array - items: &720 + items: &721 title: Key description: Key type: object @@ -117329,9 +117392,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: &721 + default: &722 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -117364,15 +117427,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *583 + - *584 responses: '200': description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: *721 + default: *722 '404': *6 '304': *36 '403': *27 @@ -117395,7 +117458,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *583 + - *584 responses: '204': description: Response @@ -117428,7 +117491,7 @@ paths: application/json: schema: type: array - items: &722 + items: &723 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -117507,7 +117570,7 @@ paths: - account - plan examples: - default: &723 + default: &724 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -117569,9 +117632,9 @@ paths: application/json: schema: type: array - items: *722 + items: *723 examples: - default: *723 + default: *724 headers: Link: *67 '304': *36 @@ -117611,7 +117674,7 @@ paths: application/json: schema: type: array - items: *255 + items: *256 examples: default: value: @@ -117725,7 +117788,7 @@ paths: description: Response content: application/json: - schema: *255 + schema: *256 examples: default: value: @@ -117812,9 +117875,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *255 + schema: *256 examples: - default: &724 + default: &725 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -117861,9 +117924,9 @@ paths: processed asynchronously. content: application/json: - schema: *255 + schema: *256 examples: - default: *724 + default: *725 '403': *27 '404': *6 '422': *15 @@ -117892,7 +117955,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -118154,7 +118217,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -118334,7 +118397,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *258 + - *259 - name: exclude in: query required: false @@ -118347,7 +118410,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -118541,7 +118604,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *258 + - *259 responses: '302': description: Response @@ -118567,7 +118630,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *258 + - *259 responses: '204': description: Response @@ -118596,8 +118659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *258 - - *725 + - *259 + - *726 responses: '204': description: Response @@ -118621,7 +118684,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *258 + - *259 - *17 - *19 responses: @@ -118710,7 +118773,7 @@ paths: - docker - nuget - container - - *726 + - *727 - *19 - *17 responses: @@ -118720,10 +118783,10 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *727 - '400': *728 + default: *728 + '400': *729 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118743,16 +118806,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *265 - *266 + - *267 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: &748 + default: &749 value: id: 40201 name: octo-name @@ -118865,8 +118928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *265 - *266 + - *267 responses: '204': description: Response @@ -118896,8 +118959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *265 - *266 + - *267 - name: token description: package token schema: @@ -118929,8 +118992,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: - - *265 - *266 + - *267 - *19 - *17 - name: state @@ -118950,7 +119013,7 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: default: value: @@ -118999,15 +119062,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -119043,9 +119106,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 responses: '204': description: Response @@ -119075,9 +119138,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 responses: '204': description: Response @@ -119114,9 +119177,9 @@ paths: application/json: schema: type: array - items: *716 + items: *717 examples: - default: *729 + default: *730 headers: Link: *67 '304': *36 @@ -119229,7 +119292,7 @@ paths: type: array items: *79 examples: - default: &736 + default: &737 summary: Default response value: - id: 1296269 @@ -119547,9 +119610,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -119588,9 +119651,9 @@ paths: application/json: schema: type: array - items: *537 + items: *538 examples: - default: *730 + default: *731 headers: Link: *67 '304': *36 @@ -119613,7 +119676,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *242 + - *243 responses: '204': description: Response @@ -119637,7 +119700,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *242 + - *243 responses: '204': description: Response @@ -119670,7 +119733,7 @@ paths: application/json: schema: type: array - items: &731 + items: &732 title: Social account description: Social media account type: object @@ -119687,7 +119750,7 @@ paths: - provider - url examples: - default: &732 + default: &733 value: - provider: twitter url: https://twitter.com/github @@ -119750,9 +119813,9 @@ paths: application/json: schema: type: array - items: *731 + items: *732 examples: - default: *732 + default: *733 '422': *15 '304': *36 '404': *6 @@ -119840,7 +119903,7 @@ paths: application/json: schema: type: array - items: &733 + items: &734 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -119860,7 +119923,7 @@ paths: - title - created_at examples: - default: &765 + default: &766 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -119925,9 +119988,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: &734 + default: &735 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -119957,7 +120020,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: - - &735 + - &736 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -119969,9 +120032,9 @@ paths: description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: *734 + default: *735 '404': *6 '304': *36 '403': *27 @@ -119994,7 +120057,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: - - *735 + - *736 responses: '204': description: Response @@ -120023,7 +120086,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &766 + - &767 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 @@ -120048,11 +120111,11 @@ paths: type: array items: *79 examples: - default-response: *736 + default-response: *737 application/vnd.github.v3.star+json: schema: type: array - items: &767 + items: &768 title: Starred Repository description: Starred Repository type: object @@ -120208,8 +120271,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: - - *340 - *341 + - *342 responses: '204': description: Response if this repository is starred by you @@ -120237,8 +120300,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -120262,8 +120325,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -120298,7 +120361,7 @@ paths: type: array items: *156 examples: - default: *276 + default: *277 headers: Link: *67 '304': *36 @@ -120335,7 +120398,7 @@ paths: application/json: schema: type: array - items: *336 + items: *337 examples: default: value: @@ -120421,10 +120484,10 @@ paths: application/json: schema: oneOf: - - *711 - - *737 + - *712 + - *738 examples: - default-response: &741 + default-response: &742 summary: Default response value: login: octocat @@ -120459,7 +120522,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &742 + response-with-git-hub-plan-information: &743 summary: Response with GitHub plan information value: login: octocat @@ -120516,14 +120579,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &739 + - &740 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *281 + - *282 requestBody: required: true description: Details of the draft item to create in the project. @@ -120557,9 +120620,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: - draft_issue: *287 + draft_issue: *288 '304': *36 '403': *27 '401': *23 @@ -120582,7 +120645,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *738 + - *739 - *17 responses: '200': @@ -120617,8 +120680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *739 - - *281 + - *740 + - *282 requestBody: required: true content: @@ -120657,6 +120720,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -120692,17 +120796,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *740 + schema: *741 examples: table_view: summary: Response for creating a table view - value: *291 + value: *292 board_view: summary: Response for creating a board view with filter - value: *291 + value: *292 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *292 '304': *36 '403': *27 '401': *23 @@ -120744,11 +120848,11 @@ paths: application/json: schema: oneOf: - - *711 - - *737 + - *712 + - *738 examples: - default-response: *741 - response-with-git-hub-plan-information: *742 + default-response: *742 + response-with-git-hub-plan-information: *743 '404': *6 x-github: githubCloudOnly: false @@ -120798,8 +120902,8 @@ paths: required: - subject_digests examples: - default: *743 - withPredicateType: *744 + default: *744 + withPredicateType: *745 responses: '200': description: Response @@ -120839,7 +120943,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *745 + default: *746 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -121028,7 +121132,7 @@ paths: initiator: type: string examples: - default: *400 + default: *401 '201': description: Response content: @@ -121312,7 +121416,7 @@ paths: application/json: schema: *197 examples: - default: &746 + default: &747 summary: Example response for a user copilot space value: id: 42 @@ -121413,7 +121517,7 @@ paths: application/json: schema: *197 examples: - default: *746 + default: *747 '403': *27 '404': *6 x-github: @@ -121539,7 +121643,7 @@ paths: application/json: schema: *197 examples: - default: *746 + default: *747 '403': *27 '404': *6 '422': *15 @@ -122305,9 +122409,9 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *727 + default: *728 '403': *27 '401': *23 x-github: @@ -122691,9 +122795,9 @@ paths: application/json: schema: type: array - items: *717 + items: *718 examples: - default: *747 + default: *748 headers: Link: *67 x-github: @@ -122797,7 +122901,7 @@ paths: application/json: schema: *20 examples: - default: *533 + default: *534 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122922,7 +123026,7 @@ paths: - docker - nuget - container - - *726 + - *727 - *71 - *19 - *17 @@ -122933,12 +123037,12 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *727 + default: *728 '403': *27 '401': *23 - '400': *728 + '400': *729 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122958,17 +123062,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *265 - *266 + - *267 - *71 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *748 + default: *749 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122989,8 +123093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *265 - *266 + - *267 - *71 responses: '204': @@ -123023,8 +123127,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *265 - *266 + - *267 - *71 - name: token description: package token @@ -123057,8 +123161,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: - - *265 - *266 + - *267 - *71 responses: '200': @@ -123067,7 +123171,7 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: default: value: @@ -123125,16 +123229,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 - *71 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -123169,10 +123273,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *265 - *266 + - *267 - *71 - - *268 + - *269 responses: '204': description: Response @@ -123204,10 +123308,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *265 - *266 + - *267 - *71 - - *268 + - *269 responses: '204': description: Response @@ -123248,9 +123352,9 @@ paths: application/json: schema: type: array - items: *279 + items: *280 examples: - default: *280 + default: *281 headers: Link: *67 '304': *36 @@ -123272,16 +123376,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *281 + - *282 - *71 responses: '200': description: Response content: application/json: - schema: *279 + schema: *280 examples: - default: *280 + default: *281 headers: Link: *67 '304': *36 @@ -123303,7 +123407,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *281 + - *282 - *71 - *17 - *46 @@ -123315,9 +123419,9 @@ paths: application/json: schema: type: array - items: *284 + items: *285 examples: - default: *749 + default: *750 headers: Link: *67 '304': *36 @@ -123339,7 +123443,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *71 - - *281 + - *282 requestBody: required: true content: @@ -123377,7 +123481,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *750 + items: *751 required: - name - data_type @@ -123393,7 +123497,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *751 + iteration_configuration: *752 required: - name - data_type @@ -123415,20 +123519,20 @@ paths: value: name: Due date data_type: date - single_select_field: *752 - iteration_field: *753 + single_select_field: *753 + iteration_field: *754 responses: '201': description: Response content: application/json: - schema: *284 + schema: *285 examples: - text_field: *754 - number_field: *755 - date_field: *756 - single_select_field: *757 - iteration_field: *758 + text_field: *755 + number_field: *756 + date_field: *757 + single_select_field: *758 + iteration_field: *759 '304': *36 '403': *27 '401': *23 @@ -123449,17 +123553,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *281 - - *759 + - *282 + - *760 - *71 responses: '200': description: Response content: application/json: - schema: *284 + schema: *285 examples: - default: *760 + default: *761 headers: Link: *67 '304': *36 @@ -123482,7 +123586,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *281 + - *282 - *71 - *46 - *47 @@ -123515,9 +123619,9 @@ paths: application/json: schema: type: array - items: *288 + items: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -123539,7 +123643,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *71 - - *281 + - *282 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -123609,22 +123713,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *288 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *288 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *288 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *288 '304': *36 '403': *27 '401': *23 @@ -123644,9 +123748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *281 + - *282 - *71 - - *290 + - *291 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -123666,9 +123770,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -123689,9 +123793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *281 + - *282 - *71 - - *290 + - *291 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -123764,13 +123868,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *290 + number_field: *290 + date_field: *290 + single_select_field: *290 + iteration_field: *290 '401': *23 '403': *27 '404': *6 @@ -123790,9 +123894,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *281 + - *282 - *71 - - *290 + - *291 responses: '204': description: Response @@ -123814,9 +123918,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *281 + - *282 - *71 - - *761 + - *762 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -123842,9 +123946,9 @@ paths: application/json: schema: type: array - items: *288 + items: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -124065,7 +124169,7 @@ paths: type: array items: *156 examples: - default: *276 + default: *277 headers: Link: *67 x-github: @@ -124355,7 +124459,7 @@ paths: parameters: - *71 - *117 - - *762 + - *763 - *119 responses: '200': @@ -124454,9 +124558,9 @@ paths: - *117 - *118 - *119 - - *763 - - *122 - *764 + - *122 + - *765 responses: '200': description: Response when getting a billing usage summary @@ -124590,9 +124694,9 @@ paths: application/json: schema: type: array - items: *731 + items: *732 examples: - default: *732 + default: *733 headers: Link: *67 x-github: @@ -124622,9 +124726,9 @@ paths: application/json: schema: type: array - items: *733 + items: *734 examples: - default: *765 + default: *766 headers: Link: *67 x-github: @@ -124649,7 +124753,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *71 - - *766 + - *767 - *61 - *17 - *19 @@ -124661,11 +124765,11 @@ paths: schema: anyOf: - type: array - items: *767 + items: *768 - type: array items: *79 examples: - default-response: *736 + default-response: *737 headers: Link: *67 x-github: @@ -124696,7 +124800,7 @@ paths: type: array items: *156 examples: - default: *276 + default: *277 headers: Link: *67 x-github: @@ -124825,7 +124929,7 @@ webhooks: type: string enum: - disabled - enterprise: &768 + enterprise: &769 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -124894,7 +124998,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &769 + installation: &770 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -124915,7 +125019,7 @@ webhooks: required: - id - node_id - organization: &770 + organization: &771 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -124988,7 +125092,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &771 + repository: &772 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -125903,10 +126007,10 @@ webhooks: type: string enum: - enabled - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -125982,11 +126086,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - rule: &772 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + rule: &773 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) @@ -126209,11 +126313,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - rule: *772 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + rule: *773 sender: *4 required: - action @@ -126401,11 +126505,11 @@ webhooks: - everyone required: - from - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - rule: *772 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + rule: *773 sender: *4 required: - action @@ -126489,7 +126593,7 @@ webhooks: type: string enum: - completed - check_run: &774 + check_run: &775 title: CheckRun description: A check performed on the code of a given code change type: object @@ -126599,7 +126703,7 @@ webhooks: - examples: - neutral - deployment: *773 + deployment: *774 details_url: type: string examples: @@ -126697,10 +126801,10 @@ webhooks: - output - app - pull_requests - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 sender: *4 required: - check_run @@ -127091,11 +127195,11 @@ webhooks: type: string enum: - created - check_run: *774 - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + check_run: *775 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 sender: *4 required: - check_run @@ -127489,11 +127593,11 @@ webhooks: type: string enum: - requested_action - check_run: *774 - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + check_run: *775 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 requested_action: description: The action requested by the user. type: object @@ -127896,11 +128000,11 @@ webhooks: type: string enum: - rerequested - check_run: *774 - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + check_run: *775 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 sender: *4 required: - check_run @@ -128885,10 +128989,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -129602,10 +129706,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -130313,10 +130417,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -130485,7 +130589,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -130637,20 +130741,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &775 + commit_oid: &776 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: *768 - installation: *769 - organization: *770 - ref: &776 + enterprise: *769 + installation: *770 + organization: *771 + ref: &777 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: *771 + repository: *772 sender: *4 required: - action @@ -130817,7 +130921,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131058,12 +131162,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -131161,7 +131265,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131346,12 +131450,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -131520,7 +131624,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -131697,12 +131801,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -131803,7 +131907,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131992,9 +132096,9 @@ webhooks: type: - string - 'null' - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -132002,7 +132106,7 @@ webhooks: type: - string - 'null' - repository: *771 + repository: *772 sender: *4 required: - action @@ -132101,7 +132205,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132248,12 +132352,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -132422,7 +132526,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132574,10 +132678,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -132837,10 +132941,10 @@ webhooks: - updated_at - author_association - body - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -132921,18 +133025,18 @@ webhooks: type: - string - 'null' - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *770 - pusher_type: &777 + organization: *771 + pusher_type: &778 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &778 + ref: &779 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -132942,7 +133046,7 @@ webhooks: enum: - tag - branch - repository: *771 + repository: *772 sender: *4 required: - ref @@ -133024,10 +133128,10 @@ webhooks: type: string enum: - created - definition: *292 - enterprise: *768 - installation: *769 - organization: *770 + definition: *293 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -133112,9 +133216,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -133191,10 +133295,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *292 - enterprise: *768 - installation: *769 - organization: *770 + definition: *293 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -133271,10 +133375,10 @@ webhooks: type: string enum: - updated - definition: *292 - enterprise: *768 - installation: *769 - organization: *770 + definition: *293 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -133351,19 +133455,19 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - repository: *771 - organization: *770 + enterprise: *769 + installation: *770 + repository: *772 + organization: *771 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *296 + items: *297 old_property_values: type: array description: The old custom property values for the repository. - items: *296 + items: *297 required: - action - repository @@ -133439,18 +133543,18 @@ webhooks: title: delete event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - pusher_type: *777 - ref: *778 + enterprise: *769 + installation: *770 + organization: *771 + pusher_type: *778 + ref: *779 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *771 + repository: *772 sender: *4 required: - ref @@ -133530,11 +133634,11 @@ webhooks: type: string enum: - assignees_changed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -133614,11 +133718,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -133699,11 +133803,11 @@ webhooks: type: string enum: - auto_reopened - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -133784,11 +133888,11 @@ webhooks: type: string enum: - created - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -133867,11 +133971,11 @@ webhooks: type: string enum: - dismissed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -133950,11 +134054,11 @@ webhooks: type: string enum: - fixed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134034,11 +134138,11 @@ webhooks: type: string enum: - reintroduced - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134117,11 +134221,11 @@ webhooks: type: string enum: - reopened - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -134198,9 +134302,9 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - key: &779 + enterprise: *769 + installation: *770 + key: &780 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -134238,8 +134342,8 @@ webhooks: - verified - created_at - read_only - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -134316,11 +134420,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - key: *779 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + key: *780 + organization: *771 + repository: *772 sender: *4 required: - action @@ -134887,12 +134991,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: &783 + workflow: &784 title: Workflow type: - object @@ -135643,13 +135747,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *500 + - *501 pull_requests: type: array - items: *602 - repository: *771 - organization: *770 - installation: *769 + items: *603 + repository: *772 + organization: *771 + installation: *770 sender: *4 responses: '200': @@ -135720,7 +135824,7 @@ webhooks: type: string enum: - approved - approver: &780 + approver: &781 type: object properties: avatar_url: @@ -135763,11 +135867,11 @@ webhooks: type: string comment: type: string - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - reviewers: &781 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + reviewers: &782 type: array items: type: object @@ -135848,7 +135952,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &782 + workflow_job_run: &783 type: object properties: conclusion: @@ -136594,18 +136698,18 @@ webhooks: type: string enum: - rejected - approver: *780 + approver: *781 comment: type: string - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - reviewers: *781 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + reviewers: *782 sender: *4 since: type: string - workflow_job_run: *782 + workflow_job_run: *783 workflow_job_runs: type: array items: @@ -137322,13 +137426,13 @@ webhooks: type: string enum: - requested - enterprise: *768 + enterprise: *769 environment: type: string - installation: *769 - organization: *770 - repository: *771 - requestor: &788 + installation: *770 + organization: *771 + repository: *772 + requestor: &789 title: User type: - object @@ -139261,12 +139365,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: *783 + workflow: *784 workflow_run: title: Deployment Workflow Run type: @@ -139957,7 +140061,7 @@ webhooks: type: string enum: - answered - answer: &786 + answer: &787 type: object properties: author_association: @@ -140117,11 +140221,11 @@ webhooks: - created_at - updated_at - body - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -140248,11 +140352,11 @@ webhooks: - from required: - category - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -140335,11 +140439,11 @@ webhooks: type: string enum: - closed - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -140421,7 +140525,7 @@ webhooks: type: string enum: - created - comment: &785 + comment: &786 type: object properties: author_association: @@ -140581,11 +140685,11 @@ webhooks: - updated_at - body - reactions - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -140668,12 +140772,12 @@ webhooks: type: string enum: - deleted - comment: *785 - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + comment: *786 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -140768,12 +140872,12 @@ webhooks: - from required: - body - comment: *785 - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + comment: *786 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -140857,11 +140961,11 @@ webhooks: type: string enum: - created - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -140943,11 +141047,11 @@ webhooks: type: string enum: - deleted - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141047,11 +141151,11 @@ webhooks: type: string required: - from - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141133,10 +141237,10 @@ webhooks: type: string enum: - labeled - discussion: *784 - enterprise: *768 - installation: *769 - label: &787 + discussion: *785 + enterprise: *769 + installation: *770 + label: &788 title: Label type: object properties: @@ -141169,8 +141273,8 @@ webhooks: - color - default - description - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141253,11 +141357,11 @@ webhooks: type: string enum: - locked - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141339,11 +141443,11 @@ webhooks: type: string enum: - pinned - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141425,11 +141529,11 @@ webhooks: type: string enum: - reopened - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141514,16 +141618,16 @@ webhooks: changes: type: object properties: - new_discussion: *784 - new_repository: *771 + new_discussion: *785 + new_repository: *772 required: - new_discussion - new_repository - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141606,10 +141710,10 @@ webhooks: type: string enum: - unanswered - discussion: *784 - old_answer: *786 - organization: *770 - repository: *771 + discussion: *785 + old_answer: *787 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141691,12 +141795,12 @@ webhooks: type: string enum: - unlabeled - discussion: *784 - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141779,11 +141883,11 @@ webhooks: type: string enum: - unlocked - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141865,11 +141969,11 @@ webhooks: type: string enum: - unpinned - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141942,7 +142046,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *768 + enterprise: *769 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -142620,9 +142724,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - forkee @@ -142768,9 +142872,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pages: description: The pages that were updated. type: array @@ -142808,7 +142912,7 @@ webhooks: - action - sha - html_url - repository: *771 + repository: *772 sender: *4 required: - pages @@ -142884,10 +142988,10 @@ webhooks: type: string enum: - created - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: &789 + organization: *771 + repositories: &790 description: An array of repository objects that the installation can access. type: array @@ -142913,8 +143017,8 @@ webhooks: - name - full_name - private - repository: *771 - requester: *788 + repository: *772 + requester: *789 sender: *4 required: - action @@ -142989,11 +143093,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -143070,11 +143174,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -143151,10 +143255,10 @@ webhooks: type: string enum: - added - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories_added: &790 + organization: *771 + repositories_added: &791 description: An array of repository objects, which were added to the installation. type: array @@ -143200,15 +143304,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *771 - repository_selection: &791 + repository: *772 + repository_selection: &792 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *788 + requester: *789 sender: *4 required: - action @@ -143287,10 +143391,10 @@ webhooks: type: string enum: - removed - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories_added: *790 + organization: *771 + repositories_added: *791 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -143317,9 +143421,9 @@ webhooks: - name - full_name - private - repository: *771 - repository_selection: *791 - requester: *788 + repository: *772 + repository_selection: *792 + requester: *789 sender: *4 required: - action @@ -143398,11 +143502,11 @@ webhooks: type: string enum: - suspend - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -143584,10 +143688,10 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 target_type: type: string @@ -143666,11 +143770,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -143836,11 +143940,11 @@ webhooks: pin: anyOf: - type: 'null' - - *568 + - *569 minimized: anyOf: - type: 'null' - - *569 + - *570 user: title: User type: @@ -143926,8 +144030,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -144739,8 +144843,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144757,7 +144861,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -145101,8 +145205,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -145182,7 +145286,7 @@ webhooks: type: string enum: - deleted - comment: &792 + comment: &793 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -145339,11 +145443,11 @@ webhooks: pin: anyOf: - type: 'null' - - *568 + - *569 minimized: anyOf: - type: 'null' - - *569 + - *570 required: - url - html_url @@ -145357,8 +145461,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -146166,8 +146270,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146184,7 +146288,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -146530,8 +146634,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -146611,7 +146715,7 @@ webhooks: type: string enum: - edited - changes: &816 + changes: &817 description: The changes to the comment. type: object properties: @@ -146623,9 +146727,9 @@ webhooks: type: string required: - from - comment: *792 - enterprise: *768 - installation: *769 + comment: *793 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -147436,8 +147540,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147454,7 +147558,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -147798,8 +147902,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -147880,9 +147984,9 @@ webhooks: type: string enum: - pinned - comment: *792 - enterprise: *768 - installation: *769 + comment: *793 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -148695,8 +148799,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148713,7 +148817,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -149059,8 +149163,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -149140,9 +149244,9 @@ webhooks: type: string enum: - unpinned - comment: *792 - enterprise: *768 - installation: *769 + comment: *793 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -149955,8 +150059,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149973,7 +150077,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -150319,8 +150423,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -150409,9 +150513,9 @@ webhooks: type: number blocking_issue: *83 blocking_issue_repo: *79 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -150500,9 +150604,9 @@ webhooks: type: number blocking_issue: *83 blocking_issue_repo: *79 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -150590,9 +150694,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -150681,9 +150785,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -150763,10 +150867,10 @@ webhooks: type: string enum: - assigned - assignee: *788 - enterprise: *768 - installation: *769 - issue: &793 + assignee: *789 + enterprise: *769 + installation: *770 + issue: &794 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -151577,11 +151681,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151598,7 +151702,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -151701,8 +151805,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -151782,8 +151886,8 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -152599,11 +152703,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152620,7 +152724,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -152866,8 +152970,8 @@ webhooks: required: - state - closed_at - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -152946,8 +153050,8 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153754,11 +153858,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153775,7 +153879,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -153877,8 +153981,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -153957,8 +154061,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154788,11 +154892,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154809,7 +154913,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -154890,7 +154994,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &794 + milestone: &795 title: Milestone description: A collection of related issues and pull requests. type: object @@ -155033,8 +155137,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -155133,8 +155237,8 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155945,11 +156049,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155963,7 +156067,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *247 title: description: Title of the issue type: string @@ -156069,9 +156173,9 @@ webhooks: - active_lock_reason - body - reactions - label: *787 - organization: *770 - repository: *771 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -156151,9 +156255,9 @@ webhooks: type: string enum: - field_added - enterprise: *768 - installation: *769 - issue: *793 + enterprise: *769 + installation: *770 + issue: *794 issue_field: type: object description: The issue field whose value was set or updated on the @@ -156319,8 +156423,8 @@ webhooks: - id required: - from - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -156400,9 +156504,9 @@ webhooks: type: string enum: - field_removed - enterprise: *768 - installation: *769 - issue: *793 + enterprise: *769 + installation: *770 + issue: *794 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -156489,8 +156593,8 @@ webhooks: - 'null' required: - id - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -156570,8 +156674,8 @@ webhooks: type: string enum: - labeled - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -157381,11 +157485,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157399,7 +157503,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *247 title: description: Title of the issue type: string @@ -157505,9 +157609,9 @@ webhooks: - active_lock_reason - body - reactions - label: *787 - organization: *770 - repository: *771 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -157587,8 +157691,8 @@ webhooks: type: string enum: - locked - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158423,11 +158527,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158441,7 +158545,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *247 title: description: Title of the issue type: string @@ -158524,8 +158628,8 @@ webhooks: format: uri user_view_type: type: string - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -158604,8 +158708,8 @@ webhooks: type: string enum: - milestoned - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159434,11 +159538,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159455,7 +159559,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -159535,9 +159639,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *794 - organization: *770 - repository: *771 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -160424,11 +160528,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160528,7 +160632,7 @@ webhooks: required: - login - id - type: *246 + type: *247 required: - id - number @@ -161020,8 +161124,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -161828,11 +161932,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161849,7 +161953,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -161955,8 +162059,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -162036,9 +162140,9 @@ webhooks: type: string enum: - pinned - enterprise: *768 - installation: *769 - issue: &795 + enterprise: *769 + installation: *770 + issue: &796 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -162843,11 +162947,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162864,7 +162968,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -162966,8 +163070,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -163046,8 +163150,8 @@ webhooks: type: string enum: - reopened - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -163880,11 +163984,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163981,9 +164085,9 @@ webhooks: format: uri user_view_type: type: string - type: *246 - organization: *770 - repository: *771 + type: *247 + organization: *771 + repository: *772 sender: *4 required: - action @@ -164871,11 +164975,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164892,7 +164996,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -165485,11 +165589,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *768 - installation: *769 - issue: *795 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *796 + organization: *771 + repository: *772 sender: *4 required: - action @@ -165569,12 +165673,12 @@ webhooks: type: string enum: - typed - enterprise: *768 - installation: *769 - issue: *793 - type: *246 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + type: *247 + organization: *771 + repository: *772 sender: *4 required: - action @@ -165655,7 +165759,7 @@ webhooks: type: string enum: - unassigned - assignee: &819 + assignee: &820 title: User type: - object @@ -165727,11 +165831,11 @@ webhooks: required: - login - id - enterprise: *768 - installation: *769 - issue: *793 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + organization: *771 + repository: *772 sender: *4 required: - action @@ -165810,12 +165914,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *768 - installation: *769 - issue: *793 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -165895,8 +165999,8 @@ webhooks: type: string enum: - unlocked - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -166729,11 +166833,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166750,7 +166854,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -166830,8 +166934,8 @@ webhooks: format: uri user_view_type: type: string - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -166911,11 +167015,11 @@ webhooks: type: string enum: - unpinned - enterprise: *768 - installation: *769 - issue: *795 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *796 + organization: *771 + repository: *772 sender: *4 required: - action @@ -166994,12 +167098,12 @@ webhooks: type: string enum: - untyped - enterprise: *768 - installation: *769 - issue: *793 - type: *246 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + type: *247 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167079,11 +167183,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167161,11 +167265,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167275,11 +167379,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167361,9 +167465,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: &796 + enterprise: *769 + installation: *770 + marketplace_purchase: &797 title: Marketplace Purchase type: object required: @@ -167451,8 +167555,8 @@ webhooks: type: integer unit_count: type: integer - organization: *770 - previous_marketplace_purchase: &797 + organization: *771 + previous_marketplace_purchase: &798 title: Marketplace Purchase type: object properties: @@ -167536,7 +167640,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *771 + repository: *772 sender: *4 required: - action @@ -167616,10 +167720,10 @@ webhooks: - changed effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: *796 - organization: *770 + enterprise: *769 + installation: *770 + marketplace_purchase: *797 + organization: *771 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -167707,7 +167811,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *771 + repository: *772 sender: *4 required: - action @@ -167789,10 +167893,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: *796 - organization: *770 + enterprise: *769 + installation: *770 + marketplace_purchase: *797 + organization: *771 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -167878,7 +167982,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *771 + repository: *772 sender: *4 required: - action @@ -167959,8 +168063,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 marketplace_purchase: title: Marketplace Purchase type: object @@ -168046,9 +168150,9 @@ webhooks: type: integer unit_count: type: integer - organization: *770 - previous_marketplace_purchase: *797 - repository: *771 + organization: *771 + previous_marketplace_purchase: *798 + repository: *772 sender: *4 required: - action @@ -168128,12 +168232,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: *796 - organization: *770 - previous_marketplace_purchase: *797 - repository: *771 + enterprise: *769 + installation: *770 + marketplace_purchase: *797 + organization: *771 + previous_marketplace_purchase: *798 + repository: *772 sender: *4 required: - action @@ -168235,11 +168339,11 @@ webhooks: type: string required: - to - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168341,11 +168445,11 @@ webhooks: type: - string - 'null' - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168424,11 +168528,11 @@ webhooks: type: string enum: - removed - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168506,11 +168610,11 @@ webhooks: type: string enum: - added - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 scope: description: The scope of the membership. Currently, can only be `team`. @@ -168588,7 +168692,7 @@ webhooks: required: - login - id - team: &798 + team: &799 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -168818,11 +168922,11 @@ webhooks: type: string enum: - removed - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 scope: description: The scope of the membership. Currently, can only be `team`. @@ -168901,7 +169005,7 @@ webhooks: required: - login - id - team: *798 + team: *799 required: - action - scope @@ -168983,8 +169087,8 @@ webhooks: type: string enum: - checks_requested - installation: *769 - merge_group: &799 + installation: *770 + merge_group: &800 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -169003,15 +169107,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *420 + head_commit: *421 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169097,10 +169201,10 @@ webhooks: - merged - invalidated - dequeued - installation: *769 - merge_group: *799 - organization: *770 - repository: *771 + installation: *770 + merge_group: *800 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169173,7 +169277,7 @@ webhooks: type: string enum: - deleted - enterprise: *768 + enterprise: *769 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -169282,12 +169386,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *769 - organization: *770 + installation: *770 + organization: *771 repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -169367,11 +169471,11 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 - milestone: *794 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169450,9 +169554,9 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - milestone: &800 + enterprise: *769 + installation: *770 + milestone: &801 title: Milestone description: A collection of related issues and pull requests. type: object @@ -169594,8 +169698,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169674,11 +169778,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - milestone: *794 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169788,11 +169892,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - milestone: *794 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169872,11 +169976,11 @@ webhooks: type: string enum: - opened - enterprise: *768 - installation: *769 - milestone: *800 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *801 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169955,11 +170059,11 @@ webhooks: type: string enum: - blocked - blocked_user: *788 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + blocked_user: *789 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170038,11 +170142,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *788 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + blocked_user: *789 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170121,9 +170225,9 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - membership: &801 + enterprise: *769 + installation: *770 + membership: &802 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -170233,8 +170337,8 @@ webhooks: - role - organization_url - user - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170312,11 +170416,11 @@ webhooks: type: string enum: - member_added - enterprise: *768 - installation: *769 - membership: *801 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + membership: *802 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170395,8 +170499,8 @@ webhooks: type: string enum: - member_invited - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -170518,10 +170622,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 - user: *788 + user: *789 required: - action - invitation @@ -170599,11 +170703,11 @@ webhooks: type: string enum: - member_removed - enterprise: *768 - installation: *769 - membership: *801 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + membership: *802 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170690,11 +170794,11 @@ webhooks: properties: from: type: string - enterprise: *768 - installation: *769 - membership: *801 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + membership: *802 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170771,9 +170875,9 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 package: description: Information about the package. type: object @@ -171296,7 +171400,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &802 + items: &803 title: Ruby Gems metadata type: object properties: @@ -171393,7 +171497,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -171469,9 +171573,9 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 package: description: Information about the package. type: object @@ -171833,7 +171937,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *802 + items: *803 source_url: type: string format: uri @@ -171904,7 +172008,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -172084,12 +172188,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *768 + enterprise: *769 id: type: integer - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - id @@ -172166,7 +172270,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &803 + personal_access_token_request: &804 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -172316,10 +172420,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *768 - organization: *770 + enterprise: *769 + organization: *771 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -172396,11 +172500,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *803 - enterprise: *768 - organization: *770 + personal_access_token_request: *804 + enterprise: *769 + organization: *771 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -172476,11 +172580,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *803 - enterprise: *768 - organization: *770 + personal_access_token_request: *804 + enterprise: *769 + organization: *771 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -172555,11 +172659,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *803 - organization: *770 - enterprise: *768 + personal_access_token_request: *804 + organization: *771 + enterprise: *769 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -172664,7 +172768,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *804 + last_response: *805 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -172696,8 +172800,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 zen: description: Random string of GitHub zen. @@ -172942,10 +173046,10 @@ webhooks: - from required: - note - enterprise: *768 - installation: *769 - organization: *770 - project_card: &805 + enterprise: *769 + installation: *770 + organization: *771 + project_card: &806 title: Project Card type: object properties: @@ -173068,7 +173172,7 @@ webhooks: - creator - created_at - updated_at - repository: *771 + repository: *772 sender: *4 required: - action @@ -173149,11 +173253,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - project_card: *805 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_card: *806 + repository: *772 sender: *4 required: - action @@ -173233,9 +173337,9 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 project_card: title: Project Card type: object @@ -173365,7 +173469,7 @@ webhooks: repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -173459,11 +173563,11 @@ webhooks: - from required: - note - enterprise: *768 - installation: *769 - organization: *770 - project_card: *805 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_card: *806 + repository: *772 sender: *4 required: - action @@ -173557,9 +173661,9 @@ webhooks: - from required: - column_id - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 project_card: allOf: - title: Project Card @@ -173756,7 +173860,7 @@ webhooks: type: string required: - after_id - repository: *771 + repository: *772 sender: *4 required: - action @@ -173836,10 +173940,10 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 - organization: *770 - project: &807 + enterprise: *769 + installation: *770 + organization: *771 + project: &808 title: Project type: object properties: @@ -173966,7 +174070,7 @@ webhooks: - creator - created_at - updated_at - repository: *771 + repository: *772 sender: *4 required: - action @@ -174046,10 +174150,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - project_column: &806 + enterprise: *769 + installation: *770 + organization: *771 + project_column: &807 title: Project Column type: object properties: @@ -174089,7 +174193,7 @@ webhooks: - name - created_at - updated_at - repository: *771 + repository: *772 sender: *4 required: - action @@ -174168,14 +174272,14 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - project_column: *806 + enterprise: *769 + installation: *770 + organization: *771 + project_column: *807 repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -174264,11 +174368,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - project_column: *806 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_column: *807 + repository: *772 sender: *4 required: - action @@ -174348,11 +174452,11 @@ webhooks: type: string enum: - moved - enterprise: *768 - installation: *769 - organization: *770 - project_column: *806 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_column: *807 + repository: *772 sender: *4 required: - action @@ -174432,11 +174536,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - project: *807 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 + repository: *772 sender: *4 required: - action @@ -174516,14 +174620,14 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - project: *807 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -174624,11 +174728,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - project: *807 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 + repository: *772 sender: *4 required: - action @@ -174707,11 +174811,11 @@ webhooks: type: string enum: - reopened - enterprise: *768 - installation: *769 - organization: *770 - project: *807 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 + repository: *772 sender: *4 required: - action @@ -174792,9 +174896,9 @@ webhooks: type: string enum: - closed - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -174875,9 +174979,9 @@ webhooks: type: string enum: - created - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -174958,9 +175062,9 @@ webhooks: type: string enum: - deleted - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -175081,9 +175185,9 @@ webhooks: type: string to: type: string - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -175166,7 +175270,7 @@ webhooks: type: string enum: - archived - changes: &811 + changes: &812 type: object properties: archived_at: @@ -175182,9 +175286,9 @@ webhooks: - string - 'null' format: date-time - installation: *769 - organization: *770 - projects_v2_item: &808 + installation: *770 + organization: *771 + projects_v2_item: &809 title: Projects v2 Item description: An item belonging to a project type: object @@ -175202,7 +175306,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *285 + content_type: *286 creator: *4 created_at: type: string @@ -175324,9 +175428,9 @@ webhooks: - 'null' to: type: string - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -175408,9 +175512,9 @@ webhooks: type: string enum: - created - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -175491,9 +175595,9 @@ webhooks: type: string enum: - deleted - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -175598,7 +175702,7 @@ webhooks: oneOf: - type: string - type: integer - - &809 + - &810 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -175622,7 +175726,7 @@ webhooks: required: - id - name - - &810 + - &811 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -175662,8 +175766,8 @@ webhooks: oneOf: - type: string - type: integer - - *809 - *810 + - *811 type: - 'null' - string @@ -175686,9 +175790,9 @@ webhooks: - 'null' required: - body - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -175785,9 +175889,9 @@ webhooks: type: - string - 'null' - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -175870,10 +175974,10 @@ webhooks: type: string enum: - restored - changes: *811 - installation: *769 - organization: *770 - projects_v2_item: *808 + changes: *812 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -175955,9 +176059,9 @@ webhooks: type: string enum: - reopened - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -176038,9 +176142,9 @@ webhooks: type: string enum: - created - installation: *769 - organization: *770 - projects_v2_status_update: *812 + installation: *770 + organization: *771 + projects_v2_status_update: *813 sender: *4 required: - action @@ -176121,9 +176225,9 @@ webhooks: type: string enum: - deleted - installation: *769 - organization: *770 - projects_v2_status_update: *812 + installation: *770 + organization: *771 + projects_v2_status_update: *813 sender: *4 required: - action @@ -176269,9 +176373,9 @@ webhooks: - string - 'null' format: date - installation: *769 - organization: *770 - projects_v2_status_update: *812 + installation: *770 + organization: *771 + projects_v2_status_update: *813 sender: *4 required: - action @@ -176342,10 +176446,10 @@ webhooks: title: public event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - repository @@ -176422,13 +176526,13 @@ webhooks: type: string enum: - assigned - assignee: *788 - enterprise: *768 - installation: *769 - number: &813 + assignee: *789 + enterprise: *769 + installation: *770 + number: &814 description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -178653,7 +178757,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -178781,7 +178885,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -178863,11 +178967,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -181083,7 +181187,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -181213,7 +181317,7 @@ webhooks: - draft reason: type: string - repository: *771 + repository: *772 sender: *4 required: - action @@ -181295,11 +181399,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -183515,7 +183619,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -183645,7 +183749,7 @@ webhooks: - draft reason: type: string - repository: *771 + repository: *772 sender: *4 required: - action @@ -183727,13 +183831,13 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: &814 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: &815 allOf: - - *602 + - *603 - type: object properties: allow_auto_merge: @@ -183795,7 +183899,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *771 + repository: *772 sender: *4 required: - action @@ -183876,12 +183980,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -183961,11 +184065,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *768 - milestone: *282 - number: *813 - organization: *770 - pull_request: &815 + enterprise: *769 + milestone: *283 + number: *814 + organization: *771 + pull_request: &816 title: Pull Request type: object properties: @@ -186182,7 +186286,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -186310,7 +186414,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -186389,11 +186493,11 @@ webhooks: type: string enum: - dequeued - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -188614,7 +188718,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -188757,7 +188861,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *771 + repository: *772 sender: *4 required: - action @@ -188881,12 +188985,12 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -188966,11 +189070,11 @@ webhooks: type: string enum: - enqueued - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -191191,7 +191295,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -191319,7 +191423,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -191399,11 +191503,11 @@ webhooks: type: string enum: - labeled - enterprise: *768 - installation: *769 - label: *787 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + label: *788 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -193627,7 +193731,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -193755,7 +193859,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -193836,10 +193940,10 @@ webhooks: type: string enum: - locked - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -196061,7 +196165,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -196189,7 +196293,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -196269,12 +196373,12 @@ webhooks: type: string enum: - milestoned - enterprise: *768 - milestone: *282 - number: *813 - organization: *770 - pull_request: *815 - repository: *771 + enterprise: *769 + milestone: *283 + number: *814 + organization: *771 + pull_request: *816 + repository: *772 sender: *4 required: - action @@ -196353,12 +196457,12 @@ webhooks: type: string enum: - opened - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -196439,12 +196543,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -196524,12 +196628,12 @@ webhooks: type: string enum: - reopened - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -196904,9 +197008,9 @@ webhooks: - start_side - side - reactions - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: type: object properties: @@ -199017,7 +199121,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -199140,7 +199244,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *771 + repository: *772 sender: *4 required: - action @@ -199220,7 +199324,7 @@ webhooks: type: string enum: - deleted - comment: &817 + comment: &818 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -199513,9 +199617,9 @@ webhooks: - start_side - side - reactions - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: type: object properties: @@ -201614,7 +201718,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -201737,7 +201841,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *771 + repository: *772 sender: *4 required: - action @@ -201817,11 +201921,11 @@ webhooks: type: string enum: - edited - changes: *816 - comment: *817 - enterprise: *768 - installation: *769 - organization: *770 + changes: *817 + comment: *818 + enterprise: *769 + installation: *770 + organization: *771 pull_request: type: object properties: @@ -203923,7 +204027,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -204046,7 +204150,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *771 + repository: *772 sender: *4 required: - action @@ -204127,9 +204231,9 @@ webhooks: type: string enum: - dismissed - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -206241,7 +206345,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -206366,7 +206470,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 + repository: *772 review: description: The review that was affected. type: object @@ -206617,9 +206721,9 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -208728,8 +208832,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 - review: &818 + repository: *772 + review: &819 description: The review that was affected. type: object properties: @@ -208967,12 +209071,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -211195,7 +211299,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -211323,7 +211427,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_reviewer: title: User type: @@ -211409,12 +211513,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -213644,7 +213748,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -213772,7 +213876,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_team: title: Team description: Groups of organization members that gives permissions @@ -213967,12 +214071,12 @@ webhooks: type: string enum: - review_requested - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -216196,7 +216300,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -216325,7 +216429,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_reviewer: title: User type: @@ -216412,12 +216516,12 @@ webhooks: type: string enum: - review_requested - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -218632,7 +218736,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -218761,7 +218865,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_team: title: Team description: Groups of organization members that gives permissions @@ -218945,9 +219049,9 @@ webhooks: type: string enum: - submitted - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -221062,7 +221166,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -221187,8 +221291,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 - review: *818 + repository: *772 + review: *819 sender: *4 required: - action @@ -221268,9 +221372,9 @@ webhooks: type: string enum: - resolved - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -223294,7 +223398,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -223419,7 +223523,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 + repository: *772 sender: *4 thread: type: object @@ -223816,9 +223920,9 @@ webhooks: type: string enum: - unresolved - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -225826,7 +225930,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -225950,7 +226054,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 + repository: *772 sender: *4 thread: type: object @@ -226343,11 +226447,11 @@ webhooks: type: string enum: - stacked - enterprise: *768 - installation: *769 - stack: *599 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + stack: *600 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -228571,7 +228675,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -228699,7 +228803,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -228785,10 +228889,10 @@ webhooks: type: string before: type: string - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -230999,7 +231103,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -231127,7 +231231,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -231209,11 +231313,11 @@ webhooks: type: string enum: - unassigned - assignee: *819 - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + assignee: *820 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -233439,7 +233543,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -233567,7 +233671,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -233646,11 +233750,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *768 - installation: *769 - label: *787 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + label: *788 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -235865,7 +235969,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -235993,7 +236097,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -236074,10 +236178,10 @@ webhooks: type: string enum: - unlocked - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -238283,7 +238387,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -238410,7 +238514,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -238613,7 +238717,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *768 + enterprise: *769 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -238708,8 +238812,8 @@ webhooks: - url - author - committer - installation: *769 - organization: *770 + installation: *770 + organization: *771 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -239308,9 +239412,9 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 registry_package: type: object properties: @@ -239787,7 +239891,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *802 + items: *803 summary: type: string tag_name: @@ -239843,7 +239947,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -239921,9 +240025,9 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 registry_package: type: object properties: @@ -240235,7 +240339,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *802 + items: *803 summary: type: string tag_name: @@ -240285,7 +240389,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -240362,10 +240466,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - release: &820 + enterprise: *769 + installation: *770 + organization: *771 + release: &821 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -240696,7 +240800,7 @@ webhooks: - updated_at - zipball_url - body - repository: *771 + repository: *772 sender: *4 required: - action @@ -240773,11 +240877,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - release: *820 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *821 + repository: *772 sender: *4 required: - action @@ -240894,11 +240998,11 @@ webhooks: type: boolean required: - to - enterprise: *768 - installation: *769 - organization: *770 - release: *820 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *821 + repository: *772 sender: *4 required: - action @@ -240976,9 +241080,9 @@ webhooks: type: string enum: - prereleased - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -241314,7 +241418,7 @@ webhooks: - string - 'null' format: uri - repository: *771 + repository: *772 sender: *4 required: - action @@ -241390,10 +241494,10 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 - release: &821 + enterprise: *769 + installation: *770 + organization: *771 + release: &822 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -241726,7 +241830,7 @@ webhooks: - string - 'null' format: uri - repository: *771 + repository: *772 sender: *4 required: - action @@ -241802,11 +241906,11 @@ webhooks: type: string enum: - released - enterprise: *768 - installation: *769 - organization: *770 - release: *820 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *821 + repository: *772 sender: *4 required: - action @@ -241882,11 +241986,11 @@ webhooks: type: string enum: - unpublished - enterprise: *768 - installation: *769 - organization: *770 - release: *821 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *822 + repository: *772 sender: *4 required: - action @@ -241962,11 +242066,11 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_advisory: *688 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_advisory: *689 sender: *4 required: - action @@ -242042,11 +242146,11 @@ webhooks: type: string enum: - reported - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_advisory: *688 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_advisory: *689 sender: *4 required: - action @@ -242122,10 +242226,10 @@ webhooks: type: string enum: - archived - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -242202,10 +242306,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -242283,10 +242387,10 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -242371,10 +242475,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -242489,10 +242593,10 @@ webhooks: - 'null' items: type: string - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -242564,10 +242668,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 status: type: string @@ -242648,10 +242752,10 @@ webhooks: type: string enum: - privatized - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -242728,10 +242832,10 @@ webhooks: type: string enum: - publicized - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -242825,10 +242929,10 @@ webhooks: - name required: - repository - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -242908,11 +243012,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_ruleset: *324 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_ruleset: *325 sender: *4 required: - action @@ -242990,11 +243094,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_ruleset: *324 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_ruleset: *325 sender: *4 required: - action @@ -243072,11 +243176,11 @@ webhooks: type: string enum: - edited - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_ruleset: *324 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_ruleset: *325 changes: type: object properties: @@ -243095,16 +243199,16 @@ webhooks: properties: added: type: array - items: *298 + items: *299 deleted: type: array - items: *298 + items: *299 updated: type: array items: type: object properties: - condition: *298 + condition: *299 changes: type: object properties: @@ -243137,16 +243241,16 @@ webhooks: properties: added: type: array - items: *624 + items: *625 deleted: type: array - items: *624 + items: *625 updated: type: array items: type: object properties: - rule: *624 + rule: *625 changes: type: object properties: @@ -243383,10 +243487,10 @@ webhooks: - from required: - owner - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243464,10 +243568,10 @@ webhooks: type: string enum: - unarchived - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243545,7 +243649,7 @@ webhooks: type: string enum: - create - alert: &822 + alert: &823 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -243670,10 +243774,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243883,10 +243987,10 @@ webhooks: type: string enum: - dismissed - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -243964,11 +244068,11 @@ webhooks: type: string enum: - reopen - alert: *822 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *823 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244170,10 +244274,10 @@ webhooks: enum: - fixed - open - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244251,7 +244355,7 @@ webhooks: type: string enum: - assigned - alert: &824 + alert: &825 type: object properties: number: *181 @@ -244398,12 +244502,12 @@ webhooks: anyOf: - type: 'null' - *4 - metadata: *823 + metadata: *824 assignee: *4 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244481,11 +244585,11 @@ webhooks: type: string enum: - created - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244566,11 +244670,11 @@ webhooks: type: string enum: - created - alert: *824 - installation: *769 - location: *825 - organization: *770 - repository: *771 + alert: *825 + installation: *770 + location: *826 + organization: *771 + repository: *772 sender: *4 required: - location @@ -244808,11 +244912,11 @@ webhooks: type: string enum: - metadata_created - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244889,11 +244993,11 @@ webhooks: type: string enum: - metadata_removed - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244970,11 +245074,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245052,11 +245156,11 @@ webhooks: type: string enum: - reopened - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245134,11 +245238,11 @@ webhooks: type: string enum: - resolved - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245216,12 +245320,12 @@ webhooks: type: string enum: - unassigned - alert: *824 + alert: *825 assignee: *4 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245299,11 +245403,11 @@ webhooks: type: string enum: - validated - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245433,10 +245537,10 @@ webhooks: - organization - enterprise - - repository: *771 - enterprise: *768 - installation: *769 - organization: *770 + repository: *772 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -245514,11 +245618,11 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - security_advisory: &826 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + security_advisory: &827 description: The details of the security advisory, including summary, description, and severity. type: object @@ -245691,11 +245795,11 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - security_advisory: *826 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + security_advisory: *827 sender: *4 required: - action @@ -245768,10 +245872,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -245944,11 +246048,11 @@ webhooks: from: type: object properties: - security_and_analysis: *297 - enterprise: *768 - installation: *769 - organization: *770 - repository: *343 + security_and_analysis: *298 + enterprise: *769 + installation: *770 + organization: *771 + repository: *344 sender: *4 required: - changes @@ -246026,12 +246130,12 @@ webhooks: type: string enum: - cancelled - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: &827 + sponsorship: &828 type: object properties: created_at: @@ -246336,12 +246440,12 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - sponsorship @@ -246429,12 +246533,12 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - changes @@ -246511,17 +246615,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &828 + effective_date: &829 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: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - sponsorship @@ -246595,7 +246699,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &829 + changes: &830 type: object properties: tier: @@ -246639,13 +246743,13 @@ webhooks: - from required: - tier - effective_date: *828 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + effective_date: *829 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - changes @@ -246722,13 +246826,13 @@ webhooks: type: string enum: - tier_changed - changes: *829 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + changes: *830 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - changes @@ -246802,10 +246906,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -246889,10 +246993,10 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -247326,15 +247430,15 @@ webhooks: type: - string - 'null' - enterprise: *768 + enterprise: *769 id: description: The unique identifier of the status. type: integer - installation: *769 + installation: *770 name: type: string - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 sha: description: The Commit SHA. @@ -247450,9 +247554,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247541,9 +247645,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247632,9 +247736,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247723,9 +247827,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247801,12 +247905,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - team: &830 + team: &831 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -248036,9 +248140,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -248508,7 +248612,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -248584,9 +248688,9 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -249056,7 +249160,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -249133,9 +249237,9 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -249605,7 +249709,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -249749,9 +249853,9 @@ webhooks: - from required: - permissions - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -250221,7 +250325,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - changes @@ -250299,9 +250403,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -250771,7 +250875,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -250847,10 +250951,10 @@ webhooks: type: string enum: - started - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -250923,17 +251027,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *768 + enterprise: *769 inputs: type: - object - 'null' additionalProperties: true - installation: *769 - organization: *770 + installation: *770 + organization: *771 ref: type: string - repository: *771 + repository: *772 sender: *4 workflow: type: string @@ -251015,10 +251119,10 @@ webhooks: type: string enum: - completed - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 workflow_job: allOf: @@ -251274,7 +251378,7 @@ webhooks: type: string required: - conclusion - deployment: *500 + deployment: *501 required: - action - repository @@ -251353,10 +251457,10 @@ webhooks: type: string enum: - in_progress - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 workflow_job: allOf: @@ -251638,7 +251742,7 @@ webhooks: required: - status - steps - deployment: *500 + deployment: *501 required: - action - repository @@ -251717,10 +251821,10 @@ webhooks: type: string enum: - queued - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 workflow_job: type: object @@ -251866,7 +251970,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *500 + deployment: *501 required: - action - repository @@ -251945,10 +252049,10 @@ webhooks: type: string enum: - waiting - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 workflow_job: type: object @@ -252095,7 +252199,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *500 + deployment: *501 required: - action - repository @@ -252175,12 +252279,12 @@ webhooks: type: string enum: - completed - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: *783 + workflow: *784 workflow_run: title: Workflow Run type: object @@ -253199,12 +253303,12 @@ webhooks: type: string enum: - in_progress - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: *783 + workflow: *784 workflow_run: title: Workflow Run type: object @@ -254208,12 +254312,12 @@ webhooks: type: string enum: - requested - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: *783 + workflow: *784 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 6393218832..aa96f0c99c 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -29477,6 +29477,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -31129,7 +31137,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -31354,7 +31363,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -90419,6 +90429,10 @@ "octocat" ] }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -149422,6 +149436,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -151074,7 +151096,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -151299,7 +151322,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -242600,6 +242624,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ @@ -421003,6 +421074,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -422103,7 +422182,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -422261,7 +422341,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -423623,7 +423704,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -424993,7 +425075,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -846001,6 +846084,53 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "examples": [ + 123, + "asc", + 456, + "desc" + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "examples": [ + 456 + ] } }, "required": [ diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index e4311862b9..9932ba2762 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -938,7 +938,7 @@ paths: - subscriptions_url - type - url - type: &332 + type: &333 type: string description: The type of credit the user is receiving. enum: @@ -1131,7 +1131,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &690 + - &691 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4394,7 +4394,7 @@ paths: schema: type: integer default: 30 - - &220 + - &221 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 @@ -4403,7 +4403,7 @@ paths: required: false schema: type: string - - &221 + - &222 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4423,7 +4423,7 @@ paths: application/json: schema: type: array - items: &222 + items: &223 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4519,7 +4519,7 @@ paths: - installation_id - repository_id examples: - default: &223 + default: &224 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4654,7 +4654,7 @@ paths: description: Response content: application/json: - schema: &224 + schema: &225 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4789,7 +4789,7 @@ paths: - request - response examples: - default: &225 + default: &226 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -12771,7 +12771,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 - - &489 + - &490 name: has in: query description: |- @@ -12805,6 +12805,16 @@ paths: - development - runtime - &211 + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string + - &212 name: sort in: query description: |- @@ -12830,7 +12840,7 @@ paths: application/json: schema: type: array - items: &212 + items: &213 type: object description: A Dependabot alert. properties: @@ -12901,7 +12911,7 @@ paths: - transitive - inconclusive - - security_advisory: &490 + security_advisory: &491 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -13195,7 +13205,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &491 + auto_dismissed_at: &492 type: - string - 'null' @@ -13203,7 +13213,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &492 + dismissal_request: &493 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -13266,7 +13276,7 @@ paths: - repository additionalProperties: false examples: - default: &213 + default: &214 value: - number: 2 state: dismissed @@ -13276,6 +13286,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -13462,6 +13473,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -13651,7 +13663,7 @@ paths: description: Response content: application/json: - schema: &214 + schema: &215 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -13677,7 +13689,7 @@ paths: - *66 additionalProperties: false examples: - default: &215 + default: &216 value: default_level: public accessible_repositories: @@ -14922,7 +14934,7 @@ paths: properties: action: type: string - discussion: &784 + discussion: &785 title: Discussion description: A Discussion in a repository. type: object @@ -15423,7 +15435,7 @@ paths: milestone: anyOf: - type: 'null' - - &282 + - &283 title: Milestone description: A collection of related issues and pull requests. @@ -15595,7 +15607,7 @@ paths: timeline_url: type: string format: uri - type: &246 + type: &247 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -15708,7 +15720,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &702 + sub_issues_summary: &703 title: Sub-issues Summary type: object properties: @@ -15792,7 +15804,7 @@ paths: pin: anyOf: - type: 'null' - - &568 + - &569 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -15813,7 +15825,7 @@ paths: minimized: anyOf: - type: 'null' - - &569 + - &570 title: Minimized Issue Comment description: Details about why an issue comment was minimized. @@ -15838,7 +15850,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &703 + issue_dependencies_summary: &704 title: Issue Dependencies Summary type: object properties: @@ -15857,7 +15869,7 @@ paths: - total_blocking issue_field_values: type: array - items: &550 + items: &551 title: Issue Field Value description: A value assigned to an issue field type: object @@ -16717,7 +16729,7 @@ paths: type: string release: allOf: - - &614 + - &615 title: Release description: A release. type: object @@ -16799,7 +16811,7 @@ paths: author: *4 assets: type: array - items: &615 + items: &616 title: Release Asset description: Data related to a release. type: object @@ -17431,7 +17443,7 @@ paths: url: type: string format: uri - user: &711 + user: &712 title: Public User description: Public User type: object @@ -19347,7 +19359,7 @@ paths: - closed - all default: open - - &249 + - &250 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -19398,7 +19410,7 @@ paths: type: array items: *83 examples: - default: &250 + default: &251 value: - id: 1 node_id: MDU6SXNzdWUx @@ -20824,14 +20836,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &340 + - &341 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &341 + - &342 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20893,7 +20905,7 @@ paths: '404': *6 '403': *27 '304': *36 - '301': &344 + '301': &345 description: Moved permanently content: application/json: @@ -20915,7 +20927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &588 + - &589 name: all description: If `true`, show notifications marked as read. in: query @@ -20923,7 +20935,7 @@ paths: schema: type: boolean default: false - - &589 + - &590 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20933,7 +20945,7 @@ paths: type: boolean default: false - *88 - - &590 + - &591 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: @@ -21315,7 +21327,7 @@ paths: type: boolean examples: - false - security_and_analysis: &297 + security_and_analysis: &298 type: - object - 'null' @@ -21532,7 +21544,7 @@ paths: - url - subscription_url examples: - default: &591 + default: &592 value: - id: '1' repository: @@ -22536,6 +22548,10 @@ paths: a single user (`user` scope). examples: - octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, + or for a multi-user budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget @@ -23485,7 +23501,7 @@ paths: parameters: - *75 - *117 - - &762 + - &763 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 @@ -23597,7 +23613,7 @@ paths: - *117 - *118 - *119 - - &763 + - &764 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -23605,7 +23621,7 @@ paths: schema: type: string - *122 - - &764 + - &765 name: sku description: The SKU to query for usage. in: query @@ -24612,7 +24628,7 @@ paths: type: integer repository_cache_usages: type: array - items: &351 + items: &352 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -26000,7 +26016,7 @@ paths: - all - local_only - selected - selected_actions_url: &356 + selected_actions_url: &357 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` @@ -26083,7 +26099,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &361 type: object properties: days: @@ -26125,7 +26141,7 @@ paths: required: true content: application/json: - schema: &361 + schema: &362 type: object properties: days: @@ -26182,7 +26198,7 @@ paths: required: - approval_policy examples: - default: &362 + default: &363 value: approval_policy: first_time_contributors '404': *6 @@ -26241,7 +26257,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &364 type: object required: - run_workflows_from_fork_pull_requests @@ -26295,7 +26311,7 @@ paths: required: true content: application/json: - schema: &364 + schema: &365 type: object required: - run_workflows_from_fork_pull_requests @@ -26930,7 +26946,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &366 type: object properties: default_workflow_permissions: &149 @@ -26981,7 +26997,7 @@ paths: required: false content: application/json: - schema: &366 + schema: &367 type: object properties: default_workflow_permissions: *149 @@ -28132,7 +28148,7 @@ paths: application/json: schema: type: array - items: &367 + items: &368 title: Runner Application description: Runner Application type: object @@ -28157,7 +28173,7 @@ paths: - download_url - filename examples: - default: &368 + default: &369 value: - os: osx architecture: x64 @@ -28243,7 +28259,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &369 + '201': &370 description: Response content: application/json: @@ -28358,7 +28374,7 @@ paths: - token - expires_at examples: - default: &370 + default: &371 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -28397,7 +28413,7 @@ paths: application/json: schema: *160 examples: - default: &371 + default: &372 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -28431,7 +28447,7 @@ paths: application/json: schema: *158 examples: - default: &372 + default: &373 value: id: 23 name: MBP @@ -28658,7 +28674,7 @@ paths: - *75 - *157 responses: - '200': &373 + '200': &374 description: Response content: application/json: @@ -28715,7 +28731,7 @@ paths: parameters: - *75 - *157 - - &374 + - &375 name: name description: The name of a self-hosted runner's custom label. in: path @@ -31687,12 +31703,12 @@ paths: required: - subject_digests examples: - default: &743 + default: &744 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &744 + withPredicateType: &745 value: subject_digests: - sha256:abc123 @@ -31751,7 +31767,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &745 + default: &746 value: attestations_subject_digests: - sha256:abc: @@ -32117,7 +32133,7 @@ paths: initiator: type: string examples: - default: &400 + default: &401 value: attestations: - repository_id: 1 @@ -32414,7 +32430,7 @@ paths: parent: anyOf: - type: 'null' - - &261 + - &262 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -33017,7 +33033,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *75 - - &426 + - &427 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`, @@ -33027,7 +33043,7 @@ paths: schema: &188 type: string description: The name of the tool used to generate the code scanning analysis. - - &427 + - &428 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 @@ -33051,7 +33067,7 @@ paths: be returned. in: query required: false - schema: &429 + schema: &430 type: string description: State of a code scanning alert. enum: @@ -33074,7 +33090,7 @@ paths: be returned. in: query required: false - schema: &430 + schema: &431 type: string description: Severity of a code scanning alert. enum: @@ -33108,7 +33124,7 @@ paths: updated_at: *183 url: *184 html_url: *185 - instances_url: &431 + instances_url: &432 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -33130,7 +33146,7 @@ paths: - type: 'null' - *4 dismissed_at: *187 - dismissed_reason: &432 + dismissed_reason: &433 type: - string - 'null' @@ -33141,14 +33157,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &433 + dismissed_comment: &434 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &434 + rule: &435 type: object properties: id: @@ -33209,7 +33225,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &435 + tool: &436 type: object properties: name: *188 @@ -33220,26 +33236,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *189 - most_recent_instance: &436 + most_recent_instance: &437 type: object properties: - ref: &428 + ref: &429 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &447 + analysis_key: &448 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &448 + environment: &449 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &449 + category: &450 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -33259,7 +33275,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &450 + location: &451 type: object description: Describe a region within a file for the alert. properties: @@ -33280,7 +33296,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &451 + items: &452 type: - string - 'null' @@ -34580,7 +34596,7 @@ paths: type: integer codespaces: type: array - items: &251 + items: &252 type: object title: Codespace description: A codespace. @@ -34615,7 +34631,7 @@ paths: machine: anyOf: - type: 'null' - - &463 + - &464 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -34902,7 +34918,7 @@ paths: - pulls_url - recent_folders examples: - default: &252 + default: &253 value: total_count: 3 codespaces: @@ -35567,7 +35583,7 @@ paths: - updated_at - visibility examples: - default: &464 + default: &465 value: total_count: 2 secrets: @@ -35605,7 +35621,7 @@ paths: description: Response content: application/json: - schema: &465 + schema: &466 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -35640,7 +35656,7 @@ paths: - key_id - key examples: - default: &466 + default: &467 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -35672,7 +35688,7 @@ paths: application/json: schema: *196 examples: - default: &468 + default: &469 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -37758,7 +37774,7 @@ paths: currently being billed. seats: type: array - items: &254 + items: &255 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -38966,6 +38982,7 @@ paths: type: string - *210 - *211 + - *212 - *61 - *46 - *47 @@ -38977,9 +38994,9 @@ paths: application/json: schema: type: array - items: *212 + items: *213 examples: - default: *213 + default: *214 '304': *36 '400': *14 '403': *27 @@ -39028,9 +39045,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *215 examples: - default: *215 + default: *216 '403': *27 '404': *6 x-github: @@ -39194,7 +39211,7 @@ paths: type: integer secrets: type: array - items: &216 + items: &217 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -39273,7 +39290,7 @@ paths: description: Response content: application/json: - schema: &495 + schema: &496 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -39292,7 +39309,7 @@ paths: - key_id - key examples: - default: &496 + default: &497 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -39322,7 +39339,7 @@ paths: description: Response content: application/json: - schema: *216 + schema: *217 examples: default: value: @@ -39629,7 +39646,7 @@ paths: application/json: schema: type: array - items: &263 + items: &264 title: Package description: A software package type: object @@ -39700,7 +39717,7 @@ paths: - created_at - updated_at examples: - default: &264 + default: &265 value: - id: 197 name: hello_docker @@ -39870,7 +39887,7 @@ paths: application/json: schema: type: array - items: &240 + items: &241 title: Organization Invitation description: Organization Invitation type: object @@ -39924,7 +39941,7 @@ paths: - invitation_teams_url - node_id examples: - default: &241 + default: &242 value: - id: 1 login: monalisa @@ -39991,7 +40008,7 @@ paths: application/json: schema: type: array - items: &217 + items: &218 title: Org Hook description: Org Hook type: object @@ -40176,9 +40193,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: &218 + default: &219 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -40226,7 +40243,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *75 - - &219 + - &220 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. @@ -40239,9 +40256,9 @@ paths: description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 '404': *6 x-github: githubCloudOnly: false @@ -40269,7 +40286,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *75 - - *219 + - *220 requestBody: required: false content: @@ -40315,7 +40332,7 @@ paths: description: Response content: application/json: - schema: *217 + schema: *218 examples: default: value: @@ -40357,7 +40374,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *75 - - *219 + - *220 responses: '204': description: Response @@ -40385,7 +40402,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *75 - - *219 + - *220 responses: '200': description: Response @@ -40416,7 +40433,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *75 - - *219 + - *220 requestBody: required: false content: @@ -40467,10 +40484,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *75 - - *219 - - *17 - *220 + - *17 - *221 + - *222 responses: '200': description: Response @@ -40478,9 +40495,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *223 + default: *224 '400': *14 '422': *15 x-github: @@ -40506,16 +40523,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *75 - - *219 + - *220 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 '400': *14 '422': *15 x-github: @@ -40541,7 +40558,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *75 - - *219 + - *220 - *16 responses: '202': *38 @@ -40571,7 +40588,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *75 - - *219 + - *220 responses: '204': description: Response @@ -40596,7 +40613,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *75 - - &230 + - &231 name: actor_type in: path description: The type of the actor @@ -40609,14 +40626,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &231 + - &232 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &226 + - &227 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`.' @@ -40624,7 +40641,7 @@ paths: required: true schema: type: string - - &227 + - &228 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) @@ -40721,12 +40738,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *75 - - *226 - *227 + - *228 - *19 - *17 - *61 - - &236 + - &237 name: sort description: The property to sort the results by. in: query @@ -40807,14 +40824,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *75 - - *226 - *227 + - *228 responses: '200': description: Response content: application/json: - schema: &228 + schema: &229 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -40830,7 +40847,7 @@ paths: type: integer format: int64 examples: - default: &229 + default: &230 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -40853,23 +40870,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *75 - - &232 + - &233 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *226 - *227 + - *228 responses: '200': description: Response content: application/json: - schema: *228 + schema: *229 examples: - default: *229 + default: *230 x-github: enabledForGitHubApps: true category: orgs @@ -40889,18 +40906,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *75 - - *226 - *227 - - *230 + - *228 - *231 + - *232 responses: '200': description: Response content: application/json: - schema: *228 + schema: *229 examples: - default: *229 + default: *230 x-github: enabledForGitHubApps: true category: orgs @@ -40920,9 +40937,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *75 - - *226 - *227 - - &233 + - *228 + - &234 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -40935,7 +40952,7 @@ paths: description: Response content: application/json: - schema: &234 + schema: &235 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -40951,7 +40968,7 @@ paths: type: integer format: int64 examples: - default: &235 + default: &236 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -40990,18 +41007,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *75 - - *232 - - *226 - - *227 - *233 + - *227 + - *228 + - *234 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *235 + default: *236 x-github: enabledForGitHubApps: true category: orgs @@ -41021,19 +41038,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *75 - - *230 - *231 - - *226 + - *232 - *227 - - *233 + - *228 + - *234 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *235 + default: *236 x-github: enabledForGitHubApps: true category: orgs @@ -41053,13 +41070,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *75 - - *232 - - *226 + - *233 - *227 + - *228 - *19 - *17 - *61 - - *236 + - *237 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -41143,7 +41160,7 @@ paths: application/json: schema: *20 examples: - default: &533 + default: &534 value: id: 1 account: @@ -41309,12 +41326,12 @@ paths: application/json: schema: anyOf: - - &238 + - &239 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &237 + limit: &238 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -41342,7 +41359,7 @@ paths: properties: {} additionalProperties: false examples: - default: &239 + default: &240 value: limit: collaborators_only origin: organization @@ -41371,13 +41388,13 @@ paths: required: true content: application/json: - schema: &534 + schema: &535 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *237 + limit: *238 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -41402,9 +41419,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *239 + default: *240 '422': *15 x-github: githubCloudOnly: false @@ -41614,9 +41631,9 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: - default: *241 + default: *242 headers: Link: *67 '404': *6 @@ -41693,7 +41710,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -41748,7 +41765,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *75 - - &242 + - &243 name: invitation_id description: The unique identifier of the invitation. in: path @@ -41779,7 +41796,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *75 - - *242 + - *243 - *17 - *19 responses: @@ -41791,7 +41808,7 @@ paths: type: array items: *201 examples: - default: &262 + default: &263 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -41834,7 +41851,7 @@ paths: application/json: schema: type: array - items: &243 + items: &244 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -42097,9 +42114,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *244 examples: - default: &244 + default: &245 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -42155,7 +42172,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *75 - - &245 + - &246 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -42265,9 +42282,9 @@ paths: description: Response content: application/json: - schema: *243 + schema: *244 examples: - default: *244 + default: *245 '404': *6 '422': *7 x-github: @@ -42292,7 +42309,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *75 - - *245 + - *246 responses: '204': *58 '404': *6 @@ -42322,9 +42339,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: &538 + default: &539 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -42410,9 +42427,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: &247 + default: &248 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -42445,7 +42462,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *75 - - &248 + - &249 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -42501,9 +42518,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 '422': *7 x-github: @@ -42528,7 +42545,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *75 - - *248 + - *249 responses: '204': description: Response @@ -42591,7 +42608,7 @@ paths: - closed - all default: open - - *249 + - *250 - name: type description: Can be the name of an issue type. in: query @@ -42622,7 +42639,7 @@ paths: type: array items: *83 examples: - default: *250 + default: *251 headers: Link: *67 '404': *6 @@ -42787,9 +42804,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *252 examples: - default: *252 + default: *253 '304': *36 '500': *54 '401': *23 @@ -42816,7 +42833,7 @@ paths: parameters: - *75 - *71 - - &253 + - &254 name: codespace_name in: path required: true @@ -42851,15 +42868,15 @@ paths: parameters: - *75 - *71 - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: &462 + default: &463 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -43039,7 +43056,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *254 + schema: *255 examples: default: value: @@ -43115,7 +43132,7 @@ paths: description: Response content: application/json: - schema: &255 + schema: &256 title: Org Membership description: Org Membership type: object @@ -43184,7 +43201,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &256 + response-if-user-has-an-active-admin-membership-with-organization: &257 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -43285,9 +43302,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *256 examples: - response-if-user-already-had-membership-with-organization: *256 + response-if-user-already-had-membership-with-organization: *257 '422': *15 '403': *27 x-github: @@ -43365,7 +43382,7 @@ paths: application/json: schema: type: array - items: &257 + items: &258 title: Migration description: A migration. type: object @@ -43714,7 +43731,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -43893,7 +43910,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *75 - - &258 + - &259 name: migration_id description: The unique identifier of the migration. in: path @@ -43921,7 +43938,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -44091,7 +44108,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *75 - - *258 + - *259 responses: '302': description: Response @@ -44113,7 +44130,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *75 - - *258 + - *259 responses: '204': description: Response @@ -44137,8 +44154,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *75 - - *258 - - &726 + - *259 + - &727 name: repo_name description: repo_name parameter in: path @@ -44166,7 +44183,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *75 - - *258 + - *259 - *17 - *19 responses: @@ -44178,7 +44195,7 @@ paths: type: array items: *156 examples: - default: &269 + default: &270 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -44351,7 +44368,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &260 + items: &261 title: Organization Role description: Organization roles type: object @@ -44528,7 +44545,7 @@ paths: parameters: - *75 - *77 - - &259 + - &260 name: role_id description: The unique identifier of the role. in: path @@ -44565,7 +44582,7 @@ paths: parameters: - *75 - *77 - - *259 + - *260 responses: '204': description: Response @@ -44618,7 +44635,7 @@ paths: parameters: - *75 - *71 - - *259 + - *260 responses: '204': description: Response @@ -44650,7 +44667,7 @@ paths: parameters: - *75 - *71 - - *259 + - *260 responses: '204': description: Response @@ -44679,13 +44696,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *75 - - *259 + - *260 responses: '200': description: Response content: application/json: - schema: *260 + schema: *261 examples: default: value: @@ -44736,7 +44753,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *75 - - *259 + - *260 - *17 - *19 responses: @@ -44815,7 +44832,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *262 type: description: The ownership type of the team type: string @@ -44848,7 +44865,7 @@ paths: - type - parent examples: - default: *262 + default: *263 headers: Link: *67 '404': @@ -44878,7 +44895,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *75 - - *259 + - *260 - *17 - *19 responses: @@ -44907,7 +44924,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *261 + items: *262 name: type: - string @@ -45217,7 +45234,7 @@ paths: - nuget - container - *75 - - &727 + - &728 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -45253,12 +45270,12 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *264 + default: *265 '403': *27 '401': *23 - '400': &729 + '400': &730 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -45280,7 +45297,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &265 + - &266 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 @@ -45298,7 +45315,7 @@ paths: - docker - nuget - container - - &266 + - &267 name: package_name description: The name of the package. in: path @@ -45311,7 +45328,7 @@ paths: description: Response content: application/json: - schema: *263 + schema: *264 examples: default: value: @@ -45363,8 +45380,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *265 - *266 + - *267 - *75 responses: '204': @@ -45397,8 +45414,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - name: token description: package token @@ -45431,8 +45448,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: - - *265 - *266 + - *267 - *75 - *19 - *17 @@ -45453,7 +45470,7 @@ paths: application/json: schema: type: array - items: &267 + items: &268 title: Package Version description: A version of a software package type: object @@ -45588,10 +45605,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - - &268 + - &269 name: package_version_id description: Unique identifier of the package version. in: path @@ -45603,7 +45620,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -45639,10 +45656,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - - *268 + - *269 responses: '204': description: Response @@ -45674,10 +45691,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *265 - *266 + - *267 - *75 - - *268 + - *269 responses: '204': description: Response @@ -45707,7 +45724,7 @@ paths: - *75 - *17 - *19 - - &270 + - &271 name: sort description: The property by which to sort the results. in: query @@ -45718,7 +45735,7 @@ paths: - created_at default: created_at - *61 - - &271 + - &272 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -45730,7 +45747,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &272 + - &273 name: repository description: The name of the repository to use to filter the results. in: query @@ -45739,7 +45756,7 @@ paths: type: string examples: - Hello-World - - &273 + - &274 name: permission description: The permission to use to filter the results. in: query @@ -45748,7 +45765,7 @@ paths: type: string examples: - issues_read - - &274 + - &275 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) @@ -45758,7 +45775,7 @@ paths: schema: type: string format: date-time - - &275 + - &276 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) @@ -45768,7 +45785,7 @@ paths: schema: type: string format: date-time - - &276 + - &277 name: token_id description: The ID of the token in: query @@ -46087,7 +46104,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -46113,14 +46130,14 @@ paths: - *75 - *17 - *19 - - *270 - - *61 - *271 + - *61 - *272 - *273 - *274 - *275 - *276 + - *277 responses: '500': *54 '422': *15 @@ -46404,7 +46421,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -46446,7 +46463,7 @@ paths: type: integer configurations: type: array - items: &277 + items: &278 title: Organization private registry description: Private registry configuration for an organization type: object @@ -46963,7 +46980,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &278 + org-private-registry-with-selected-visibility: &279 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -47061,9 +47078,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *277 + schema: *278 examples: - default: *278 + default: *279 '404': *6 x-github: githubCloudOnly: false @@ -47315,7 +47332,7 @@ paths: application/json: schema: type: array - items: &279 + items: &280 title: Projects v2 Project description: A projects v2 project type: object @@ -47389,7 +47406,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &812 + - &813 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -47474,7 +47491,7 @@ paths: - deleted_at - deleted_by examples: - default: &280 + default: &281 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -47577,7 +47594,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &281 + - &282 name: project_number description: The project's number. in: path @@ -47590,9 +47607,9 @@ paths: description: Response content: application/json: - schema: *279 + schema: *280 examples: - default: *280 + default: *281 headers: Link: *67 '304': *36 @@ -47615,7 +47632,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *75 - - *281 + - *282 requestBody: required: true description: Details of the draft item to create in the project. @@ -47649,7 +47666,7 @@ paths: description: Response content: application/json: - schema: &286 + schema: &287 title: Projects v2 Item description: An item belonging to a project type: object @@ -47663,7 +47680,7 @@ paths: content: oneOf: - *83 - - &437 + - &438 title: Pull Request Simple description: Pull Request Simple type: object @@ -47783,7 +47800,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *283 active_lock_reason: type: - string @@ -47876,7 +47893,7 @@ paths: _links: type: object properties: - comments: &283 + comments: &284 title: Link description: Hypermedia Link type: object @@ -47885,13 +47902,13 @@ paths: type: string required: - href - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + commits: *284 + statuses: *284 + html: *284 + issue: *284 + review_comments: *284 + review_comment: *284 + self: *284 required: - comments - commits @@ -47902,7 +47919,7 @@ paths: - review_comment - self author_association: *80 - auto_merge: &598 + auto_merge: &599 title: Auto merge description: The status of auto merging a pull request. type: @@ -47928,7 +47945,7 @@ paths: - merge_method - commit_title - commit_message - stack: &599 + stack: &600 title: Pull Request Stack description: The stack information associated with a pull request. @@ -48116,7 +48133,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &285 + content_type: &286 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -48160,7 +48177,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &287 + draft_issue: &288 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -48234,7 +48251,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *281 + - *282 - *75 - *17 - *46 @@ -48246,7 +48263,7 @@ paths: application/json: schema: type: array - items: &284 + items: &285 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -48399,7 +48416,7 @@ paths: - updated_at - project_url examples: - default: &749 + default: &750 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48529,7 +48546,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *281 + - *282 - *75 requestBody: required: true @@ -48576,7 +48593,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &750 + items: &751 type: object properties: name: @@ -48613,7 +48630,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &751 + iteration_configuration: &752 type: object description: The configuration for iteration fields. properties: @@ -48663,7 +48680,7 @@ paths: value: name: Due date data_type: date - single_select_field: &752 + single_select_field: &753 summary: Create a single select field value: name: Priority @@ -48690,7 +48707,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &753 + iteration_field: &754 summary: Create an iteration field value: name: Sprint @@ -48714,9 +48731,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *284 + schema: *285 examples: - text_field: &754 + text_field: &755 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -48725,7 +48742,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &755 + number_field: &756 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -48734,7 +48751,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &756 + date_field: &757 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -48743,7 +48760,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &757 + single_select_field: &758 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48777,7 +48794,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &758 + iteration_field: &759 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -48822,8 +48839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *281 - - &759 + - *282 + - &760 name: field_id description: The unique identifier of the field. in: path @@ -48836,9 +48853,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *285 examples: - default: &760 + default: &761 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48894,7 +48911,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *281 + - *282 - *75 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -48927,7 +48944,7 @@ paths: application/json: schema: type: array - items: &288 + items: &289 title: Projects v2 Item description: An item belonging to a project type: object @@ -48944,7 +48961,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *285 + content_type: *286 content: type: - object @@ -48994,7 +49011,7 @@ paths: - updated_at - archived_at examples: - default: &289 + default: &290 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -49692,7 +49709,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *75 - - *281 + - *282 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -49762,22 +49779,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *288 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *288 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *288 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *288 '304': *36 '403': *27 '401': *23 @@ -49797,9 +49814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *281 + - *282 - *75 - - &290 + - &291 name: item_id description: The unique identifier of the project item. in: path @@ -49825,9 +49842,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -49848,9 +49865,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *281 + - *282 - *75 - - *290 + - *291 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -49923,13 +49940,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *290 + number_field: *290 + date_field: *290 + single_select_field: *290 + iteration_field: *290 '401': *23 '403': *27 '404': *6 @@ -49949,9 +49966,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *281 + - *282 - *75 - - *290 + - *291 responses: '204': description: Response @@ -49975,7 +49992,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *75 - - *281 + - *282 requestBody: required: true content: @@ -50014,6 +50031,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -50049,7 +50107,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &740 + schema: &741 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -50153,7 +50211,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &291 + value: &292 value: id: 1 number: 1 @@ -50199,10 +50257,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *291 + value: *292 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *292 '304': *36 '403': *27 '401': *23 @@ -50230,9 +50288,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *281 + - *282 - *75 - - &761 + - &762 name: view_number description: The number that identifies the project view. in: path @@ -50264,9 +50322,9 @@ paths: application/json: schema: type: array - items: *288 + items: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -50299,7 +50357,7 @@ paths: application/json: schema: type: array - items: &292 + items: &293 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -50377,7 +50435,7 @@ paths: - property_name - value_type examples: - default: &293 + default: &294 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -50437,7 +50495,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *292 + items: *293 minItems: 1 maxItems: 100 required: @@ -50467,9 +50525,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *293 + default: *294 '403': *27 '404': *6 x-github: @@ -50491,7 +50549,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *75 - - &294 + - &295 name: custom_property_name description: The custom property name in: path @@ -50503,9 +50561,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: &295 + default: &296 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -50540,7 +50598,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *75 - - *294 + - *295 requestBody: required: true content: @@ -50620,9 +50678,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: *295 + default: *296 '403': *27 '404': *6 x-github: @@ -50646,7 +50704,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *75 - - *294 + - *295 responses: '204': *58 '403': *27 @@ -50710,7 +50768,7 @@ paths: - octocat/Hello-World properties: type: array - items: &296 + items: &297 title: Custom Property Value description: Custom property name and associated value type: object @@ -50800,7 +50858,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *296 + items: *297 required: - repository_names - properties @@ -50992,7 +51050,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -51195,7 +51253,7 @@ paths: description: Response content: application/json: - schema: &343 + schema: &344 title: Full Repository description: Full Repository type: object @@ -51673,7 +51731,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &481 + code_of_conduct: &482 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -51703,7 +51761,7 @@ paths: - key - name - html_url - security_and_analysis: *297 + security_and_analysis: *298 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -51798,7 +51856,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &345 + default: &346 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -52331,7 +52389,7 @@ paths: - *75 - *17 - *19 - - &623 + - &624 name: targets description: | A comma-separated list of rule targets to filter by. @@ -52350,7 +52408,7 @@ paths: application/json: schema: type: array - items: &324 + items: &325 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -52385,7 +52443,7 @@ paths: source: type: string description: The name of the source - enforcement: &300 + enforcement: &301 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -52398,7 +52456,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &301 + items: &302 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -52470,7 +52528,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &298 + - &299 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -52494,7 +52552,7 @@ paths: match. items: type: string - - &302 + - &303 title: Organization ruleset conditions type: object description: |- @@ -52508,7 +52566,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *298 + - *299 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -52542,7 +52600,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *298 + - *299 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -52564,7 +52622,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *298 + - *299 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -52577,7 +52635,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &299 + items: &300 title: Repository ruleset property targeting definition type: object @@ -52610,7 +52668,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *299 + items: *300 required: - repository_property type: @@ -52618,12 +52676,12 @@ paths: - object rules: type: array - items: &624 + items: &625 title: Repository Rule type: object description: A repository rule. oneOf: - - &303 + - &304 title: creation description: Only allow users with bypass permission to create matching refs. @@ -52635,7 +52693,7 @@ paths: type: string enum: - creation - - &304 + - &305 title: update description: Only allow users with bypass permission to update matching refs. @@ -52656,7 +52714,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &305 + - &306 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -52668,7 +52726,7 @@ paths: type: string enum: - deletion - - &306 + - &307 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -52680,7 +52738,7 @@ paths: type: string enum: - required_linear_history - - &621 + - &622 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -52758,7 +52816,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &307 + - &308 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -52782,7 +52840,7 @@ paths: type: string required: - required_deployment_environments - - &308 + - &309 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -52794,7 +52852,7 @@ paths: type: string enum: - required_signatures - - &309 + - &310 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -52937,7 +52995,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &310 + - &311 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -52985,7 +53043,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &311 + - &312 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -52997,7 +53055,7 @@ paths: type: string enum: - non_fast_forward - - &312 + - &313 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -53034,118 +53092,118 @@ paths: required: - operator - pattern - - &313 - title: commit_author_email_pattern - description: Parameters to be used for the commit_author_email_pattern - rule - type: object - required: - - type - properties: - type: - type: string - enum: - - commit_author_email_pattern - parameters: - type: object - properties: - name: - type: string - description: How this rule appears when configuring - it. - negate: - type: boolean - description: If true, the rule will fail if the - pattern matches. - operator: - type: string - description: The operator to use for matching. - enum: - - starts_with - - ends_with - - contains - - regex - pattern: - type: string - description: The pattern to match with. - required: - - operator - - pattern - - &314 - title: committer_email_pattern - description: Parameters to be used for the committer_email_pattern - rule - type: object - required: - - type - properties: - type: - type: string - enum: - - committer_email_pattern - parameters: - type: object - properties: - name: - type: string - description: How this rule appears when configuring - it. - negate: - type: boolean - description: If true, the rule will fail if the - pattern matches. - operator: - type: string - description: The operator to use for matching. - enum: - - starts_with - - ends_with - - contains - - regex - pattern: - type: string - description: The pattern to match with. - required: - - operator - - pattern - - &315 - title: branch_name_pattern - description: Parameters to be used for the branch_name_pattern - rule - type: object - required: - - type - properties: - type: - type: string - enum: - - branch_name_pattern - parameters: - type: object - properties: - name: - type: string - description: How this rule appears when configuring - it. - negate: - type: boolean - description: If true, the rule will fail if the - pattern matches. - operator: - type: string - description: The operator to use for matching. - enum: - - starts_with - - ends_with - - contains - - regex - pattern: - type: string - description: The pattern to match with. - required: - - operator - - pattern - - &316 + - &314 + title: commit_author_email_pattern + description: Parameters to be used for the commit_author_email_pattern + rule + type: object + required: + - type + properties: + type: + type: string + enum: + - commit_author_email_pattern + parameters: + type: object + properties: + name: + type: string + description: How this rule appears when configuring + it. + negate: + type: boolean + description: If true, the rule will fail if the + pattern matches. + operator: + type: string + description: The operator to use for matching. + enum: + - starts_with + - ends_with + - contains + - regex + pattern: + type: string + description: The pattern to match with. + required: + - operator + - pattern + - &315 + title: committer_email_pattern + description: Parameters to be used for the committer_email_pattern + rule + type: object + required: + - type + properties: + type: + type: string + enum: + - committer_email_pattern + parameters: + type: object + properties: + name: + type: string + description: How this rule appears when configuring + it. + negate: + type: boolean + description: If true, the rule will fail if the + pattern matches. + operator: + type: string + description: The operator to use for matching. + enum: + - starts_with + - ends_with + - contains + - regex + pattern: + type: string + description: The pattern to match with. + required: + - operator + - pattern + - &316 + title: branch_name_pattern + description: Parameters to be used for the branch_name_pattern + rule + type: object + required: + - type + properties: + type: + type: string + enum: + - branch_name_pattern + parameters: + type: object + properties: + name: + type: string + description: How this rule appears when configuring + it. + negate: + type: boolean + description: If true, the rule will fail if the + pattern matches. + operator: + type: string + description: The operator to use for matching. + enum: + - starts_with + - ends_with + - contains + - regex + pattern: + type: string + description: The pattern to match with. + required: + - operator + - pattern + - &317 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -53182,7 +53240,7 @@ paths: required: - operator - pattern - - &321 + - &322 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -53232,7 +53290,7 @@ paths: - repository_id required: - workflows - - &322 + - &323 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -53293,7 +53351,7 @@ paths: - tool required: - code_scanning_tools - - &323 + - &324 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -53319,7 +53377,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &622 + - &623 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -53331,7 +53389,7 @@ paths: type: string enum: - license_compliance_scanning - - &317 + - &318 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -53356,7 +53414,7 @@ paths: type: string required: - restricted_file_paths - - &318 + - &319 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -53380,7 +53438,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &319 + - &320 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -53403,7 +53461,7 @@ paths: type: string required: - restricted_file_extensions - - &320 + - &321 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -53501,21 +53559,20 @@ paths: - push - repository default: branch - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *302 + conditions: *303 rules: type: array description: An array of rules within the ruleset. - items: &326 + items: &327 title: Repository Rule type: object description: A repository rule. oneOf: - - *303 - *304 - *305 - *306 @@ -53536,6 +53593,7 @@ paths: - *321 - *322 - *323 + - *324 required: - name - enforcement @@ -53573,9 +53631,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: &325 + default: &326 value: id: 21 name: super cool ruleset @@ -53631,7 +53689,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *75 - - &625 + - &626 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 @@ -53646,7 +53704,7 @@ paths: in: query schema: type: string - - &626 + - &627 name: time_period description: |- The time period to filter by. @@ -53662,14 +53720,14 @@ paths: - week - month default: day - - &627 + - &628 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 - - &628 + - &629 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -53682,7 +53740,7 @@ paths: - bypass - all default: all - - &629 + - &630 name: evaluate_status description: |- The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. @@ -53705,7 +53763,7 @@ paths: description: Response content: application/json: - schema: &630 + schema: &631 title: Rule Suites description: Response type: array @@ -53761,7 +53819,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &631 + default: &632 value: - id: 21 actor_id: 12 @@ -53805,7 +53863,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *75 - - &632 + - &633 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -53821,7 +53879,7 @@ paths: description: Response content: application/json: - schema: &633 + schema: &634 title: Rule Suite description: Response type: object @@ -53928,7 +53986,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &634 + default: &635 value: id: 21 actor_id: 12 @@ -54001,9 +54059,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *325 + default: *326 '404': *6 '500': *54 put: @@ -54047,16 +54105,16 @@ paths: - tag - push - repository - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *302 + items: *302 + conditions: *303 rules: description: An array of rules within the ruleset. type: array - items: *326 + items: *327 examples: default: value: @@ -54091,9 +54149,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *325 + default: *326 '404': *6 '422': *15 '500': *54 @@ -54151,7 +54209,7 @@ paths: application/json: schema: type: array - items: &327 + items: &328 title: Ruleset version type: object description: The historical version of a ruleset @@ -54175,7 +54233,7 @@ paths: type: string format: date-time examples: - default: &636 + default: &637 value: - version_id: 3 actor: @@ -54228,9 +54286,9 @@ paths: description: Response content: application/json: - schema: &637 + schema: &638 allOf: - - *327 + - *328 - type: object required: - state @@ -54300,7 +54358,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *75 - - &638 + - &639 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -54311,7 +54369,7 @@ paths: enum: - open - resolved - - &639 + - &640 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -54321,7 +54379,7 @@ paths: required: false schema: type: string - - &640 + - &641 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -54332,7 +54390,7 @@ paths: required: false schema: type: string - - &641 + - &642 name: exclude_providers in: query description: |- @@ -54343,7 +54401,7 @@ paths: required: false schema: type: string - - &642 + - &643 name: providers in: query description: |- @@ -54354,7 +54412,7 @@ paths: required: false schema: type: string - - &643 + - &644 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -54363,7 +54421,7 @@ paths: required: false schema: type: string - - &644 + - &645 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -54382,7 +54440,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &645 + - &646 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. @@ -54397,7 +54455,7 @@ paths: - *61 - *19 - *17 - - &646 + - &647 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 @@ -54407,7 +54465,7 @@ paths: required: false schema: type: string - - &647 + - &648 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 @@ -54417,7 +54475,7 @@ paths: required: false schema: type: string - - &648 + - &649 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -54426,7 +54484,7 @@ paths: required: false schema: type: string - - &649 + - &650 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -54435,7 +54493,7 @@ paths: schema: type: boolean default: false - - &650 + - &651 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -54444,7 +54502,7 @@ paths: schema: type: boolean default: false - - &651 + - &652 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -54453,7 +54511,7 @@ paths: schema: type: boolean default: false - - &652 + - &653 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -54464,7 +54522,7 @@ paths: required: false schema: type: boolean - - &653 + - &654 name: included_metadata in: query description: |- @@ -54475,7 +54533,7 @@ paths: required: false schema: type: string - - &654 + - &655 name: owner_email_hash in: query description: |- @@ -54510,14 +54568,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &655 + state: &656 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: &656 + resolution: &657 type: - string - 'null' @@ -54636,14 +54694,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &657 + - &658 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &659 + - &660 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -54707,7 +54765,7 @@ paths: - blob_url - commit_sha - commit_url - - &660 + - &661 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. @@ -54768,7 +54826,7 @@ paths: - page_url - commit_sha - commit_url - - &661 + - &662 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -54790,7 +54848,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &662 + - &663 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -54812,7 +54870,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &663 + - &664 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -54834,7 +54892,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &664 + - &665 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -54849,7 +54907,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &665 + - &666 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -54864,7 +54922,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &666 + - &667 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -54879,7 +54937,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &667 + - &668 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. @@ -54901,7 +54959,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &668 + - &669 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. @@ -54923,7 +54981,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &669 + - &670 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. @@ -54945,7 +55003,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &670 + - &671 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. @@ -54967,7 +55025,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &671 + - &672 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 @@ -55217,7 +55275,7 @@ paths: subcategory: custom-patterns parameters: - *75 - - &672 + - &673 name: state description: Filter custom patterns by state. When absent, returns patterns in all states. @@ -55228,7 +55286,7 @@ paths: enum: - published - unpublished - - &673 + - &674 name: push_protection description: Filter custom patterns by whether push protection is enabled. When absent, returns patterns regardless of push protection status. @@ -55239,7 +55297,7 @@ paths: enum: - enabled - disabled - - &674 + - &675 name: sort description: The property to sort the results by. in: query @@ -55261,7 +55319,7 @@ paths: application/json: schema: type: array - items: &328 + items: &329 title: Secret Scanning Custom Pattern description: A custom pattern for secret scanning. type: object @@ -55313,7 +55371,7 @@ paths: description: List of regexes that the secret must not match. items: type: string - custom_pattern_version: &329 + custom_pattern_version: &330 type: - string - 'null' @@ -55338,7 +55396,7 @@ paths: - state - push_protection_enabled examples: - default: &675 + default: &676 value: - id: 1 name: Example Custom Pattern @@ -55401,7 +55459,7 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: &676 + items: &677 title: Secret Scanning Custom Pattern To Create description: A custom pattern to create in a bulk operation. type: object @@ -55438,7 +55496,7 @@ paths: items: type: string examples: - default: &677 + default: &678 value: patterns: - name: Example Custom Pattern @@ -55462,9 +55520,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *328 + items: *329 examples: - default: &678 + default: &679 value: created_patterns: - id: 1 @@ -55516,7 +55574,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: &679 + items: &680 title: Secret Scanning Custom Pattern Validation Error description: A validation error for a custom pattern in a batch operation. @@ -55570,7 +55628,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: &680 + items: &681 title: Secret Scanning Custom Pattern To Delete description: A custom pattern to delete in a bulk operation. type: object @@ -55580,7 +55638,7 @@ paths: pattern_id: type: integer description: The ID of the custom pattern to delete. - custom_pattern_version: *329 + custom_pattern_version: *330 post_delete_action: type: string description: |- @@ -55593,7 +55651,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: &681 + default: &682 value: patterns: - pattern_id: 2 @@ -55604,7 +55662,7 @@ paths: '400': *14 '403': *27 '404': *6 - '412': &330 + '412': &331 description: Precondition Failed content: application/json: @@ -55639,7 +55697,7 @@ paths: required: true content: application/json: - schema: &682 + schema: &683 title: Secret Scanning Custom Pattern To Update description: Fields to update on a custom pattern. At least one updatable field (`pattern`, `start_delimiter`, `end_delimiter`, `must_match`, @@ -55678,9 +55736,9 @@ paths: description: Updated list of regexes that the secret must not match. items: type: string - custom_pattern_version: *329 + custom_pattern_version: *330 examples: - default: &683 + default: &684 value: pattern: updated_secret_[0-9A-Z]{16} start_delimiter: "[^0-9A-Za-z]" @@ -55695,9 +55753,9 @@ paths: description: Pattern updated successfully. content: application/json: - schema: *328 + schema: *329 examples: - default: &684 + default: &685 value: id: 1 name: Example Custom Pattern @@ -55717,7 +55775,7 @@ paths: '400': *14 '403': *27 '404': *6 - '412': *330 + '412': *331 '422': *15 "/orgs/{org}/secret-scanning/pattern-configurations": get: @@ -55750,11 +55808,11 @@ paths: related to push protection. type: object properties: - pattern_config_version: *329 + pattern_config_version: *330 provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &331 + items: &332 type: object properties: token_type: @@ -55823,7 +55881,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *331 + items: *332 examples: default: value: @@ -55880,7 +55938,7 @@ paths: schema: type: object properties: - pattern_config_version: *329 + pattern_config_version: *330 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -55906,7 +55964,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *329 + custom_pattern_version: *330 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -56004,7 +56062,7 @@ paths: application/json: schema: type: array - items: &688 + items: &689 description: A repository security advisory. type: object properties: @@ -56248,7 +56306,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *333 credits_detailed: type: - array @@ -56259,7 +56317,7 @@ paths: type: object properties: user: *4 - type: *332 + type: *333 state: type: string description: The state of the user's acceptance of the @@ -56355,7 +56413,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &689 + default: &690 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -56742,7 +56800,7 @@ paths: application/json: schema: type: array - items: *261 + items: *262 examples: default: value: @@ -57097,7 +57155,7 @@ paths: type: integer network_configurations: type: array - items: &333 + items: &334 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -57250,9 +57308,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: &334 + default: &335 value: id: 123456789ABCDEF name: My network configuration @@ -57281,7 +57339,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - &335 + - &336 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -57293,9 +57351,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 headers: Link: *67 x-github: @@ -57317,7 +57375,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - *335 + - *336 requestBody: required: true content: @@ -57370,9 +57428,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57392,7 +57450,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *75 - - *335 + - *336 responses: '204': description: Response @@ -57516,7 +57574,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 headers: Link: *67 '403': *27 @@ -57614,7 +57672,7 @@ paths: description: Response content: application/json: - schema: &336 + schema: &337 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -57688,7 +57746,7 @@ paths: parent: anyOf: - type: 'null' - - *261 + - *262 members_count: type: integer examples: @@ -58013,7 +58071,7 @@ paths: - repos_count - organization examples: - default: &337 + default: &338 value: id: 1 node_id: MDQ6VGVhbTE= @@ -58101,9 +58159,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 x-github: githubCloudOnly: false @@ -58194,16 +58252,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '201': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 '422': *15 '403': *27 @@ -58233,7 +58291,7 @@ paths: responses: '204': description: Response - '422': &338 + '422': &339 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -58267,12 +58325,12 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: - default: *241 + default: *242 headers: Link: *67 - '422': *338 + '422': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58316,7 +58374,7 @@ paths: application/json: schema: type: array - items: &705 + items: &706 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -58459,7 +58517,7 @@ paths: - type - url examples: - default: &706 + default: &707 value: - login: octocat id: 1 @@ -58518,7 +58576,7 @@ paths: description: Response content: application/json: - schema: &339 + schema: &340 title: Team Membership description: Team Membership type: object @@ -58546,7 +58604,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &707 + response-if-user-is-a-team-maintainer: &708 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -58609,9 +58667,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-users-membership-with-team-is-now-pending: &708 + response-if-users-membership-with-team-is-now-pending: &709 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -58689,7 +58747,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -58720,14 +58778,14 @@ paths: parameters: - *75 - *77 - - *340 - *341 + - *342 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &709 + schema: &710 title: Team Repository description: A team's access to a repository. type: object @@ -59455,8 +59513,8 @@ paths: parameters: - *75 - *77 - - *340 - *341 + - *342 requestBody: required: false content: @@ -59503,8 +59561,8 @@ paths: parameters: - *75 - *77 - - *340 - *341 + - *342 responses: '204': description: Response @@ -59541,7 +59599,7 @@ paths: type: array items: *201 examples: - response-if-child-teams-exist: &710 + response-if-child-teams-exist: &711 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -59694,7 +59752,7 @@ paths: resources: type: object properties: - core: &342 + core: &343 title: Rate Limit type: object properties: @@ -59711,21 +59769,21 @@ paths: - remaining - reset - used - graphql: *342 - search: *342 - code_search: *342 - source_import: *342 - integration_manifest: *342 - actions_runner_registration: *342 - scim: *342 - dependency_snapshots: *342 - dependency_sbom: *342 - code_scanning_autofix: *342 - copilot_usage_records: *342 + graphql: *343 + search: *343 + code_search: *343 + source_import: *343 + integration_manifest: *343 + actions_runner_registration: *343 + scim: *343 + dependency_snapshots: *343 + dependency_sbom: *343 + code_scanning_autofix: *343 + copilot_usage_records: *343 required: - core - search - rate: *342 + rate: *343 required: - rate - resources @@ -59839,14 +59897,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *343 + schema: *344 examples: default-response: summary: Default response @@ -60357,7 +60415,7 @@ paths: version: '2026-03-10' '403': *27 '404': *6 - '301': *344 + '301': *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60375,8 +60433,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -60687,10 +60745,10 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 - '307': &346 + default: *346 + '307': &347 description: Temporary Redirect content: application/json: @@ -60719,8 +60777,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -60742,7 +60800,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *346 + '307': *347 '404': *6 '409': *53 x-github: @@ -60766,11 +60824,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 - - &378 + - &379 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -60793,7 +60851,7 @@ paths: type: integer artifacts: type: array - items: &347 + items: &348 title: Artifact description: An artifact type: object @@ -60888,7 +60946,7 @@ paths: - expires_at - updated_at examples: - default: &379 + default: &380 value: total_count: 2 artifacts: @@ -60949,9 +61007,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *340 - *341 - - &348 + - *342 + - &349 name: artifact_id description: The unique identifier of the artifact. in: path @@ -60963,7 +61021,7 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: default: value: @@ -61001,9 +61059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *340 - *341 - - *348 + - *342 + - *349 responses: '204': description: Response @@ -61027,9 +61085,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *340 - *341 - - *348 + - *342 + - *349 - name: archive_format in: path required: true @@ -61039,7 +61097,7 @@ paths: '302': description: Response headers: - Location: &498 + Location: &499 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 @@ -61064,14 +61122,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &349 + schema: &350 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -61105,13 +61163,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *349 + schema: *350 examples: selected_actions: *41 responses: @@ -61140,14 +61198,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &350 + schema: &351 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -61181,13 +61239,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *350 + schema: *351 examples: selected_actions: *43 responses: @@ -61218,14 +61276,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *351 + schema: *352 examples: default: value: @@ -61251,11 +61309,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 - - &352 + - &353 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 @@ -61289,7 +61347,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &354 title: Repository actions caches description: Repository actions caches type: object @@ -61339,7 +61397,7 @@ paths: - total_count - actions_caches examples: - default: &354 + default: &355 value: total_count: 1 actions_caches: @@ -61371,23 +61429,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: - - *340 - *341 + - *342 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *352 + - *353 responses: '200': description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61407,8 +61465,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: - - *340 - *341 + - *342 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -61437,8 +61495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *47 responses: @@ -61521,8 +61579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *340 - *341 + - *342 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -61678,9 +61736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *340 - *341 - - &355 + - *342 + - &356 name: job_id description: The unique identifier of the job. in: path @@ -61692,7 +61750,7 @@ paths: description: Response content: application/json: - schema: &382 + schema: &383 title: Job description: Information of a job execution in a workflow run type: object @@ -62039,9 +62097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *340 - *341 - - *355 + - *342 + - *356 responses: '302': description: Response @@ -62069,9 +62127,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *340 - *341 - - *355 + - *342 + - *356 requestBody: required: false content: @@ -62122,8 +62180,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: - - *340 - *341 + - *342 responses: '200': description: Status response @@ -62182,8 +62240,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -62251,8 +62309,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -62270,7 +62328,7 @@ paths: type: integer secrets: type: array - items: &384 + items: &385 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -62291,7 +62349,7 @@ paths: - created_at - updated_at examples: - default: &385 + default: &386 value: total_count: 2 secrets: @@ -62324,8 +62382,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -62343,7 +62401,7 @@ paths: type: integer variables: type: array - items: &386 + items: &387 title: Actions Variable type: object properties: @@ -62377,7 +62435,7 @@ paths: - created_at - updated_at examples: - default: &387 + default: &388 value: total_count: 2 variables: @@ -62410,8 +62468,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -62420,11 +62478,11 @@ paths: schema: type: object properties: - enabled: &357 + enabled: &358 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *141 - selected_actions_url: *356 + selected_actions_url: *357 sha_pinning_required: *142 required: - enabled @@ -62453,8 +62511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -62465,7 +62523,7 @@ paths: schema: type: object properties: - enabled: *357 + enabled: *358 allowed_actions: *141 sha_pinning_required: *142 required: @@ -62497,14 +62555,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: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &358 + schema: &359 type: object properties: access_level: @@ -62521,7 +62579,7 @@ paths: required: - access_level examples: - default: &359 + default: &360 value: access_level: organization x-github: @@ -62545,15 +62603,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: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *358 + schema: *359 examples: - default: *359 + default: *360 responses: '204': description: Response @@ -62577,14 +62635,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *360 + schema: *361 examples: default: value: @@ -62608,8 +62666,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Empty response for successful settings update @@ -62619,7 +62677,7 @@ paths: required: true content: application/json: - schema: *361 + schema: *362 examples: default: summary: Set retention days @@ -62643,8 +62701,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -62652,7 +62710,7 @@ paths: application/json: schema: *143 examples: - default: *362 + default: *363 '404': *6 x-github: enabledForGitHubApps: true @@ -62671,8 +62729,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -62706,14 +62764,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *363 + schema: *364 examples: default: *144 '403': *27 @@ -62735,13 +62793,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *364 + schema: *365 examples: default: *144 responses: @@ -62767,8 +62825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -62795,8 +62853,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -62828,14 +62886,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *365 + schema: *366 examples: default: *151 x-github: @@ -62858,8 +62916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Success response @@ -62870,7 +62928,7 @@ paths: required: true content: application/json: - schema: *366 + schema: *367 examples: default: *151 x-github: @@ -62899,8 +62957,8 @@ paths: in: query schema: type: string - - *340 - *341 + - *342 - *17 - *19 responses: @@ -62944,8 +63002,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -62953,9 +63011,9 @@ paths: application/json: schema: type: array - items: *367 + items: *368 examples: - default: *368 + default: *369 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62977,8 +63035,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -63021,7 +63079,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *369 + '201': *370 '404': *6 '422': *7 '409': *53 @@ -63052,8 +63110,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -63061,7 +63119,7 @@ paths: application/json: schema: *160 examples: - default: *370 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63089,8 +63147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -63098,7 +63156,7 @@ paths: application/json: schema: *160 examples: - default: *371 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63120,8 +63178,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: - - *340 - *341 + - *342 - *157 responses: '200': @@ -63130,7 +63188,7 @@ paths: application/json: schema: *158 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63151,8 +63209,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: - - *340 - *341 + - *342 - *157 responses: '204': @@ -63179,8 +63237,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: - - *340 - *341 + - *342 - *157 responses: '200': *162 @@ -63205,8 +63263,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: - - *340 - *341 + - *342 - *157 requestBody: required: true @@ -63255,8 +63313,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: - - *340 - *341 + - *342 - *157 requestBody: required: true @@ -63306,11 +63364,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: - - *340 - *341 + - *342 - *157 responses: - '200': *373 + '200': *374 '404': *6 x-github: githubCloudOnly: false @@ -63337,10 +63395,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: - - *340 - *341 + - *342 - *157 - - *374 + - *375 responses: '200': *162 '404': *6 @@ -63368,9 +63426,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *340 - *341 - - &390 + - *342 + - &391 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. @@ -63378,7 +63436,7 @@ paths: required: false schema: type: string - - &391 + - &392 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -63386,7 +63444,7 @@ paths: required: false schema: type: string - - &392 + - &393 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -63395,7 +63453,7 @@ paths: required: false schema: type: string - - &393 + - &394 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 @@ -63422,7 +63480,7 @@ paths: - pending - *17 - *19 - - &394 + - &395 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)." @@ -63431,7 +63489,7 @@ paths: schema: type: string format: date-time - - &375 + - &376 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -63440,13 +63498,13 @@ paths: schema: type: boolean default: false - - &395 + - &396 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &396 + - &397 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -63469,7 +63527,7 @@ paths: type: integer workflow_runs: type: array - items: &376 + items: &377 title: Workflow Run description: An invocation of a workflow type: object @@ -63647,7 +63705,7 @@ paths: head_commit: anyOf: - type: 'null' - - &420 + - &421 title: Simple Commit description: A commit. type: object @@ -63762,7 +63820,7 @@ paths: - workflow_url - pull_requests examples: - default: &397 + default: &398 value: total_count: 1 workflow_runs: @@ -63998,24 +64056,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *340 - *341 - - &377 + - *342 + - &378 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *376 + schema: *377 examples: - default: &380 + default: &381 value: id: 30433642 name: Build @@ -64256,9 +64314,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '204': description: Response @@ -64281,9 +64339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '200': description: Response @@ -64411,9 +64469,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: - - *340 - *341 - - *377 + - *342 + - *378 responses: '201': description: Response @@ -64446,12 +64504,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *340 - *341 - - *377 + - *342 + - *378 - *17 - *19 - - *378 + - *379 - *61 responses: '200': @@ -64468,9 +64526,9 @@ paths: type: integer artifacts: type: array - items: *347 + items: *348 examples: - default: *379 + default: *380 headers: Link: *67 x-github: @@ -64494,25 +64552,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *340 - *341 - - *377 - - &381 + - *342 + - *378 + - &382 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *375 + - *376 responses: '200': description: Response content: application/json: - schema: *376 + schema: *377 examples: - default: *380 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64535,10 +64593,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *340 - *341 - - *377 - - *381 + - *342 + - *378 + - *382 - *17 - *19 responses: @@ -64556,9 +64614,9 @@ paths: type: integer jobs: type: array - items: *382 + items: *383 examples: - default: &383 + default: &384 value: total_count: 1 jobs: @@ -64671,10 +64729,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *340 - *341 - - *377 - - *381 + - *342 + - *378 + - *382 responses: '302': description: Response @@ -64702,9 +64760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '202': description: Response @@ -64750,9 +64808,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 - *17 - *46 - *47 @@ -64929,9 +64987,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: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: true content: @@ -64998,9 +65056,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '202': description: Response @@ -65033,9 +65091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 - 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 @@ -65065,9 +65123,9 @@ paths: type: integer jobs: type: array - items: *382 + items: *383 examples: - default: *383 + default: *384 headers: Link: *67 x-github: @@ -65092,9 +65150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '302': description: Response @@ -65121,9 +65179,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '204': description: Response @@ -65150,9 +65208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '200': description: Response @@ -65221,7 +65279,7 @@ paths: items: type: object properties: - type: &505 + type: &506 type: string description: The type of reviewer. enum: @@ -65307,9 +65365,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: true content: @@ -65359,7 +65417,7 @@ paths: application/json: schema: type: array - items: &500 + items: &501 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -65471,7 +65529,7 @@ paths: - created_at - updated_at examples: - default: &501 + default: &502 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -65527,9 +65585,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: false content: @@ -65574,9 +65632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *340 - *341 - - *377 + - *342 + - *378 requestBody: required: false content: @@ -65630,9 +65688,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *340 - *341 - - *377 + - *342 + - *378 responses: '200': description: Response @@ -65769,8 +65827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -65788,9 +65846,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -65815,8 +65873,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -65846,17 +65904,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *384 + schema: *385 examples: - default: &398 + default: &399 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -65882,8 +65940,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -65941,8 +65999,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -65968,8 +66026,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -65987,9 +66045,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -66012,8 +66070,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -66065,17 +66123,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: &399 + default: &400 value: name: USERNAME value: octocat @@ -66101,8 +66159,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 requestBody: required: true @@ -66145,8 +66203,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '204': @@ -66172,8 +66230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -66191,7 +66249,7 @@ paths: type: integer workflows: type: array - items: &388 + items: &389 title: Workflow description: A GitHub Actions workflow type: object @@ -66309,9 +66367,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *340 - *341 - - &389 + - *342 + - &390 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -66326,7 +66384,7 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: default: value: @@ -66359,9 +66417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '204': description: Response @@ -66386,9 +66444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -66486,9 +66544,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '204': description: Response @@ -66515,19 +66573,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *340 - *341 - - *389 + - *342 - *390 - *391 - *392 - *393 + - *394 - *17 - *19 - - *394 - - *375 - *395 + - *376 - *396 + - *397 responses: '200': description: Response @@ -66543,9 +66601,9 @@ paths: type: integer workflow_runs: type: array - items: *376 + items: *377 examples: - default: *397 + default: *398 headers: Link: *67 x-github: @@ -66577,9 +66635,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *340 - *341 - - *389 + - *342 + - *390 responses: '200': description: Response @@ -66640,8 +66698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *340 - *341 + - *342 - *61 - *17 - *46 @@ -66814,8 +66872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -66833,9 +66891,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -66859,8 +66917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -66878,9 +66936,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -66905,8 +66963,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -66924,9 +66982,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -66951,8 +67009,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -66982,17 +67040,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *384 + schema: *385 examples: - default: *398 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67014,8 +67072,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -67073,8 +67131,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -67100,8 +67158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: - - *340 - *341 + - *342 - *173 - *19 responses: @@ -67119,9 +67177,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -67144,8 +67202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -67197,17 +67255,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *399 + default: *400 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67228,8 +67286,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 requestBody: required: true @@ -67272,8 +67330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: - - *340 - *341 + - *342 - *167 responses: '204': @@ -67295,8 +67353,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -67333,8 +67391,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *340 - *341 + - *342 - name: assignee in: path required: true @@ -67370,8 +67428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -67481,8 +67539,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *340 - *341 + - *342 - *17 - *46 - *47 @@ -67539,7 +67597,7 @@ paths: initiator: type: string examples: - default: *400 + default: *401 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67573,8 +67631,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -67582,7 +67640,7 @@ paths: application/json: schema: type: array - items: &401 + items: &402 title: Autolink reference description: An autolink reference. type: object @@ -67641,8 +67699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -67681,9 +67739,9 @@ paths: description: response content: application/json: - schema: *401 + schema: *402 examples: - default: &402 + default: &403 value: id: 1 key_prefix: TICKET- @@ -67714,9 +67772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *340 - *341 - - &403 + - *342 + - &404 name: autolink_id description: The unique identifier of the autolink. in: path @@ -67728,9 +67786,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *402 + default: *403 '404': *6 x-github: githubCloudOnly: false @@ -67750,9 +67808,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *340 - *341 - - *403 + - *342 + - *404 responses: '204': description: Response @@ -67776,8 +67834,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: - - *340 - *341 + - *342 responses: '200': description: Response if Dependabot is enabled @@ -67827,8 +67885,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -67849,8 +67907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -67870,8 +67928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *340 - *341 + - *342 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -67909,7 +67967,7 @@ paths: - url protected: type: boolean - protection: &405 + protection: &406 title: Branch Protection description: Branch Protection type: object @@ -67952,7 +68010,7 @@ paths: required: - contexts - checks - enforce_admins: &408 + enforce_admins: &409 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -67969,7 +68027,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &410 + required_pull_request_reviews: &411 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -68053,7 +68111,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &407 + restrictions: &408 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -68346,9 +68404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *340 - *341 - - &406 + - *342 + - &407 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). @@ -68362,14 +68420,14 @@ paths: description: Response content: application/json: - schema: &416 + schema: &417 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &473 + commit: &474 title: Commit description: Commit type: object @@ -68408,7 +68466,7 @@ paths: author: anyOf: - type: 'null' - - &404 + - &405 title: Git User description: Metaproperties for Git author/committer information. @@ -68430,7 +68488,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *405 message: type: string examples: @@ -68454,7 +68512,7 @@ paths: required: - sha - url - verification: &523 + verification: &524 title: Verification type: object properties: @@ -68534,7 +68592,7 @@ paths: type: integer files: type: array - items: &483 + items: &484 title: Diff Entry description: Diff Entry type: object @@ -68630,7 +68688,7 @@ paths: - self protected: type: boolean - protection: *405 + protection: *406 protection_url: type: string format: uri @@ -68739,7 +68797,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *344 + '301': *345 '404': *6 x-github: githubCloudOnly: false @@ -68761,15 +68819,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -68963,9 +69021,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -69225,7 +69283,7 @@ paths: url: type: string format: uri - required_status_checks: &413 + required_status_checks: &414 title: Status Check Policy description: Status Check Policy type: object @@ -69384,7 +69442,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *407 + restrictions: *408 required_conversation_resolution: type: object properties: @@ -69496,9 +69554,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -69523,17 +69581,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: &409 + default: &410 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -69555,17 +69613,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: *409 + default: *410 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69584,9 +69642,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -69611,17 +69669,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: &411 + default: &412 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -69717,9 +69775,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -69817,9 +69875,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *411 + default: *412 '422': *15 x-github: githubCloudOnly: false @@ -69840,9 +69898,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -69869,17 +69927,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: &412 + default: &413 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -69902,17 +69960,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *408 + schema: *409 examples: - default: *412 + default: *413 '404': *6 x-github: githubCloudOnly: false @@ -69932,9 +69990,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -69959,17 +70017,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *413 + schema: *414 examples: - default: &414 + default: &415 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -69995,9 +70053,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -70049,9 +70107,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: - default: *414 + default: *415 '404': *6 '422': *15 x-github: @@ -70073,9 +70131,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -70099,9 +70157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -70135,9 +70193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -70204,9 +70262,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -70270,9 +70328,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: content: application/json: @@ -70338,15 +70396,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response content: application/json: - schema: *407 + schema: *408 examples: default: value: @@ -70437,9 +70495,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '204': description: Response @@ -70462,9 +70520,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -70474,7 +70532,7 @@ paths: type: array items: *5 examples: - default: &415 + default: &416 value: - id: 1 slug: octoapp @@ -70531,9 +70589,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -70567,7 +70625,7 @@ paths: type: array items: *5 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -70588,9 +70646,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -70624,7 +70682,7 @@ paths: type: array items: *5 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -70645,9 +70703,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -70681,7 +70739,7 @@ paths: type: array items: *5 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -70703,9 +70761,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -70715,7 +70773,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '404': *6 x-github: githubCloudOnly: false @@ -70735,9 +70793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -70775,7 +70833,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '422': *15 x-github: githubCloudOnly: false @@ -70796,9 +70854,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: false content: @@ -70836,7 +70894,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '422': *15 x-github: githubCloudOnly: false @@ -70857,9 +70915,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: content: application/json: @@ -70896,7 +70954,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 '422': *15 x-github: githubCloudOnly: false @@ -70918,9 +70976,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 responses: '200': description: Response @@ -70954,9 +71012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -71014,9 +71072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -71074,9 +71132,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -71136,9 +71194,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 requestBody: required: true content: @@ -71160,7 +71218,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -71276,8 +71334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -71556,7 +71614,7 @@ paths: description: Response content: application/json: - schema: &417 + schema: &418 title: CheckRun description: A check performed on the code of a given code change type: object @@ -71692,7 +71750,7 @@ paths: check. type: array items: *86 - deployment: &773 + deployment: &774 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -71979,9 +72037,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *340 - *341 - - &418 + - *342 + - &419 name: check_run_id description: The unique identifier of the check run. in: path @@ -71993,9 +72051,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: &419 + default: &420 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -72095,9 +72153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *340 - *341 - - *418 + - *342 + - *419 requestBody: required: true content: @@ -72337,9 +72395,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *419 + default: *420 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72359,9 +72417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *340 - *341 - - *418 + - *342 + - *419 - *17 - *19 responses: @@ -72471,9 +72529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *340 - *341 - - *418 + - *342 + - *419 responses: '201': description: Response @@ -72517,8 +72575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -72540,7 +72598,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &421 + schema: &422 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -72638,7 +72696,7 @@ paths: - string - 'null' format: date-time - head_commit: *420 + head_commit: *421 latest_check_runs_count: type: integer check_runs_url: @@ -72666,7 +72724,7 @@ paths: - check_runs_url - pull_requests examples: - default: &422 + default: &423 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -72957,9 +73015,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72978,8 +73036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -73288,9 +73346,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *340 - *341 - - &423 + - *342 + - &424 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -73302,9 +73360,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73327,17 +73385,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *340 - *341 - - *423 - - &478 + - *342 + - *424 + - &479 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &479 + - &480 name: status description: Returns check runs with the specified `status`. in: query @@ -73376,9 +73434,9 @@ paths: type: integer check_runs: type: array - items: *417 + items: *418 examples: - default: &480 + default: &481 value: total_count: 1 check_runs: @@ -73480,9 +73538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *340 - *341 - - *423 + - *342 + - *424 responses: '201': description: Response @@ -73511,8 +73569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#list-code-quality-findings-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *61 - *46 @@ -73534,7 +73592,7 @@ paths: application/json: schema: type: array - items: &424 + items: &425 description: Code quality finding type: object properties: @@ -73664,7 +73722,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': &425 + '403': &426 description: Response if the user is not authorized to access Code quality for this repository. content: @@ -73691,8 +73749,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-finding parameters: - - *340 - *341 + - *342 - name: finding_number in: path description: The number that identifies a finding. @@ -73704,7 +73762,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -73733,7 +73791,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': *425 + '403': *426 '404': *6 '503': *115 x-github: @@ -73755,8 +73813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -73838,7 +73896,7 @@ paths: updated_at: '2023-01-01T00:00:00Z' schedule: weekly ai_findings_option: on_push - '403': *425 + '403': *426 '404': *6 '503': *115 x-github: @@ -73859,8 +73917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -73998,21 +74056,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *340 - *341 - - *426 + - *342 - *427 + - *428 - *19 - *17 - - &445 + - &446 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: *428 - - &446 + schema: *429 + - &447 name: pr description: The number of the pull request for the results you want to list. in: query @@ -74037,13 +74095,13 @@ paths: be returned. in: query required: false - schema: *429 + schema: *430 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *430 + schema: *431 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -74067,7 +74125,7 @@ paths: updated_at: *183 url: *184 html_url: *185 - instances_url: *431 + instances_url: *432 state: *190 fixed_at: *186 dismissed_by: @@ -74075,11 +74133,11 @@ paths: - type: 'null' - *4 dismissed_at: *187 - dismissed_reason: *432 - dismissed_comment: *433 - rule: *434 - tool: *435 - most_recent_instance: *436 + dismissed_reason: *433 + dismissed_comment: *434 + rule: *435 + tool: *436 + most_recent_instance: *437 dismissal_approved_by: anyOf: - type: 'null' @@ -74202,7 +74260,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *36 - '403': &438 + '403': &439 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -74229,9 +74287,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *340 - *341 - - &439 + - *342 + - &440 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -74245,7 +74303,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &441 type: object properties: number: *181 @@ -74253,7 +74311,7 @@ paths: updated_at: *183 url: *184 html_url: *185 - instances_url: *431 + instances_url: *432 state: *190 fixed_at: *186 dismissed_by: @@ -74261,8 +74319,8 @@ paths: - type: 'null' - *4 dismissed_at: *187 - dismissed_reason: *432 - dismissed_comment: *433 + dismissed_reason: *433 + dismissed_comment: *434 rule: type: object properties: @@ -74324,8 +74382,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *435 - most_recent_instance: *436 + tool: *436 + most_recent_instance: *437 dismissal_approved_by: anyOf: - type: 'null' @@ -74336,7 +74394,7 @@ paths: linked_pull_requests: description: Pull requests linked to this alert. type: array - items: *437 + items: *438 required: - number - created_at @@ -74425,7 +74483,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *36 - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -74445,9 +74503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 requestBody: required: true content: @@ -74462,8 +74520,8 @@ paths: enum: - open - dismissed - dismissed_reason: *432 - dismissed_comment: *433 + dismissed_reason: *433 + dismissed_comment: *434 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -74491,7 +74549,7 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: default: value: @@ -74567,7 +74625,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &444 + '403': &445 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -74594,15 +74652,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: - - *340 - *341 - - *439 + - *342 + - *440 responses: '200': description: Response content: application/json: - schema: &441 + schema: &442 type: object properties: status: @@ -74629,13 +74687,13 @@ paths: - description - started_at examples: - default: &442 + default: &443 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &443 + '400': &444 description: Bad Request content: application/json: @@ -74646,7 +74704,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': *438 + '403': *439 '404': *6 '500': *54 x-github: @@ -74671,29 +74729,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: - - *340 - *341 - - *439 + - *342 + - *440 responses: '200': description: OK content: application/json: - schema: *441 + schema: *442 examples: - default: *442 + default: *443 '202': description: Accepted content: application/json: - schema: *441 + schema: *442 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *443 + '400': *444 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -74725,9 +74783,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: - - *340 - *341 - - *439 + - *342 + - *440 requestBody: required: false content: @@ -74773,8 +74831,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *443 - '403': *444 + '400': *444 + '403': *445 '404': *6 '422': description: Unprocessable Entity @@ -74798,13 +74856,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 - *19 - *17 - - *445 - *446 + - *447 responses: '200': description: Response @@ -74815,10 +74873,10 @@ paths: items: type: object properties: - ref: *428 - analysis_key: *447 - environment: *448 - category: *449 + ref: *429 + analysis_key: *448 + environment: *449 + category: *450 state: type: - string @@ -74835,7 +74893,7 @@ paths: properties: text: type: string - location: *450 + location: *451 html_url: type: string classifications: @@ -74843,7 +74901,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *451 + items: *452 examples: default: value: @@ -74880,7 +74938,7 @@ paths: end_column: 50 classifications: - source - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -74914,25 +74972,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *340 - *341 - - *426 + - *342 - *427 + - *428 - *19 - *17 - - *446 + - *447 - 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: *428 + schema: *429 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &452 + schema: &453 type: string description: An identifier for the upload. examples: @@ -74954,23 +75012,23 @@ paths: application/json: schema: type: array - items: &453 + items: &454 type: object properties: - ref: *428 - commit_sha: &461 + ref: *429 + commit_sha: &462 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 64 pattern: "^([0-9a-fA-F]{40}(?:[0-9a-fA-F]{24})?)$" - analysis_key: *447 + analysis_key: *448 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *449 + category: *450 error: type: string examples: @@ -74995,8 +75053,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *452 - tool: *435 + sarif_id: *453 + tool: *436 deletable: type: boolean warning: @@ -75058,7 +75116,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -75094,8 +75152,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: - - *340 - *341 + - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -75108,7 +75166,7 @@ paths: description: Response content: application/json: - schema: *453 + schema: *454 examples: response: summary: application/json response @@ -75162,7 +75220,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *438 + '403': *439 '404': *6 '422': description: Response if analysis could not be processed @@ -75249,8 +75307,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: - - *340 - *341 + - *342 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -75306,7 +75364,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': *444 + '403': *445 '404': *6 '503': *115 x-github: @@ -75328,8 +75386,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -75337,7 +75395,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 title: CodeQL Database description: A CodeQL database. type: object @@ -75449,7 +75507,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': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -75478,8 +75536,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *340 - *341 + - *342 - name: language in: path description: The language of the CodeQL database. @@ -75491,7 +75549,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *455 examples: default: value: @@ -75523,9 +75581,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': &487 + '302': &488 description: Found - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -75547,8 +75605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *340 - *341 + - *342 - name: language in: path description: The language of the CodeQL database. @@ -75558,7 +75616,7 @@ paths: responses: '204': description: Response - '403': *444 + '403': *445 '404': *6 '503': *115 x-github: @@ -75586,8 +75644,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -75596,7 +75654,7 @@ paths: type: object additionalProperties: false properties: - language: &455 + language: &456 type: string description: The language targeted by the CodeQL query enum: @@ -75676,7 +75734,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &459 + schema: &460 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -75686,7 +75744,7 @@ paths: description: The ID of the variant analysis. controller_repo: *66 actor: *4 - query_language: *455 + query_language: *456 query_pack_url: type: string description: The download url for the query pack. @@ -75734,7 +75792,7 @@ paths: items: type: object properties: - repository: &456 + repository: &457 title: Repository Identifier description: Repository Identifier type: object @@ -75776,7 +75834,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &460 + analysis_status: &461 type: string description: The new status of the CodeQL variant analysis repository task. @@ -75808,7 +75866,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &457 + access_mismatch_repos: &458 type: object properties: repository_count: @@ -75823,7 +75881,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: *456 + items: *457 required: - repository_count - repositories @@ -75846,8 +75904,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *457 - over_limit_repos: *457 + no_codeql_db_repos: *458 + over_limit_repos: *458 required: - access_mismatch_repos - not_found_repos @@ -75863,7 +75921,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &458 + value: &459 summary: Default response value: id: 1 @@ -76009,10 +76067,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *458 + value: *459 repository_lists: summary: Response for a successful variant analysis submission - value: *458 + value: *459 '404': *6 '422': description: Unable to process variant analysis submission @@ -76040,8 +76098,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: - - *340 - *341 + - *342 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -76053,9 +76111,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: - default: *458 + default: *459 '404': *6 '503': *115 x-github: @@ -76078,7 +76136,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: - - *340 + - *341 - name: repo in: path description: The name of the controller repository. @@ -76113,7 +76171,7 @@ paths: type: object properties: repository: *66 - analysis_status: *460 + analysis_status: *461 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -76238,8 +76296,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -76349,7 +76407,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *438 + '403': *439 '404': *6 '503': *115 x-github: @@ -76370,8 +76428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -76465,7 +76523,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *444 + '403': *445 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -76536,8 +76594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -76545,7 +76603,7 @@ paths: schema: type: object properties: - commit_sha: *461 + commit_sha: *462 ref: type: string description: |- @@ -76605,7 +76663,7 @@ paths: schema: type: object properties: - id: *452 + id: *453 url: type: string description: The REST API URL for checking the status of the upload. @@ -76619,7 +76677,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': *444 + '403': *445 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -76642,8 +76700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *340 - *341 + - *342 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -76691,7 +76749,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': *438 + '403': *439 '404': description: Not Found if the sarif id does not match any upload '503': *115 @@ -76716,8 +76774,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: - - *340 - *341 + - *342 responses: '200': description: Response @@ -76798,8 +76856,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *340 - *341 + - *342 - 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 @@ -76927,8 +76985,8 @@ paths: parameters: - *17 - *19 - - *340 - *341 + - *342 responses: '200': description: Response @@ -76944,7 +77002,7 @@ paths: type: integer codespaces: type: array - items: *251 + items: *252 examples: default: value: @@ -77242,8 +77300,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -77307,17 +77365,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '400': *14 '401': *23 '403': *27 @@ -77346,8 +77404,8 @@ paths: parameters: - *17 - *19 - - *340 - *341 + - *342 responses: '200': description: Response @@ -77411,8 +77469,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *340 - *341 + - *342 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -77449,9 +77507,9 @@ paths: type: integer machines: type: array - items: *463 + items: *464 examples: - default: &716 + default: &717 value: total_count: 2 machines: @@ -77491,8 +77549,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *340 - *341 + - *342 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -77579,8 +77637,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: - - *340 - *341 + - *342 - 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 @@ -77649,8 +77707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -77668,7 +77726,7 @@ paths: type: integer secrets: type: array - items: &467 + items: &468 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -77689,7 +77747,7 @@ paths: - created_at - updated_at examples: - default: *464 + default: *465 headers: Link: *67 x-github: @@ -77712,16 +77770,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *465 + schema: *466 examples: - default: *466 + default: *467 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -77741,17 +77799,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *467 + schema: *468 examples: - default: *468 + default: *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77771,8 +77829,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -77825,8 +77883,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -77855,8 +77913,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *340 - *341 + - *342 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -77894,7 +77952,7 @@ paths: application/json: schema: type: array - items: &469 + items: &470 title: Collaborator description: Collaborator type: object @@ -78087,8 +78145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *340 - *341 + - *342 - *71 responses: '204': @@ -78135,8 +78193,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *340 - *341 + - *342 - *71 requestBody: required: false @@ -78163,7 +78221,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &537 + schema: &538 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -78391,8 +78449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *340 - *341 + - *342 - *71 responses: '204': @@ -78424,8 +78482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *340 - *341 + - *342 - *71 responses: '200': @@ -78446,7 +78504,7 @@ paths: user: anyOf: - type: 'null' - - *469 + - *470 required: - permission - role_name @@ -78500,8 +78558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -78511,7 +78569,7 @@ paths: application/json: schema: type: array - items: &470 + items: &471 title: Commit Comment description: Commit Comment type: object @@ -78569,7 +78627,7 @@ paths: - created_at - updated_at examples: - default: &475 + default: &476 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -78628,17 +78686,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 responses: '200': description: Response content: application/json: - schema: *470 + schema: *471 examples: - default: &476 + default: &477 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -78695,8 +78753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -78719,7 +78777,7 @@ paths: description: Response content: application/json: - schema: *470 + schema: *471 examples: default: value: @@ -78770,8 +78828,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -78793,8 +78851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -78821,7 +78879,7 @@ paths: application/json: schema: type: array - items: &471 + items: &472 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -78865,7 +78923,7 @@ paths: - content - created_at examples: - default: &540 + default: &541 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -78910,8 +78968,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -78944,9 +79002,9 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: &472 + default: &473 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -78975,9 +79033,9 @@ paths: description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -78999,10 +79057,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *340 - *341 + - *342 - *97 - - &541 + - &542 name: reaction_id description: The unique identifier of the reaction. in: path @@ -79057,8 +79115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *340 - *341 + - *342 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -79114,9 +79172,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: &606 + default: &607 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -79210,9 +79268,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *340 - *341 - - &474 + - *342 + - &475 name: commit_sha description: The SHA of the commit. in: path @@ -79284,9 +79342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *340 - *341 - - *474 + - *342 + - *475 - *17 - *19 responses: @@ -79296,9 +79354,9 @@ paths: application/json: schema: type: array - items: *470 + items: *471 examples: - default: *475 + default: *476 headers: Link: *67 x-github: @@ -79326,9 +79384,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *340 - *341 - - *474 + - *342 + - *475 requestBody: required: true content: @@ -79363,9 +79421,9 @@ paths: description: Response content: application/json: - schema: *470 + schema: *471 examples: - default: *476 + default: *477 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -79393,9 +79451,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *340 - *341 - - *474 + - *342 + - *475 - *17 - *19 responses: @@ -79405,9 +79463,9 @@ paths: application/json: schema: type: array - items: *437 + items: *438 examples: - default: &597 + default: &598 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79944,11 +80002,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *340 - *341 + - *342 - *19 - *17 - - &477 + - &478 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)" @@ -79963,9 +80021,9 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - default: &585 + default: &586 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -80053,7 +80111,7 @@ paths: schema: type: string examples: - default: &484 + default: &485 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -80066,7 +80124,7 @@ paths: schema: type: string examples: - default: &485 + default: &486 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -80119,11 +80177,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *340 - *341 - - *477 + - *342 - *478 - *479 + - *480 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -80157,9 +80215,9 @@ paths: type: integer check_runs: type: array - items: *417 + items: *418 examples: - default: *480 + default: *481 headers: Link: *67 x-github: @@ -80184,9 +80242,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *340 - *341 - - *477 + - *342 + - *478 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -80194,7 +80252,7 @@ paths: schema: type: integer example: 1 - - *478 + - *479 - *17 - *19 responses: @@ -80212,7 +80270,7 @@ paths: type: integer check_suites: type: array - items: *421 + items: *422 examples: default: value: @@ -80412,9 +80470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *340 - *341 - - *477 + - *342 + - *478 - *17 - *19 responses: @@ -80616,9 +80674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *340 - *341 - - *477 + - *342 + - *478 - *17 - *19 responses: @@ -80628,7 +80686,7 @@ paths: application/json: schema: type: array - items: &694 + items: &695 title: Status description: The status of a commit. type: object @@ -80709,7 +80767,7 @@ paths: site_admin: false headers: Link: *67 - '301': *344 + '301': *345 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80737,8 +80795,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -80771,11 +80829,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *481 + - *482 code_of_conduct_file: anyOf: - type: 'null' - - &482 + - &483 title: Community Health File type: object properties: @@ -80795,19 +80853,19 @@ paths: contributing: anyOf: - type: 'null' - - *482 + - *483 readme: anyOf: - type: 'null' - - *482 + - *483 issue_template: anyOf: - type: 'null' - - *482 + - *483 pull_request_template: anyOf: - type: 'null' - - *482 + - *483 required: - code_of_conduct - code_of_conduct_file @@ -80936,8 +80994,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *340 - *341 + - *342 - *19 - *17 - name: basehead @@ -80985,8 +81043,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *473 - merge_base_commit: *473 + base_commit: *474 + merge_base_commit: *474 status: type: string enum: @@ -81010,10 +81068,10 @@ paths: - 6 commits: type: array - items: *473 + items: *474 files: type: array - items: *483 + items: *484 required: - url - html_url @@ -81259,12 +81317,12 @@ paths: schema: type: string examples: - default: *484 + default: *485 application/vnd.github.patch: schema: type: string examples: - default: *485 + default: *486 '404': *6 '500': *54 '503': *115 @@ -81309,8 +81367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *340 - *341 + - *342 - name: path description: path parameter in: path @@ -81480,7 +81538,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &486 + response-if-content-is-a-file-github-object: &487 summary: Response if content is a file value: type: file @@ -81617,7 +81675,7 @@ paths: - size - type - url - - &612 + - &613 title: Content File description: Content File type: object @@ -81835,7 +81893,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *486 + response-if-content-is-a-file: *487 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -81904,7 +81962,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *487 + '302': *488 '304': *36 x-github: githubCloudOnly: false @@ -81957,8 +82015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *340 - *341 + - *342 - name: path description: path parameter in: path @@ -82053,7 +82111,7 @@ paths: description: Response content: application/json: - schema: &488 + schema: &489 title: File Commit description: File Commit type: object @@ -82209,7 +82267,7 @@ paths: description: Response content: application/json: - schema: *488 + schema: *489 examples: example-for-creating-a-file: value: @@ -82263,7 +82321,7 @@ paths: schema: oneOf: - *3 - - &518 + - &519 description: Repository rule violation was detected type: object properties: @@ -82284,7 +82342,7 @@ paths: items: type: object properties: - placeholder_id: &685 + placeholder_id: &686 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -82316,8 +82374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *340 - *341 + - *342 - name: path description: path parameter in: path @@ -82378,7 +82436,7 @@ paths: description: Response content: application/json: - schema: *488 + schema: *489 examples: default: value: @@ -82433,8 +82491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *340 - *341 + - *342 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -82564,8 +82622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -82717,8 +82775,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *340 - *341 + - *342 - *203 - *204 - *205 @@ -82731,10 +82789,11 @@ paths: schema: type: string - *208 - - *489 + - *490 - *209 - *210 - *211 + - *212 - *61 - *46 - *47 @@ -82746,7 +82805,7 @@ paths: application/json: schema: type: array - items: &493 + items: &494 type: object description: A Dependabot alert. properties: @@ -82797,7 +82856,7 @@ paths: - transitive - inconclusive - - security_advisory: *490 + security_advisory: *491 security_vulnerability: *65 url: *184 html_url: *185 @@ -82828,8 +82887,8 @@ paths: dismissal. maxLength: 280 fixed_at: *186 - auto_dismissed_at: *491 - dismissal_request: *492 + auto_dismissed_at: *492 + dismissal_request: *493 assignees: type: array description: The users assigned to this alert. @@ -82862,6 +82921,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -82983,6 +83043,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -83084,9 +83145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *340 - *341 - - &494 + - *342 + - &495 name: alert_number in: path description: |- @@ -83101,7 +83162,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -83113,6 +83174,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -83233,9 +83295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *340 - *341 - - *494 + - *342 + - *495 requestBody: required: true content: @@ -83308,7 +83370,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -83320,6 +83382,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -83438,8 +83501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -83457,7 +83520,7 @@ paths: type: integer secrets: type: array - items: &497 + items: &498 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -83511,16 +83574,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *495 + schema: *496 examples: - default: *496 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83540,15 +83603,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '200': description: Response content: application/json: - schema: *497 + schema: *498 examples: default: value: @@ -83574,8 +83637,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 requestBody: required: true @@ -83628,8 +83691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *340 - *341 + - *342 - *164 responses: '204': @@ -83652,8 +83715,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: - - *340 - *341 + - *342 - 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 @@ -83830,8 +83893,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: - - *340 - *341 + - *342 responses: '200': description: Response @@ -84090,8 +84153,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *340 - *341 + - *342 - name: sbom_uuid in: path required: true @@ -84102,7 +84165,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *498 + Location: *499 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -84123,8 +84186,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -84162,8 +84225,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -84246,7 +84309,7 @@ paths: - version - url additionalProperties: false - metadata: &499 + metadata: &500 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -84285,7 +84348,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *499 + metadata: *500 resolved: type: object description: A collection of resolved package dependencies. @@ -84299,7 +84362,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *499 + metadata: *500 relationship: type: string description: A notation of whether a dependency is requested @@ -84432,8 +84495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *340 - *341 + - *342 - name: sha description: The SHA recorded at creation time. in: query @@ -84474,9 +84537,9 @@ paths: application/json: schema: type: array - items: *500 + items: *501 examples: - default: *501 + default: *502 headers: Link: *67 x-github: @@ -84542,8 +84605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -84625,7 +84688,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: simple-example: summary: Simple example @@ -84698,9 +84761,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *340 - *341 - - &502 + - *342 + - &503 name: deployment_id description: deployment_id parameter in: path @@ -84712,7 +84775,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -84777,9 +84840,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *340 - *341 - - *502 + - *342 + - *503 responses: '204': description: Response @@ -84801,9 +84864,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *340 - *341 - - *502 + - *342 + - *503 - *17 - *19 responses: @@ -84813,7 +84876,7 @@ paths: application/json: schema: type: array - items: &503 + items: &504 title: Deployment Status description: The status of a deployment. type: object @@ -84977,9 +85040,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *340 - *341 - - *502 + - *342 + - *503 requestBody: required: true content: @@ -85054,9 +85117,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: &504 + default: &505 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -85112,9 +85175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *340 - *341 - - *502 + - *342 + - *503 - name: status_id in: path required: true @@ -85125,9 +85188,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 '404': *6 x-github: githubCloudOnly: false @@ -85152,8 +85215,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -85210,8 +85273,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -85229,7 +85292,7 @@ paths: - 5 environments: type: array - items: &506 + items: &507 title: Environment description: Details of a deployment environment type: object @@ -85291,7 +85354,7 @@ paths: type: string examples: - wait_timer - wait_timer: &508 + wait_timer: &509 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -85333,7 +85396,7 @@ paths: items: type: object properties: - type: *505 + type: *506 reviewer: anyOf: - *4 @@ -85360,7 +85423,7 @@ paths: - id - node_id - type - deployment_branch_policy: &509 + deployment_branch_policy: &510 type: - object - 'null' @@ -85477,9 +85540,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *340 - *341 - - &507 + - *342 + - &508 name: environment_name in: path required: true @@ -85492,9 +85555,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &510 + default: &511 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -85578,9 +85641,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *340 - *341 - - *507 + - *342 + - *508 requestBody: required: false content: @@ -85590,7 +85653,7 @@ paths: - object - 'null' properties: - wait_timer: *508 + wait_timer: *509 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -85609,14 +85672,14 @@ paths: items: type: object properties: - type: *505 + type: *506 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *509 + deployment_branch_policy: *510 additionalProperties: false examples: default: @@ -85636,9 +85699,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -85662,9 +85725,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *340 - *341 - - *507 + - *342 + - *508 responses: '204': description: Default response @@ -85689,9 +85752,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *17 - *19 responses: @@ -85710,7 +85773,7 @@ paths: - 2 branch_policies: type: array - items: &511 + items: &512 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -85771,9 +85834,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 + - *342 + - *508 requestBody: required: true content: @@ -85821,9 +85884,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - example-wildcard: &512 + example-wildcard: &513 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -85865,10 +85928,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 - - &513 + - *342 + - *508 + - &514 name: branch_policy_id in: path required: true @@ -85880,9 +85943,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85901,10 +85964,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 - - *513 + - *342 + - *508 + - *514 requestBody: required: true content: @@ -85933,9 +85996,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85954,10 +86017,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *340 - *341 - - *507 - - *513 + - *342 + - *508 + - *514 responses: '204': description: Response @@ -85982,9 +86045,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *507 + - *508 + - *342 - *341 - - *340 responses: '200': description: List of deployment protection rules @@ -86001,7 +86064,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &514 + items: &515 title: Deployment protection rule description: Deployment protection rule type: object @@ -86023,7 +86086,7 @@ paths: for the environment. examples: - true - app: &515 + app: &516 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -86126,9 +86189,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: - - *507 + - *508 + - *342 - *341 - - *340 requestBody: content: application/json: @@ -86149,9 +86212,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *514 + schema: *515 examples: - default: &516 + default: &517 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -86186,9 +86249,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: - - *507 + - *508 + - *342 - *341 - - *340 - *19 - *17 responses: @@ -86208,7 +86271,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *515 + items: *516 examples: default: value: @@ -86243,10 +86306,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *340 - *341 - - *507 - - &517 + - *342 + - *508 + - &518 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -86258,9 +86321,9 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86281,10 +86344,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *507 + - *508 + - *342 - *341 - - *340 - - *517 + - *518 responses: '204': description: Response @@ -86310,9 +86373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *17 - *19 responses: @@ -86330,9 +86393,9 @@ paths: type: integer secrets: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -86357,9 +86420,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *340 - *341 - - *507 + - *342 + - *508 responses: '200': description: Response @@ -86389,18 +86452,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *164 responses: '200': description: Response content: application/json: - schema: *384 + schema: *385 examples: - default: *398 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86422,9 +86485,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *164 requestBody: required: true @@ -86482,9 +86545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *164 responses: '204': @@ -86510,9 +86573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *173 - *19 responses: @@ -86530,9 +86593,9 @@ paths: type: integer variables: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -86555,9 +86618,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *340 - *341 - - *507 + - *342 + - *508 requestBody: required: true content: @@ -86609,18 +86672,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *340 - *341 - - *507 + - *342 + - *508 - *167 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *399 + default: *400 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86641,10 +86704,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *340 - *341 + - *342 - *167 - - *507 + - *508 requestBody: required: true content: @@ -86686,10 +86749,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *340 - *341 + - *342 - *167 - - *507 + - *508 responses: '204': description: Response @@ -86711,8 +86774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -86780,8 +86843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *340 - *341 + - *342 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -86940,8 +87003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -86974,9 +87037,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 '400': *14 '422': *15 '403': *27 @@ -86997,8 +87060,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -87058,7 +87121,7 @@ paths: schema: oneOf: - *125 - - *518 + - *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87083,8 +87146,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *340 - *341 + - *342 - name: file_sha in: path required: true @@ -87184,8 +87247,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -87294,7 +87357,7 @@ paths: description: Response content: application/json: - schema: &519 + schema: &520 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -87521,15 +87584,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *340 - *341 - - *474 + - *342 + - *475 responses: '200': description: Response content: application/json: - schema: *519 + schema: *520 examples: default: value: @@ -87585,9 +87648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *340 - *341 - - &520 + - *342 + - &521 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. @@ -87604,7 +87667,7 @@ paths: application/json: schema: type: array - items: &521 + items: &522 title: Git Reference description: Git references within a repository type: object @@ -87680,17 +87743,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *340 - *341 - - *520 + - *342 + - *521 responses: '200': description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: &522 + default: &523 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -87719,8 +87782,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -87749,9 +87812,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: *522 + default: *523 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -87777,9 +87840,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *340 - *341 - - *520 + - *342 + - *521 requestBody: required: true content: @@ -87808,9 +87871,9 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: - default: *522 + default: *523 '422': *15 '409': *53 x-github: @@ -87828,9 +87891,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *340 - *341 - - *520 + - *342 + - *521 responses: '204': description: Response @@ -87885,8 +87948,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -87953,7 +88016,7 @@ paths: description: Response content: application/json: - schema: &524 + schema: &525 title: Git Tag description: Metadata for a Git tag type: object @@ -88009,7 +88072,7 @@ paths: - sha - type - url - verification: *523 + verification: *524 required: - sha - url @@ -88019,7 +88082,7 @@ paths: - tag - message examples: - default: &525 + default: &526 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -88092,8 +88155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *340 - *341 + - *342 - name: tag_sha in: path required: true @@ -88104,9 +88167,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: - default: *525 + default: *526 '404': *6 '409': *53 x-github: @@ -88130,8 +88193,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -88205,7 +88268,7 @@ paths: description: Response content: application/json: - schema: &526 + schema: &527 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -88307,8 +88370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *340 - *341 + - *342 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -88331,7 +88394,7 @@ paths: description: Response content: application/json: - schema: *526 + schema: *527 examples: default-response: summary: Default response @@ -88389,8 +88452,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -88434,8 +88497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -88445,7 +88508,7 @@ paths: application/json: schema: type: array - items: &527 + items: &528 title: Webhook description: Webhooks for repositories. type: object @@ -88508,7 +88571,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &804 + last_response: &805 title: Hook Response type: object properties: @@ -88585,8 +88648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -88639,9 +88702,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: &528 + default: &529 value: type: Repository id: 12345678 @@ -88689,17 +88752,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 '404': *6 x-github: githubCloudOnly: false @@ -88719,9 +88782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 requestBody: required: true content: @@ -88766,9 +88829,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 '422': *15 '404': *6 x-github: @@ -88789,9 +88852,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '204': description: Response @@ -88815,9 +88878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '200': description: Response @@ -88844,9 +88907,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *340 - *341 - - *219 + - *342 + - *220 requestBody: required: false content: @@ -88890,12 +88953,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *340 - *341 - - *219 - - *17 + - *342 - *220 + - *17 - *221 + - *222 responses: '200': description: Response @@ -88903,9 +88966,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *223 + default: *224 '400': *14 '422': *15 x-github: @@ -88924,18 +88987,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 - *16 responses: '200': description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 '400': *14 '422': *15 x-github: @@ -88954,9 +89017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 - *16 responses: '202': *38 @@ -88979,9 +89042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '204': description: Response @@ -89006,9 +89069,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *340 - *341 - - *219 + - *342 + - *220 responses: '204': description: Response @@ -89031,8 +89094,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response if immutable releases are enabled @@ -89080,8 +89143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *340 - *341 + - *342 responses: '204': *58 '409': *53 @@ -89101,8 +89164,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *340 - *341 + - *342 responses: '204': *58 '409': *53 @@ -89159,14 +89222,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &529 + schema: &530 title: Import description: A repository import from an external source. type: object @@ -89273,7 +89336,7 @@ paths: - html_url - authors_url examples: - default: &532 + default: &533 value: vcs: subversion use_lfs: true @@ -89289,7 +89352,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': &530 + '503': &531 description: Unavailable due to service under maintenance. content: application/json: @@ -89318,8 +89381,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -89367,7 +89430,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: default: value: @@ -89392,7 +89455,7 @@ paths: type: string '422': *15 '404': *6 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89420,8 +89483,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -89473,7 +89536,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: example-1: summary: Example 1 @@ -89521,7 +89584,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': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89544,12 +89607,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *340 - *341 + - *342 responses: '204': description: Response - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89575,9 +89638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *340 - *341 - - &738 + - *342 + - &739 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -89591,7 +89654,7 @@ paths: application/json: schema: type: array - items: &531 + items: &532 title: Porter Author description: Porter Author type: object @@ -89645,7 +89708,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': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89670,8 +89733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *340 - *341 + - *342 - name: author_id in: path required: true @@ -89701,7 +89764,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: default: value: @@ -89714,7 +89777,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89738,8 +89801,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89780,7 +89843,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89808,8 +89871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -89836,11 +89899,11 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: - default: *532 + default: *533 '422': *15 - '503': *530 + '503': *531 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89863,8 +89926,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89872,8 +89935,8 @@ paths: application/json: schema: *20 examples: - default: *533 - '301': *344 + default: *534 + '301': *345 '404': *6 x-github: githubCloudOnly: false @@ -89893,8 +89956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -89902,12 +89965,12 @@ paths: application/json: schema: anyOf: - - *238 + - *239 - type: object properties: {} additionalProperties: false examples: - default: &535 + default: &536 value: limit: collaborators_only origin: repository @@ -89932,13 +89995,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *534 + schema: *535 examples: default: summary: Example request body @@ -89950,9 +90013,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *535 + default: *536 '409': description: Response x-github: @@ -89974,8 +90037,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -90002,8 +90065,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -90057,13 +90120,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: &536 + schema: &537 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -90113,13 +90176,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: application/json: - schema: *536 + schema: *537 examples: default: summary: Example request body @@ -90152,8 +90215,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -90206,8 +90269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -90283,8 +90346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -90294,9 +90357,9 @@ paths: application/json: schema: type: array - items: *537 + items: *538 examples: - default: &731 + default: &732 value: - id: 1 repository: @@ -90427,9 +90490,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *340 - *341 - - *242 + - *342 + - *243 requestBody: required: false content: @@ -90458,7 +90521,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: default: value: @@ -90589,9 +90652,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *340 - *341 - - *242 + - *342 + - *243 responses: '204': description: Response @@ -90614,8 +90677,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -90623,9 +90686,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *538 + default: *539 '404': *6 x-github: githubCloudOnly: false @@ -90654,8 +90717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *340 - *341 + - *342 - 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 @@ -90717,7 +90780,7 @@ paths: required: false schema: type: string - - *249 + - *250 - name: sort description: What to sort results by. in: query @@ -90742,7 +90805,7 @@ paths: type: array items: *83 examples: - default: &548 + default: &549 value: - id: 1 node_id: MDU6SXNzdWUx @@ -90891,7 +90954,7 @@ paths: state_reason: completed headers: Link: *67 - '301': *344 + '301': *345 '422': *15 '404': *6 x-github: @@ -90920,8 +90983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -91038,7 +91101,7 @@ paths: application/json: schema: *83 examples: - default: &545 + default: &546 value: id: 1 node_id: MDU6SXNzdWUx @@ -91239,8 +91302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *340 - *341 + - *342 - *105 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -91263,7 +91326,7 @@ paths: type: array items: *84 examples: - default: &547 + default: &548 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -91322,8 +91385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '200': @@ -91332,7 +91395,7 @@ paths: application/json: schema: *84 examples: - default: &539 + default: &540 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -91388,8 +91451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -91414,7 +91477,7 @@ paths: application/json: schema: *84 examples: - default: *539 + default: *540 '422': *15 x-github: githubCloudOnly: false @@ -91432,8 +91495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -91462,8 +91525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '200': @@ -91543,8 +91606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -91570,8 +91633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -91598,9 +91661,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -91621,8 +91684,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -91655,16 +91718,16 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -91686,10 +91749,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *340 - *341 + - *342 - *97 - - *541 + - *542 responses: '204': description: Response @@ -91709,8 +91772,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -91720,7 +91783,7 @@ paths: application/json: schema: type: array - items: &544 + items: &545 title: Issue Event description: Issue Event type: object @@ -91867,7 +91930,7 @@ paths: required: - from - to - issue_type: &542 + issue_type: &543 title: Issue Type description: The type of issue. type: @@ -91898,11 +91961,11 @@ paths: required: - id - name - prev_issue_type: *542 + prev_issue_type: *543 sub_issue: anyOf: - type: 'null' - - &543 + - &544 title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency @@ -91960,19 +92023,19 @@ paths: parent_issue: anyOf: - type: 'null' - - *543 + - *544 blocked_by: anyOf: - type: 'null' - - *543 + - *544 blocking: anyOf: - type: 'null' - - *543 + - *544 intent: anyOf: - type: 'null' - - &549 + - &550 title: Issue Event Intent description: The intent behind an agent's action on an issue, including the rationale and confidence. Present (and `null` @@ -92194,8 +92257,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *340 - *341 + - *342 - name: event_id in: path required: true @@ -92206,7 +92269,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: default: value: @@ -92433,9 +92496,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *340 - *341 - - &546 + - *342 + - &547 name: issue_number description: The number that identifies the issue. in: path @@ -92451,7 +92514,7 @@ paths: examples: default: summary: Issue - value: *545 + value: *546 pinned_comment: summary: Issue with pinned comment value: @@ -92656,7 +92719,7 @@ paths: - op: remove path: "/value/assignee" version: '2026-03-10' - '301': *344 + '301': *345 '404': *6 '410': *31 '304': *36 @@ -92683,9 +92746,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -93056,11 +93119,11 @@ paths: - already_applied - issue_already_closed examples: - default: *545 + default: *546 '422': *15 '503': *115 '403': *27 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -93090,9 +93153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -93142,7 +93205,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93158,9 +93221,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: content: application/json: @@ -93187,7 +93250,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93209,9 +93272,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: - - *340 - *341 - - *546 + - *342 + - *547 - name: assignee in: path required: true @@ -93251,9 +93314,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *88 - *17 - *19 @@ -93266,7 +93329,7 @@ paths: type: array items: *84 examples: - default: *547 + default: *548 headers: Link: *67 '404': *6 @@ -93299,9 +93362,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -93325,7 +93388,7 @@ paths: application/json: schema: *84 examples: - default: *539 + default: *540 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -93360,9 +93423,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -93374,10 +93437,10 @@ paths: type: array items: *83 examples: - default: *548 + default: *549 headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -93407,9 +93470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -93433,13 +93496,13 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *344 + '301': *345 '403': *27 '410': *31 '422': *15 @@ -93472,9 +93535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -93488,8 +93551,8 @@ paths: application/json: schema: *83 examples: - default: *545 - '301': *344 + default: *546 + '301': *345 '400': *14 '401': *23 '403': *27 @@ -93520,9 +93583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -93534,10 +93597,10 @@ paths: type: array items: *83 examples: - default: *548 + default: *549 headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -93556,9 +93619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -93572,7 +93635,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &555 + - &556 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -93613,7 +93676,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - label - id @@ -93625,7 +93688,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &557 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -93666,7 +93729,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - label - id @@ -93707,7 +93770,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - id - node_id @@ -93761,7 +93824,7 @@ paths: - performed_via_github_app - assignee - assigner - - &557 + - &558 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -93807,7 +93870,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &559 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -93853,7 +93916,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &560 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -93902,7 +93965,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &561 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -93944,7 +94007,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &562 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -93986,7 +94049,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &562 + - &563 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -94042,7 +94105,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &563 + - &564 title: Locked Issue Event description: Locked Issue Event type: object @@ -94087,7 +94150,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &565 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -94148,7 +94211,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &566 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -94209,7 +94272,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &567 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -94270,7 +94333,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &568 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -94328,7 +94391,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &570 + - &571 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -94356,11 +94419,11 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *542 + issue_type: *543 intent: anyOf: - type: 'null' - - *549 + - *550 required: - issue_type - id @@ -94372,7 +94435,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &571 + - &572 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -94400,11 +94463,11 @@ paths: anyOf: - type: 'null' - *5 - prev_issue_type: *542 + prev_issue_type: *543 intent: anyOf: - type: 'null' - - *549 + - *550 required: - prev_issue_type - id @@ -94416,7 +94479,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &572 + - &573 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -94444,12 +94507,12 @@ paths: anyOf: - type: 'null' - *5 - issue_type: *542 - prev_issue_type: *542 + issue_type: *543 + prev_issue_type: *543 intent: anyOf: - type: 'null' - - *549 + - *550 required: - issue_type - prev_issue_type @@ -94462,7 +94525,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &573 + - &574 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -94493,7 +94556,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *543 + - *544 required: - sub_issue - id @@ -94505,7 +94568,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &574 + - &575 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -94536,7 +94599,7 @@ paths: sub_issue: anyOf: - type: 'null' - - *543 + - *544 required: - sub_issue - id @@ -94548,7 +94611,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &575 + - &576 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -94579,7 +94642,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *543 + - *544 required: - parent_issue - id @@ -94591,7 +94654,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &576 + - &577 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -94622,7 +94685,7 @@ paths: parent_issue: anyOf: - type: 'null' - - *543 + - *544 required: - parent_issue - id @@ -94634,7 +94697,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &577 + - &578 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -94665,7 +94728,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *543 + - *544 required: - blocked_by - id @@ -94677,7 +94740,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &578 + - &579 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -94708,7 +94771,7 @@ paths: blocked_by: anyOf: - type: 'null' - - *543 + - *544 required: - blocked_by - id @@ -94720,7 +94783,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &579 + - &580 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -94751,7 +94814,7 @@ paths: blocking: anyOf: - type: 'null' - - *543 + - *544 required: - blocking - id @@ -94763,7 +94826,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &580 + - &581 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -94794,7 +94857,7 @@ paths: blocking: anyOf: - type: 'null' - - *543 + - *544 required: - blocking - id @@ -94858,9 +94921,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -94870,9 +94933,9 @@ paths: application/json: schema: type: array - items: *550 + items: *551 examples: - default: &551 + default: &552 value: - issue_field_id: 1 issue_field_name: DRI @@ -94912,7 +94975,7 @@ paths: color: green headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -94943,9 +95006,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -95017,9 +95080,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *550 + items: *551 examples: - default: *551 + default: *552 '400': *14 '403': *27 '404': *6 @@ -95055,9 +95118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -95124,9 +95187,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *550 + items: *551 examples: - default: *551 + default: *552 '400': *14 '403': *27 '404': *6 @@ -95157,10 +95220,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *340 - *341 - - *546 - - *245 + - *342 + - *547 + - *246 responses: '204': description: Issue field value deleted successfully @@ -95185,9 +95248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -95199,7 +95262,7 @@ paths: type: array items: *82 examples: - default: &552 + default: &553 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -95217,7 +95280,7 @@ paths: default: false headers: Link: *67 - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -95235,9 +95298,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -95317,8 +95380,8 @@ paths: type: array items: *82 examples: - default: *552 - '301': *344 + default: *553 + '301': *345 '404': *6 '410': *31 '422': *15 @@ -95337,9 +95400,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -95401,8 +95464,8 @@ paths: type: array items: *82 examples: - default: *552 - '301': *344 + default: *553 + '301': *345 '404': *6 '410': *31 '422': *15 @@ -95421,13 +95484,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 responses: '204': description: Response - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -95448,9 +95511,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: name in: path required: true @@ -95474,7 +95537,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *344 + '301': *345 '404': *6 '410': *31 x-github: @@ -95496,9 +95559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: false content: @@ -95545,9 +95608,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 responses: '204': description: Response @@ -95577,9 +95640,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 responses: '200': description: Response @@ -95587,8 +95650,8 @@ paths: application/json: schema: *83 examples: - default: *545 - '301': *344 + default: *546 + '301': *345 '404': *6 '410': *31 x-github: @@ -95607,9 +95670,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - 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. @@ -95635,9 +95698,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -95659,9 +95722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -95693,16 +95756,16 @@ paths: description: Response content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Response content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -95724,10 +95787,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *340 - *341 - - *546 - - *541 + - *342 + - *547 + - *542 responses: '204': description: Response @@ -95756,9 +95819,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -95782,7 +95845,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -95815,9 +95878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 responses: @@ -95829,7 +95892,7 @@ paths: type: array items: *83 examples: - default: *548 + default: *549 headers: Link: *67 '404': *6 @@ -95861,9 +95924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -95892,7 +95955,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -95919,9 +95982,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 requestBody: required: true content: @@ -95954,7 +96017,7 @@ paths: application/json: schema: *83 examples: - default: *545 + default: *546 '403': *27 '404': *6 '422': *7 @@ -95983,9 +96046,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-issue-suggestions parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: state in: query required: false @@ -96022,7 +96085,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Issue Suggestion description: An agent-proposed change to an issue that a maintainer can approve or dismiss. @@ -96186,9 +96249,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#approve-an-issue-suggestion parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: suggestion_id in: path required: true @@ -96200,9 +96263,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: &554 + default: &555 value: id: 12 issue_id: 4567 @@ -96240,9 +96303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#dismiss-an-issue-suggestion parameters: - - *340 - *341 - - *546 + - *342 + - *547 - name: suggestion_id in: path required: true @@ -96254,9 +96317,9 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *554 + default: *555 '403': *27 '404': *6 '422': *15 @@ -96276,9 +96339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *340 - *341 - - *546 + - *342 + - *547 - *17 - *19 - name: exclude @@ -96299,7 +96362,6 @@ paths: description: Timeline Event type: object anyOf: - - *555 - *556 - *557 - *558 @@ -96312,6 +96374,7 @@ paths: - *565 - *566 - *567 + - *568 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -96368,11 +96431,11 @@ paths: pin: anyOf: - type: 'null' - - *568 + - *569 minimized: anyOf: - type: 'null' - - *569 + - *570 required: - event - actor @@ -96648,7 +96711,7 @@ paths: type: string comments: type: array - items: &600 + items: &601 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -96889,7 +96952,7 @@ paths: type: string comments: type: array - items: *470 + items: *471 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -96921,7 +96984,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - id - node_id @@ -97006,7 +97069,7 @@ paths: intent: anyOf: - type: 'null' - - *549 + - *550 required: - id - node_id @@ -97017,7 +97080,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *570 - *571 - *572 - *573 @@ -97028,6 +97090,7 @@ paths: - *578 - *579 - *580 + - *581 examples: default: value: @@ -97201,8 +97264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -97212,7 +97275,7 @@ paths: application/json: schema: type: array - items: &581 + items: &582 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -97280,8 +97343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97317,9 +97380,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: &582 + default: &583 value: id: 1 key: ssh-rsa AAA... @@ -97353,9 +97416,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *340 - *341 - - &583 + - *342 + - &584 name: key_id description: The unique identifier of the key. in: path @@ -97367,9 +97430,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: - default: *582 + default: *583 '404': *6 x-github: githubCloudOnly: false @@ -97387,9 +97450,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *340 - *341 - - *583 + - *342 + - *584 responses: '204': description: Response @@ -97409,8 +97472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -97422,7 +97485,7 @@ paths: type: array items: *82 examples: - default: *552 + default: *553 headers: Link: *67 '404': *6 @@ -97443,8 +97506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97482,7 +97545,7 @@ paths: application/json: schema: *82 examples: - default: &584 + default: &585 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -97514,8 +97577,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *340 - *341 + - *342 - name: name in: path required: true @@ -97528,7 +97591,7 @@ paths: application/json: schema: *82 examples: - default: *584 + default: *585 '404': *6 x-github: githubCloudOnly: false @@ -97545,8 +97608,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *340 - *341 + - *342 - name: name in: path required: true @@ -97611,8 +97674,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *340 - *341 + - *342 - name: name in: path required: true @@ -97638,8 +97701,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -97678,9 +97741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *340 - *341 - - *445 + - *342 + - *446 responses: '200': description: Response @@ -97827,8 +97890,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97893,8 +97956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -97928,9 +97991,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *473 + schema: *474 examples: - default: *585 + default: *586 '204': description: Response when already merged '404': @@ -97955,8 +98018,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *340 - *341 + - *342 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -97997,7 +98060,7 @@ paths: application/json: schema: type: array - items: *282 + items: *283 examples: default: value: @@ -98053,8 +98116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -98094,9 +98157,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: &586 + default: &587 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -98155,9 +98218,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *340 - *341 - - &587 + - *342 + - &588 name: milestone_number description: The number that identifies the milestone. in: path @@ -98169,9 +98232,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: *586 + default: *587 '404': *6 x-github: githubCloudOnly: false @@ -98188,9 +98251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *340 - *341 - - *587 + - *342 + - *588 requestBody: required: false content: @@ -98228,9 +98291,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: *586 + default: *587 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98246,9 +98309,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *340 - *341 - - *587 + - *342 + - *588 responses: '204': description: Response @@ -98269,9 +98332,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *340 - *341 - - *587 + - *342 + - *588 - *17 - *19 responses: @@ -98283,7 +98346,7 @@ paths: type: array items: *82 examples: - default: *552 + default: *553 headers: Link: *67 x-github: @@ -98302,12 +98365,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *340 - *341 - - *588 + - *342 - *589 - - *88 - *590 + - *88 + - *591 - *17 - *19 responses: @@ -98319,7 +98382,7 @@ paths: type: array items: *108 examples: - default: *591 + default: *592 headers: Link: *67 x-github: @@ -98343,8 +98406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -98402,14 +98465,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: &592 + schema: &593 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -98553,7 +98616,7 @@ paths: - custom_404 - public examples: - default: &593 + default: &594 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -98594,8 +98657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -98650,9 +98713,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '422': *15 '409': *53 x-github: @@ -98675,8 +98738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -98776,8 +98839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -98803,8 +98866,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -98814,7 +98877,7 @@ paths: application/json: schema: type: array - items: &594 + items: &595 title: Page Build description: Page Build type: object @@ -98906,8 +98969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *340 - *341 + - *342 responses: '201': description: Response @@ -98954,16 +99017,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: &595 + default: &596 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -99011,8 +99074,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *340 - *341 + - *342 - name: build_id in: path required: true @@ -99023,9 +99086,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: *595 + default: *596 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99045,8 +99108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -99154,9 +99217,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *340 - *341 - - &596 + - *342 + - &597 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -99214,9 +99277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *340 - *341 - - *596 + - *342 + - *597 responses: '204': *58 '404': *6 @@ -99243,8 +99306,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -99539,8 +99602,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: - - *340 - *341 + - *342 responses: '200': description: Private vulnerability reporting status @@ -99577,8 +99640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': *58 '422': *14 @@ -99599,8 +99662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': *58 '422': *14 @@ -99622,8 +99685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -99631,7 +99694,7 @@ paths: application/json: schema: type: array - items: *296 + items: *297 examples: default: value: @@ -99662,8 +99725,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: - - *340 - *341 + - *342 requestBody: required: true content: @@ -99675,7 +99738,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *296 + items: *297 required: - properties examples: @@ -99725,8 +99788,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *340 - *341 + - *342 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -99786,9 +99849,9 @@ paths: application/json: schema: type: array - items: *437 + items: *438 examples: - default: *597 + default: *598 headers: Link: *67 '304': *36 @@ -99820,8 +99883,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -99888,7 +99951,7 @@ paths: description: Response content: application/json: - schema: &602 + schema: &603 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -100017,7 +100080,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *283 active_lock_reason: type: - string @@ -100066,7 +100129,7 @@ paths: items: *4 requested_teams: type: array - items: *261 + items: *262 head: type: object properties: @@ -100104,14 +100167,14 @@ paths: _links: type: object properties: - comments: *283 - commits: *283 - statuses: *283 - html: *283 - issue: *283 - review_comments: *283 - review_comment: *283 - self: *283 + comments: *284 + commits: *284 + statuses: *284 + html: *284 + issue: *284 + review_comments: *284 + review_comment: *284 + self: *284 required: - comments - commits @@ -100122,8 +100185,8 @@ paths: - review_comment - self author_association: *80 - auto_merge: *598 - stack: *599 + auto_merge: *599 + stack: *600 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -100319,7 +100382,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &603 + default: &604 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -100857,8 +100920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *340 - *341 + - *342 - name: sort in: query required: false @@ -100887,9 +100950,9 @@ paths: application/json: schema: type: array - items: *600 + items: *601 examples: - default: &605 + default: &606 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -100966,17 +101029,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *340 - *341 + - *342 - *97 responses: '200': description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: &601 + default: &602 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -101051,8 +101114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -101075,9 +101138,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: *601 + default: *602 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101093,8 +101156,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *340 - *341 + - *342 - *97 responses: '204': @@ -101116,8 +101179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *340 - *341 + - *342 - *97 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -101144,9 +101207,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -101167,8 +101230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *340 - *341 + - *342 - *97 requestBody: required: true @@ -101201,16 +101264,16 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -101232,10 +101295,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *340 - *341 + - *342 - *97 - - *541 + - *542 responses: '204': description: Response @@ -101278,9 +101341,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *340 - *341 - - &604 + - *342 + - &605 name: pull_number description: The number that identifies the pull request. in: path @@ -101293,9 +101356,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 '304': *36 '404': *6 '406': @@ -101330,9 +101393,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -101374,9 +101437,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *603 + default: *604 '422': *15 '403': *27 x-github: @@ -101398,9 +101461,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: true content: @@ -101461,17 +101524,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '401': *23 '403': *27 '404': *6 @@ -101501,9 +101564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *105 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -101524,9 +101587,9 @@ paths: application/json: schema: type: array - items: *600 + items: *601 examples: - default: *605 + default: *606 headers: Link: *67 x-github: @@ -101559,9 +101622,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: true content: @@ -101667,7 +101730,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: example-for-a-multi-line-comment: value: @@ -101755,9 +101818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *97 requestBody: required: true @@ -101780,7 +101843,7 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: default: value: @@ -101866,9 +101929,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *17 - *19 responses: @@ -101878,9 +101941,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *606 + default: *607 headers: Link: *67 x-github: @@ -101910,9 +101973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *17 - *19 responses: @@ -101922,7 +101985,7 @@ paths: application/json: schema: type: array - items: *483 + items: *484 examples: default: value: @@ -101960,9 +102023,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *340 - *341 - - *604 + - *342 + - *605 responses: '204': description: Response if pull request has been merged @@ -101985,9 +102048,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -102110,9 +102173,9 @@ paths: category: pulls subcategory: pulls parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -102165,7 +102228,7 @@ paths: description: if the merge request was accepted and will run in the background content: application/json: - schema: &607 + schema: &608 title: Pull Request Merge Async Result description: Pull Request Merge Async Result type: object @@ -102250,7 +102313,7 @@ paths: merge queue content: application/json: - schema: *607 + schema: *608 examples: response-if-pull-request-was-already-merged: summary: Already merged @@ -102270,7 +102333,7 @@ paths: this pull request content: application/json: - schema: *607 + schema: *608 examples: response-if-a-merge-request-already-exists: value: @@ -102286,7 +102349,7 @@ paths: it is closed content: application/json: - schema: *607 + schema: *608 examples: response-if-pull-request-is-not-ready-to-be-merged: value: @@ -102318,9 +102381,9 @@ paths: category: pulls subcategory: pulls parameters: - - *340 - *341 - - *604 + - *342 + - *605 - name: uuid description: The UUID of the asynchronous merge request, as returned when the merge was requested. @@ -102333,7 +102396,7 @@ paths: description: the current result of the asynchronous merge request content: application/json: - schema: *607 + schema: *608 examples: response-if-the-merge-is-still-queued: summary: Still queued @@ -102381,9 +102444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 responses: '200': description: Response @@ -102458,9 +102521,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -102497,7 +102560,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: default: value: @@ -103033,9 +103096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: true content: @@ -103069,7 +103132,7 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: default: value: @@ -103585,9 +103648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 - *17 - *19 responses: @@ -103597,7 +103660,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -103753,9 +103816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -103845,9 +103908,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: &610 + default: &611 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103910,10 +103973,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - &609 + - *342 + - *605 + - &610 name: review_id description: The unique identifier of the review. in: path @@ -103925,9 +103988,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: &611 + default: &612 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -103986,10 +104049,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 requestBody: required: true content: @@ -104012,7 +104075,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -104074,18 +104137,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 responses: '200': description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *610 + default: *611 '422': *7 '404': *6 x-github: @@ -104112,10 +104175,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 - *17 - *19 responses: @@ -104213,9 +104276,9 @@ paths: _links: type: object properties: - self: *283 - html: *283 - pull_request: *283 + self: *284 + html: *284 + pull_request: *284 required: - self - html @@ -104373,10 +104436,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 requestBody: required: true content: @@ -104405,7 +104468,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -104468,10 +104531,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *340 - *341 - - *604 - - *609 + - *342 + - *605 + - *610 requestBody: required: true content: @@ -104506,9 +104569,9 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: - default: *611 + default: *612 '404': *6 '422': *7 '403': *27 @@ -104530,9 +104593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *340 - *341 - - *604 + - *342 + - *605 requestBody: required: false content: @@ -104596,8 +104659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *340 - *341 + - *342 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -104610,9 +104673,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: &613 + default: &614 value: type: file encoding: base64 @@ -104654,8 +104717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *340 - *341 + - *342 - name: dir description: The alternate path to look for a README file in: path @@ -104675,9 +104738,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *613 + default: *614 '404': *6 '422': *15 x-github: @@ -104699,8 +104762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -104710,7 +104773,7 @@ paths: application/json: schema: type: array - items: *614 + items: *615 examples: default: value: @@ -104809,8 +104872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -104886,9 +104949,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: &618 + default: &619 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -104993,9 +105056,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *340 - *341 - - &616 + - *342 + - &617 name: asset_id description: The unique identifier of the asset. in: path @@ -105007,9 +105070,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: - default: &617 + default: &618 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 @@ -105044,7 +105107,7 @@ paths: type: User site_admin: false '404': *6 - '302': *487 + '302': *488 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105060,9 +105123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *340 - *341 - - *616 + - *342 + - *617 requestBody: required: false content: @@ -105091,9 +105154,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: - default: *617 + default: *618 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105109,9 +105172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *340 - *341 - - *616 + - *342 + - *617 responses: '204': description: Response @@ -105136,8 +105199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -105223,16 +105286,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *340 - *341 + - *342 responses: '200': description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *618 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -105250,8 +105313,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *340 - *341 + - *342 - name: tag description: tag parameter in: path @@ -105264,9 +105327,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *618 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -105288,9 +105351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *340 - *341 - - &619 + - *342 + - &620 name: release_id description: The unique identifier of the release. in: path @@ -105304,9 +105367,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: *614 + schema: *615 examples: - default: *618 + default: *619 '401': description: Unauthorized x-github: @@ -105330,9 +105393,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 requestBody: required: false content: @@ -105396,9 +105459,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *618 + default: *619 '404': description: Not Found if the discussion category name is invalid content: @@ -105419,9 +105482,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 responses: '204': description: Response @@ -105442,9 +105505,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *340 - *341 - - *619 + - *342 + - *620 - *17 - *19 responses: @@ -105454,7 +105517,7 @@ paths: application/json: schema: type: array - items: *615 + items: *616 examples: default: value: @@ -105535,9 +105598,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: - - *340 - *341 - - *619 + - *342 + - *620 - name: name in: query required: true @@ -105563,7 +105626,7 @@ paths: description: Response for successful upload content: application/json: - schema: *615 + schema: *616 examples: response-for-successful-upload: value: @@ -105618,9 +105681,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 - 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. @@ -105644,9 +105707,9 @@ paths: application/json: schema: type: array - items: *471 + items: *472 examples: - default: *540 + default: *541 headers: Link: *67 '404': *6 @@ -105667,9 +105730,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *340 - *341 - - *619 + - *342 + - *620 requestBody: required: true content: @@ -105699,16 +105762,16 @@ paths: description: Reaction exists content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '201': description: Reaction created content: application/json: - schema: *471 + schema: *472 examples: - default: *472 + default: *473 '422': *15 x-github: githubCloudOnly: false @@ -105730,10 +105793,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *340 - *341 - - *619 - - *541 + - *342 + - *620 + - *542 responses: '204': description: Response @@ -105757,9 +105820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *340 - *341 - - *406 + - *342 + - *407 - *17 - *19 responses: @@ -105775,8 +105838,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *303 - - &620 + - *304 + - &621 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -105795,72 +105858,72 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *304 - - *620 - allOf: - *305 - - *620 + - *621 - allOf: - *306 - - *620 - - allOf: - *621 - - *620 - allOf: - *307 - - *620 + - *621 + - allOf: + - *622 + - *621 - allOf: - *308 - - *620 + - *621 - allOf: - *309 - - *620 + - *621 - allOf: - *310 - - *620 + - *621 - allOf: - *311 - - *620 + - *621 - allOf: - *312 - - *620 + - *621 - allOf: - *313 - - *620 + - *621 - allOf: - *314 - - *620 + - *621 - allOf: - *315 - - *620 + - *621 - allOf: - *316 - - *620 + - *621 - allOf: - - *321 - - *620 + - *317 + - *621 - allOf: - *322 - - *620 + - *621 - allOf: - *323 - - *620 + - *621 - allOf: - - *622 - - *620 + - *324 + - *621 - allOf: - - *317 - - *620 + - *623 + - *621 - allOf: - *318 - - *620 + - *621 - allOf: - *319 - - *620 + - *621 - allOf: - *320 - - *620 + - *621 + - allOf: + - *321 + - *621 examples: default: value: @@ -105899,8 +105962,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - *17 - *19 - name: includes_parents @@ -105911,7 +105974,7 @@ paths: schema: type: boolean default: true - - *623 + - *624 responses: '200': description: Response @@ -105919,7 +105982,7 @@ paths: application/json: schema: type: array - items: *324 + items: *325 examples: default: value: @@ -105966,8 +106029,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 requestBody: description: Request body required: true @@ -105987,16 +106050,16 @@ paths: - tag - push default: branch - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *302 + conditions: *299 rules: type: array description: An array of rules within the ruleset. - items: *624 + items: *625 required: - name - enforcement @@ -106027,9 +106090,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: &635 + default: &636 value: id: 42 name: super cool ruleset @@ -106077,13 +106140,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *340 - *341 - - *625 + - *342 - *626 - *627 - *628 - *629 + - *630 - *17 - *19 responses: @@ -106091,9 +106154,9 @@ paths: description: Response content: application/json: - schema: *630 + schema: *631 examples: - default: *631 + default: *632 '404': *6 '500': *54 x-github: @@ -106114,17 +106177,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *340 - *341 - - *632 + - *342 + - *633 responses: '200': description: Response content: application/json: - schema: *633 + schema: *634 examples: - default: *634 + default: *635 '404': *6 '500': *54 x-github: @@ -106152,8 +106215,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106173,9 +106236,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *635 + default: *636 '404': *6 '500': *54 put: @@ -106193,8 +106256,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106219,16 +106282,16 @@ paths: - branch - tag - push - enforcement: *300 + enforcement: *301 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *301 - conditions: *298 + items: *302 + conditions: *299 rules: description: An array of rules within the ruleset. type: array - items: *624 + items: *625 examples: default: value: @@ -106256,9 +106319,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *635 + default: *636 '404': *6 '422': *15 '500': *54 @@ -106277,8 +106340,8 @@ paths: category: repos subcategory: rules parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106301,8 +106364,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *340 - *341 + - *342 - *17 - *19 - name: ruleset_id @@ -106318,9 +106381,9 @@ paths: application/json: schema: type: array - items: *327 + items: *328 examples: - default: *636 + default: *637 '404': *6 '500': *54 x-github: @@ -106339,8 +106402,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *340 - *341 + - *342 - name: ruleset_id description: The ID of the ruleset. in: path @@ -106358,7 +106421,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: default: value: @@ -106413,9 +106476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *340 - *341 - - *638 + - *342 - *639 - *640 - *641 @@ -106423,10 +106485,10 @@ paths: - *643 - *644 - *645 + - *646 - *61 - *19 - *17 - - *646 - *647 - *648 - *649 @@ -106435,6 +106497,7 @@ paths: - *652 - *653 - *654 + - *655 responses: '200': description: Response @@ -106458,8 +106521,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *655 - resolution: *656 + state: *656 + resolution: *657 resolved_at: type: - string @@ -106565,7 +106628,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *657 + - *658 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -106724,16 +106787,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *340 - *341 - - *439 - - *651 + - *342 + - *440 + - *652 responses: '200': description: Response content: application/json: - schema: &658 + schema: &659 type: object properties: number: *181 @@ -106748,8 +106811,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *655 - resolution: *656 + state: *656 + resolution: *657 resolved_at: type: - string @@ -106855,7 +106918,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *657 + - *658 has_more_locations: type: boolean description: A boolean value representing whether or not the token @@ -106878,7 +106941,7 @@ paths: anyOf: - type: 'null' - *4 - metadata: &823 + metadata: &824 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -106951,9 +107014,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 requestBody: required: true content: @@ -106961,8 +107024,8 @@ paths: schema: type: object properties: - state: *655 - resolution: *656 + state: *656 + resolution: *657 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -107010,7 +107073,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: default: value: @@ -107112,9 +107175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *340 - *341 - - *439 + - *342 + - *440 - *19 - *17 responses: @@ -107125,7 +107188,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &825 + items: &826 type: object properties: type: @@ -107152,7 +107215,6 @@ paths: - commit details: oneOf: - - *659 - *660 - *661 - *662 @@ -107165,6 +107227,7 @@ paths: - *669 - *670 - *671 + - *672 examples: default: value: @@ -107253,11 +107316,11 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 - - *672 + - *342 - *673 - *674 + - *675 - *61 - *19 - *17 @@ -107268,9 +107331,9 @@ paths: application/json: schema: type: array - items: *328 + items: *329 examples: - default: *675 + default: *676 headers: Link: *67 '403': *27 @@ -107293,8 +107356,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -107307,9 +107370,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *676 + items: *677 examples: - default: *677 + default: *678 responses: '201': description: All patterns created successfully. @@ -107321,9 +107384,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *328 + items: *329 examples: - default: *678 + default: *679 '400': *14 '403': *27 '404': *6 @@ -107347,7 +107410,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *679 + items: *680 delete: summary: Bulk delete repository custom patterns description: |- @@ -107366,8 +107429,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -107381,7 +107444,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *680 + items: *681 post_delete_action: type: string description: |- @@ -107394,14 +107457,14 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *681 + default: *682 responses: '204': description: All patterns deleted successfully. '400': *14 '403': *27 '404': *6 - '412': *330 + '412': *331 "/repos/{owner}/{repo}/secret-scanning/custom-patterns/{pattern_id}": patch: summary: Update a repository custom pattern @@ -107421,8 +107484,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *340 - *341 + - *342 - name: pattern_id in: path required: true @@ -107433,21 +107496,21 @@ paths: required: true content: application/json: - schema: *682 + schema: *683 examples: - default: *683 + default: *684 responses: '200': description: Pattern updated successfully. content: application/json: - schema: *328 + schema: *329 examples: - default: *684 + default: *685 '400': *14 '403': *27 '404': *6 - '412': *330 + '412': *331 '422': *15 "/repos/{owner}/{repo}/secret-scanning/push-protection-bypasses": post: @@ -107465,8 +107528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -107474,14 +107537,14 @@ paths: schema: type: object properties: - reason: &686 + reason: &687 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *685 + placeholder_id: *686 required: - reason - placeholder_id @@ -107498,7 +107561,7 @@ paths: schema: type: object properties: - reason: *686 + reason: *687 expire_at: type: - string @@ -107545,8 +107608,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: - - *340 - *341 + - *342 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -107561,7 +107624,7 @@ paths: properties: incremental_scans: type: array - items: &687 + items: &688 description: Information on a single scan performed by secret scanning on the repository type: object @@ -107594,15 +107657,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *687 + items: *688 backfill_scans: type: array - items: *687 + items: *688 custom_pattern_backfill_scans: type: array items: allOf: - - *687 + - *688 - type: object properties: pattern_name: @@ -107615,7 +107678,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *687 + items: *688 examples: default: value: @@ -107680,8 +107743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *340 - *341 + - *342 - *61 - name: sort description: The property to sort the results by. @@ -107725,9 +107788,9 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: - default: *689 + default: *690 '400': *14 '404': *6 x-github: @@ -107750,8 +107813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -107831,7 +107894,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *333 required: - login - type @@ -107921,9 +107984,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: &691 + default: &692 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -108162,8 +108225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -108276,7 +108339,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: default: value: @@ -108429,17 +108492,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *340 - *341 - - *690 + - *342 + - *691 responses: '200': description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *691 + default: *692 '403': *27 '404': *6 x-github: @@ -108463,9 +108526,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *340 - *341 - - *690 + - *342 + - *691 requestBody: required: true content: @@ -108545,7 +108608,7 @@ paths: login: type: string description: The username of the user credited. - type: *332 + type: *333 required: - login - type @@ -108636,10 +108699,10 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *691 - add_credit: *691 + default: *692 + add_credit: *692 '403': *27 '404': *6 '422': @@ -108677,9 +108740,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: - - *340 - *341 - - *690 + - *342 + - *691 responses: '202': *38 '400': *14 @@ -108706,17 +108769,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *340 - *341 - - *690 + - *342 + - *691 responses: '202': description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 '400': *14 '422': *15 '403': *27 @@ -108737,8 +108800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#list-pull-request-stacks parameters: - - *340 - *341 + - *342 - name: pull_request description: Filter to the stack containing this repository pull request number. in: query @@ -108871,8 +108934,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#create-a-pull-request-stack parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -108939,7 +109002,7 @@ paths: format: date-time pull_requests: type: array - items: &692 + items: &693 title: Pull Request Stack Pull Request type: object allOf: @@ -109166,8 +109229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#get-a-pull-request-stack parameters: - - *340 - *341 + - *342 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -109216,7 +109279,7 @@ paths: format: date-time pull_requests: type: array - items: *692 + items: *693 examples: default: value: @@ -109336,8 +109399,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#add-pull-requests-to-a-pull-request-stack parameters: - - *340 - *341 + - *342 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -109409,7 +109472,7 @@ paths: format: date-time pull_requests: type: array - items: *692 + items: *693 examples: default: value: @@ -109616,8 +109679,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#remove-pull-requests-from-a-pull-request-stack parameters: - - *340 - *341 + - *342 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -109666,7 +109729,7 @@ paths: format: date-time pull_requests: type: array - items: *692 + items: *693 examples: default: value: @@ -109772,8 +109835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -109869,8 +109932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *340 - *341 + - *342 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -109879,7 +109942,7 @@ paths: application/json: schema: type: array - items: &693 + items: &694 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -109912,8 +109975,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -109991,8 +110054,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -110086,8 +110149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *340 - *341 + - *342 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -110241,8 +110304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *340 - *341 + - *342 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -110252,7 +110315,7 @@ paths: application/json: schema: type: array - items: *693 + items: *694 examples: default: value: @@ -110285,8 +110348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *340 - *341 + - *342 - name: sha in: path required: true @@ -110342,7 +110405,7 @@ paths: description: Response content: application/json: - schema: *694 + schema: *695 examples: default: value: @@ -110396,8 +110459,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -110429,14 +110492,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *340 - *341 + - *342 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &695 + schema: &696 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -110509,8 +110572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *340 - *341 + - *342 requestBody: required: false content: @@ -110536,7 +110599,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: default: value: @@ -110563,8 +110626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -110584,8 +110647,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -110667,8 +110730,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *340 - *341 + - *342 - name: ref in: path required: true @@ -110704,8 +110767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *340 - *341 + - *342 - *17 - *19 responses: @@ -110717,7 +110780,7 @@ paths: type: array items: *201 examples: - default: *262 + default: *263 headers: Link: *67 '404': *6 @@ -110737,8 +110800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *340 - *341 + - *342 - *19 - *17 responses: @@ -110746,7 +110809,7 @@ paths: description: Response content: application/json: - schema: &696 + schema: &697 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -110758,7 +110821,7 @@ paths: required: - names examples: - default: &697 + default: &698 value: names: - octocat @@ -110781,8 +110844,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -110813,9 +110876,9 @@ paths: description: Response content: application/json: - schema: *696 + schema: *697 examples: - default: *697 + default: *698 '404': *6 '422': *7 x-github: @@ -110836,9 +110899,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *340 - *341 - - &698 + - *342 + - &699 name: per description: The time frame to display results for. in: query @@ -110869,7 +110932,7 @@ paths: - 128 clones: type: array - items: &699 + items: &700 title: Traffic type: object properties: @@ -110956,8 +111019,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -111051,8 +111114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *340 - *341 + - *342 responses: '200': description: Response @@ -111115,9 +111178,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *340 - *341 - - *698 + - *342 + - *699 responses: '200': description: Response @@ -111138,7 +111201,7 @@ paths: - 3782 views: type: array - items: *699 + items: *700 required: - uniques - count @@ -111215,8 +111278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *340 - *341 + - *342 requestBody: required: true content: @@ -111496,8 +111559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *340 - *341 + - *342 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -111520,8 +111583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -111543,8 +111606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -111570,8 +111633,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *340 - *341 + - *342 - name: ref in: path required: true @@ -111663,9 +111726,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -111917,7 +111980,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &700 + text_matches: &701 title: Search Result Text Matches type: array items: @@ -112080,7 +112143,7 @@ paths: enum: - author-date - committer-date - - &701 + - &702 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 @@ -112149,7 +112212,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *405 comment_count: type: integer message: @@ -112168,7 +112231,7 @@ paths: url: type: string format: uri - verification: *523 + verification: *524 required: - author - committer @@ -112183,7 +112246,7 @@ paths: committer: anyOf: - type: 'null' - - *404 + - *405 parents: type: array items: @@ -112200,7 +112263,7 @@ paths: type: number node_id: type: string - text_matches: *700 + text_matches: *701 required: - sha - node_id @@ -112392,7 +112455,7 @@ paths: - interactions - created - updated - - *701 + - *702 - *17 - *19 - name: advanced_search @@ -112506,11 +112569,11 @@ paths: type: - string - 'null' - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: type: string state_reason: @@ -112524,7 +112587,7 @@ paths: milestone: anyOf: - type: 'null' - - *282 + - *283 comments: type: integer created_at: @@ -112538,7 +112601,7 @@ paths: - string - 'null' format: date-time - text_matches: *700 + text_matches: *701 pull_request: type: object properties: @@ -112587,7 +112650,7 @@ paths: timeline_url: type: string format: uri - type: *246 + type: *247 performed_via_github_app: anyOf: - type: 'null' @@ -112848,7 +112911,7 @@ paths: enum: - created - updated - - *701 + - *702 - *17 - *19 responses: @@ -112893,7 +112956,7 @@ paths: - 'null' score: type: number - text_matches: *700 + text_matches: *701 required: - id - node_id @@ -112978,7 +113041,7 @@ paths: - forks - help-wanted-issues - updated - - *701 + - *702 - *17 - *19 responses: @@ -113224,7 +113287,7 @@ paths: - admin - pull - push - text_matches: *700 + text_matches: *701 temp_clone_token: type: string allow_merge_commit: @@ -113532,7 +113595,7 @@ paths: - string - 'null' format: uri - text_matches: *700 + text_matches: *701 related: type: - array @@ -113725,7 +113788,7 @@ paths: - followers - repositories - joined - - *701 + - *702 - *17 - *19 responses: @@ -113835,7 +113898,7 @@ paths: type: - boolean - 'null' - text_matches: *700 + text_matches: *701 blog: type: - string @@ -113917,7 +113980,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &704 + - &705 name: team_id description: The unique identifier of the team. in: path @@ -113929,9 +113992,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 x-github: githubCloudOnly: false @@ -113958,7 +114021,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *704 + - *705 requestBody: required: true content: @@ -114028,16 +114091,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '201': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 '422': *15 '403': *27 @@ -114065,7 +114128,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *704 + - *705 responses: '204': description: Response @@ -114094,7 +114157,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *704 + - *705 - *17 - *19 responses: @@ -114104,9 +114167,9 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: - default: *241 + default: *242 headers: Link: *67 x-github: @@ -114134,7 +114197,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *704 + - *705 - name: role description: Filters members returned by their role in the team. in: query @@ -114155,9 +114218,9 @@ paths: application/json: schema: type: array - items: *705 + items: *706 examples: - default: *706 + default: *707 headers: Link: *67 '404': *6 @@ -114185,7 +114248,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -114222,7 +114285,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -114262,7 +114325,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -114299,16 +114362,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *704 + - *705 - *71 responses: '200': description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-user-is-a-team-maintainer: *707 + response-if-user-is-a-team-maintainer: *708 '404': *6 x-github: githubCloudOnly: false @@ -114341,7 +114404,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *704 + - *705 - *71 requestBody: required: false @@ -114367,9 +114430,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - response-if-users-membership-with-team-is-now-pending: *708 + response-if-users-membership-with-team-is-now-pending: *709 '403': description: Forbidden if team synchronization is set up '422': @@ -114403,7 +114466,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *704 + - *705 - *71 responses: '204': @@ -114431,7 +114494,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *704 + - *705 - *17 - *19 responses: @@ -114443,7 +114506,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 '404': *6 @@ -114473,15 +114536,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *704 - - *340 + - *705 - *341 + - *342 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *709 + schema: *710 examples: alternative-response-with-extra-repository-information: value: @@ -114638,9 +114701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *704 - - *340 + - *705 - *341 + - *342 requestBody: required: false content: @@ -114690,9 +114753,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *704 - - *340 + - *705 - *341 + - *342 responses: '204': description: Response @@ -114717,7 +114780,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *704 + - *705 - *17 - *19 responses: @@ -114729,7 +114792,7 @@ paths: type: array items: *201 examples: - response-if-child-teams-exist: *710 + response-if-child-teams-exist: *711 headers: Link: *67 '404': *6 @@ -114762,7 +114825,7 @@ paths: application/json: schema: oneOf: - - &712 + - &713 title: Private User description: Private User type: object @@ -115012,7 +115075,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *711 + - *712 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -115172,7 +115235,7 @@ paths: description: Response content: application/json: - schema: *712 + schema: *713 examples: default: value: @@ -115375,9 +115438,9 @@ paths: type: integer codespaces: type: array - items: *251 + items: *252 examples: - default: *252 + default: *253 '304': *36 '500': *54 '401': *23 @@ -115516,17 +115579,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '401': *23 '403': *27 '404': *6 @@ -115570,7 +115633,7 @@ paths: type: integer secrets: type: array - items: &713 + items: &714 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -115612,7 +115675,7 @@ paths: - visibility - selected_repositories_url examples: - default: *464 + default: *465 headers: Link: *67 x-github: @@ -115690,7 +115753,7 @@ paths: description: Response content: application/json: - schema: *713 + schema: *714 examples: default: value: @@ -115980,15 +116043,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '304': *36 '500': *54 '401': *23 @@ -116014,7 +116077,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 requestBody: required: false content: @@ -116044,9 +116107,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '401': *23 '403': *27 '404': *6 @@ -116068,7 +116131,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '202': *38 '304': *36 @@ -116097,13 +116160,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '202': description: Response content: application/json: - schema: &714 + schema: &715 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -116156,7 +116219,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &715 + default: &716 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -116188,7 +116251,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *253 + - *254 - name: export_id in: path required: true @@ -116201,9 +116264,9 @@ paths: description: Response content: application/json: - schema: *714 + schema: *715 examples: - default: *715 + default: *716 '404': *6 x-github: githubCloudOnly: false @@ -116224,7 +116287,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *253 + - *254 responses: '200': description: Response @@ -116240,9 +116303,9 @@ paths: type: integer machines: type: array - items: *463 + items: *464 examples: - default: *716 + default: *717 '304': *36 '500': *54 '401': *23 @@ -116271,7 +116334,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *253 + - *254 requestBody: required: true content: @@ -116327,11 +116390,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *343 + repository: *344 machine: anyOf: - type: 'null' - - *463 + - *464 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -117128,15 +117191,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '304': *36 '500': *54 '400': *14 @@ -117168,15 +117231,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *253 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *462 + default: *463 '500': *54 '401': *23 '403': *27 @@ -117206,9 +117269,9 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: &728 + default: &729 value: - id: 197 name: hello_docker @@ -117309,7 +117372,7 @@ paths: application/json: schema: type: array - items: &717 + items: &718 title: Email description: Email type: object @@ -117379,9 +117442,9 @@ paths: application/json: schema: type: array - items: *717 + items: *718 examples: - default: &730 + default: &731 value: - email: octocat@github.com verified: true @@ -117458,7 +117521,7 @@ paths: application/json: schema: type: array - items: *717 + items: *718 examples: default: value: @@ -117716,7 +117779,7 @@ paths: application/json: schema: type: array - items: &718 + items: &719 title: GPG Key description: A unique encryption key type: object @@ -117861,7 +117924,7 @@ paths: - subkeys - revoked examples: - default: &747 + default: &748 value: - id: 3 name: Octocat's GPG Key @@ -117946,9 +118009,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *719 examples: - default: &719 + default: &720 value: id: 3 name: Octocat's GPG Key @@ -118005,7 +118068,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &720 + - &721 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -118017,9 +118080,9 @@ paths: description: Response content: application/json: - schema: *718 + schema: *719 examples: - default: *719 + default: *720 '404': *6 '304': *36 '403': *27 @@ -118042,7 +118105,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *720 + - *721 responses: '204': description: Response @@ -118330,12 +118393,12 @@ paths: application/json: schema: anyOf: - - *238 + - *239 - type: object properties: {} additionalProperties: false examples: - default: *239 + default: *240 '204': description: Response when there are no restrictions x-github: @@ -118359,7 +118422,7 @@ paths: required: true content: application/json: - schema: *534 + schema: *535 examples: default: value: @@ -118370,7 +118433,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -118451,7 +118514,7 @@ paths: - closed - all default: open - - *249 + - *250 - name: sort description: What to sort results by. in: query @@ -118476,7 +118539,7 @@ paths: type: array items: *83 examples: - default: *250 + default: *251 headers: Link: *67 '404': *6 @@ -118509,7 +118572,7 @@ paths: application/json: schema: type: array - items: &721 + items: &722 title: Key description: Key type: object @@ -118612,9 +118675,9 @@ paths: description: Response content: application/json: - schema: *721 + schema: *722 examples: - default: &722 + default: &723 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -118647,15 +118710,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *583 + - *584 responses: '200': description: Response content: application/json: - schema: *721 + schema: *722 examples: - default: *722 + default: *723 '404': *6 '304': *36 '403': *27 @@ -118678,7 +118741,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *583 + - *584 responses: '204': description: Response @@ -118711,7 +118774,7 @@ paths: application/json: schema: type: array - items: &723 + items: &724 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -118790,7 +118853,7 @@ paths: - account - plan examples: - default: &724 + default: &725 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -118852,9 +118915,9 @@ paths: application/json: schema: type: array - items: *723 + items: *724 examples: - default: *724 + default: *725 headers: Link: *67 '304': *36 @@ -118894,7 +118957,7 @@ paths: application/json: schema: type: array - items: *255 + items: *256 examples: default: value: @@ -119008,7 +119071,7 @@ paths: description: Response content: application/json: - schema: *255 + schema: *256 examples: default: value: @@ -119095,9 +119158,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *255 + schema: *256 examples: - default: &725 + default: &726 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -119144,9 +119207,9 @@ paths: processed asynchronously. content: application/json: - schema: *255 + schema: *256 examples: - default: *725 + default: *726 '403': *27 '404': *6 '422': *15 @@ -119175,7 +119238,7 @@ paths: application/json: schema: type: array - items: *257 + items: *258 examples: default: value: @@ -119437,7 +119500,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -119617,7 +119680,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *258 + - *259 - name: exclude in: query required: false @@ -119630,7 +119693,7 @@ paths: description: Response content: application/json: - schema: *257 + schema: *258 examples: default: value: @@ -119824,7 +119887,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *258 + - *259 responses: '302': description: Response @@ -119850,7 +119913,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *258 + - *259 responses: '204': description: Response @@ -119879,8 +119942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *258 - - *726 + - *259 + - *727 responses: '204': description: Response @@ -119904,7 +119967,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *258 + - *259 - *17 - *19 responses: @@ -119916,7 +119979,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 '404': *6 @@ -120013,7 +120076,7 @@ paths: - docker - nuget - container - - *727 + - *728 - *19 - *17 responses: @@ -120023,10 +120086,10 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *728 - '400': *729 + default: *729 + '400': *730 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120046,16 +120109,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *265 - *266 + - *267 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: &748 + default: &749 value: id: 40201 name: octo-name @@ -120168,8 +120231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *265 - *266 + - *267 responses: '204': description: Response @@ -120199,8 +120262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *265 - *266 + - *267 - name: token description: package token schema: @@ -120232,8 +120295,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: - - *265 - *266 + - *267 - *19 - *17 - name: state @@ -120253,7 +120316,7 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: default: value: @@ -120302,15 +120365,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -120346,9 +120409,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 responses: '204': description: Response @@ -120378,9 +120441,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 responses: '204': description: Response @@ -120417,9 +120480,9 @@ paths: application/json: schema: type: array - items: *717 + items: *718 examples: - default: *730 + default: *731 headers: Link: *67 '304': *36 @@ -120532,7 +120595,7 @@ paths: type: array items: *79 examples: - default: &737 + default: &738 summary: Default response value: - id: 1296269 @@ -120850,9 +120913,9 @@ paths: description: Response content: application/json: - schema: *343 + schema: *344 examples: - default: *345 + default: *346 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -120896,9 +120959,9 @@ paths: application/json: schema: type: array - items: *537 + items: *538 examples: - default: *731 + default: *732 headers: Link: *67 '304': *36 @@ -120921,7 +120984,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *242 + - *243 responses: '204': description: Response @@ -120950,7 +121013,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *242 + - *243 responses: '204': description: Response @@ -120983,7 +121046,7 @@ paths: application/json: schema: type: array - items: &732 + items: &733 title: Social account description: Social media account type: object @@ -121000,7 +121063,7 @@ paths: - provider - url examples: - default: &733 + default: &734 value: - provider: twitter url: https://twitter.com/github @@ -121063,9 +121126,9 @@ paths: application/json: schema: type: array - items: *732 + items: *733 examples: - default: *733 + default: *734 '422': *15 '304': *36 '404': *6 @@ -121153,7 +121216,7 @@ paths: application/json: schema: type: array - items: &734 + items: &735 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -121173,7 +121236,7 @@ paths: - title - created_at examples: - default: &765 + default: &766 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -121238,9 +121301,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: &735 + default: &736 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -121270,7 +121333,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: - - &736 + - &737 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -121282,9 +121345,9 @@ paths: description: Response content: application/json: - schema: *734 + schema: *735 examples: - default: *735 + default: *736 '404': *6 '304': *36 '403': *27 @@ -121307,7 +121370,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: - - *736 + - *737 responses: '204': description: Response @@ -121336,7 +121399,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &766 + - &767 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 @@ -121361,11 +121424,11 @@ paths: type: array items: *79 examples: - default-response: *737 + default-response: *738 application/vnd.github.v3.star+json: schema: type: array - items: &767 + items: &768 title: Starred Repository description: Starred Repository type: object @@ -121521,8 +121584,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: - - *340 - *341 + - *342 responses: '204': description: Response if this repository is starred by you @@ -121550,8 +121613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -121575,8 +121638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *340 - *341 + - *342 responses: '204': description: Response @@ -121611,7 +121674,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 '304': *36 @@ -121648,7 +121711,7 @@ paths: application/json: schema: type: array - items: *336 + items: *337 examples: default: value: @@ -121734,10 +121797,10 @@ paths: application/json: schema: oneOf: + - *713 - *712 - - *711 examples: - default-response: &741 + default-response: &742 summary: Default response value: login: octocat @@ -121772,7 +121835,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &742 + response-with-git-hub-plan-information: &743 summary: Response with GitHub plan information value: login: octocat @@ -121829,14 +121892,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &739 + - &740 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *281 + - *282 requestBody: required: true description: Details of the draft item to create in the project. @@ -121870,9 +121933,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: - draft_issue: *287 + draft_issue: *288 '304': *36 '403': *27 '401': *23 @@ -121895,7 +121958,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *738 + - *739 - *17 responses: '200': @@ -121930,8 +121993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *739 - - *281 + - *740 + - *282 requestBody: required: true content: @@ -121970,6 +122033,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + examples: + - 123 + - asc + - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + examples: + - 456 required: - name - layout @@ -122005,17 +122109,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *740 + schema: *741 examples: table_view: summary: Response for creating a table view - value: *291 + value: *292 board_view: summary: Response for creating a board view with filter - value: *291 + value: *292 roadmap_view: summary: Response for creating a roadmap view - value: *291 + value: *292 '304': *36 '403': *27 '401': *23 @@ -122057,11 +122161,11 @@ paths: application/json: schema: oneOf: + - *713 - *712 - - *711 examples: - default-response: *741 - response-with-git-hub-plan-information: *742 + default-response: *742 + response-with-git-hub-plan-information: *743 '404': *6 x-github: githubCloudOnly: false @@ -122111,8 +122215,8 @@ paths: required: - subject_digests examples: - default: *743 - withPredicateType: *744 + default: *744 + withPredicateType: *745 responses: '200': description: Response @@ -122166,7 +122270,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *745 + default: *746 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -122386,7 +122490,7 @@ paths: initiator: type: string examples: - default: *400 + default: *401 '201': description: Response content: @@ -122684,7 +122788,7 @@ paths: application/json: schema: *197 examples: - default: &746 + default: &747 summary: Example response for a user copilot space value: id: 42 @@ -122785,7 +122889,7 @@ paths: application/json: schema: *197 examples: - default: *746 + default: *747 '403': *27 '404': *6 x-github: @@ -122911,7 +123015,7 @@ paths: application/json: schema: *197 examples: - default: *746 + default: *747 '403': *27 '404': *6 '422': *15 @@ -123677,9 +123781,9 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *728 + default: *729 '403': *27 '401': *23 x-github: @@ -124063,9 +124167,9 @@ paths: application/json: schema: type: array - items: *718 + items: *719 examples: - default: *747 + default: *748 headers: Link: *67 x-github: @@ -124169,7 +124273,7 @@ paths: application/json: schema: *20 examples: - default: *533 + default: *534 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124294,7 +124398,7 @@ paths: - docker - nuget - container - - *727 + - *728 - *71 - *19 - *17 @@ -124305,12 +124409,12 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: - default: *728 + default: *729 '403': *27 '401': *23 - '400': *729 + '400': *730 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124330,17 +124434,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *265 - *266 + - *267 - *71 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *748 + default: *749 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -124361,8 +124465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *265 - *266 + - *267 - *71 responses: '204': @@ -124395,8 +124499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *265 - *266 + - *267 - *71 - name: token description: package token @@ -124429,8 +124533,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: - - *265 - *266 + - *267 - *71 responses: '200': @@ -124439,7 +124543,7 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: default: value: @@ -124497,16 +124601,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *265 - *266 - - *268 + - *267 + - *269 - *71 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -124541,10 +124645,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *265 - *266 + - *267 - *71 - - *268 + - *269 responses: '204': description: Response @@ -124576,10 +124680,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *265 - *266 + - *267 - *71 - - *268 + - *269 responses: '204': description: Response @@ -124620,9 +124724,9 @@ paths: application/json: schema: type: array - items: *279 + items: *280 examples: - default: *280 + default: *281 headers: Link: *67 '304': *36 @@ -124644,16 +124748,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *281 + - *282 - *71 responses: '200': description: Response content: application/json: - schema: *279 + schema: *280 examples: - default: *280 + default: *281 headers: Link: *67 '304': *36 @@ -124675,7 +124779,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *281 + - *282 - *71 - *17 - *46 @@ -124687,9 +124791,9 @@ paths: application/json: schema: type: array - items: *284 + items: *285 examples: - default: *749 + default: *750 headers: Link: *67 '304': *36 @@ -124711,7 +124815,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *71 - - *281 + - *282 requestBody: required: true content: @@ -124749,7 +124853,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *750 + items: *751 required: - name - data_type @@ -124765,7 +124869,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *751 + iteration_configuration: *752 required: - name - data_type @@ -124787,20 +124891,20 @@ paths: value: name: Due date data_type: date - single_select_field: *752 - iteration_field: *753 + single_select_field: *753 + iteration_field: *754 responses: '201': description: Response content: application/json: - schema: *284 + schema: *285 examples: - text_field: *754 - number_field: *755 - date_field: *756 - single_select_field: *757 - iteration_field: *758 + text_field: *755 + number_field: *756 + date_field: *757 + single_select_field: *758 + iteration_field: *759 '304': *36 '403': *27 '401': *23 @@ -124821,17 +124925,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *281 - - *759 + - *282 + - *760 - *71 responses: '200': description: Response content: application/json: - schema: *284 + schema: *285 examples: - default: *760 + default: *761 headers: Link: *67 '304': *36 @@ -124854,7 +124958,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *281 + - *282 - *71 - *46 - *47 @@ -124887,9 +124991,9 @@ paths: application/json: schema: type: array - items: *288 + items: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -124911,7 +125015,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *71 - - *281 + - *282 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -124981,22 +125085,22 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *287 + value: *288 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *287 + value: *288 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *287 + value: *288 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *287 + value: *288 '304': *36 '403': *27 '401': *23 @@ -125016,9 +125120,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *281 + - *282 - *71 - - *290 + - *291 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -125038,9 +125142,9 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -125061,9 +125165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *281 + - *282 - *71 - - *290 + - *291 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -125136,13 +125240,13 @@ paths: description: Response content: application/json: - schema: *288 + schema: *289 examples: - text_field: *289 - number_field: *289 - date_field: *289 - single_select_field: *289 - iteration_field: *289 + text_field: *290 + number_field: *290 + date_field: *290 + single_select_field: *290 + iteration_field: *290 '401': *23 '403': *27 '404': *6 @@ -125162,9 +125266,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *281 + - *282 - *71 - - *290 + - *291 responses: '204': description: Response @@ -125186,9 +125290,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *281 + - *282 - *71 - - *761 + - *762 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -125214,9 +125318,9 @@ paths: application/json: schema: type: array - items: *288 + items: *289 examples: - default: *289 + default: *290 headers: Link: *67 '304': *36 @@ -125437,7 +125541,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -125727,7 +125831,7 @@ paths: parameters: - *71 - *117 - - *762 + - *763 - *119 responses: '200': @@ -125826,9 +125930,9 @@ paths: - *117 - *118 - *119 - - *763 - - *122 - *764 + - *122 + - *765 responses: '200': description: Response when getting a billing usage summary @@ -125962,9 +126066,9 @@ paths: application/json: schema: type: array - items: *732 + items: *733 examples: - default: *733 + default: *734 headers: Link: *67 x-github: @@ -125994,9 +126098,9 @@ paths: application/json: schema: type: array - items: *734 + items: *735 examples: - default: *765 + default: *766 headers: Link: *67 x-github: @@ -126021,7 +126125,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *71 - - *766 + - *767 - *61 - *17 - *19 @@ -126033,11 +126137,11 @@ paths: schema: anyOf: - type: array - items: *767 + items: *768 - type: array items: *79 examples: - default-response: *737 + default-response: *738 headers: Link: *67 x-github: @@ -126068,7 +126172,7 @@ paths: type: array items: *156 examples: - default: *269 + default: *270 headers: Link: *67 x-github: @@ -126197,7 +126301,7 @@ webhooks: type: string enum: - disabled - enterprise: &768 + enterprise: &769 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -126266,7 +126370,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &769 + installation: &770 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -126287,7 +126391,7 @@ webhooks: required: - id - node_id - organization: &770 + organization: &771 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -126360,7 +126464,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &771 + repository: &772 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -127300,10 +127404,10 @@ webhooks: type: string enum: - enabled - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -127379,11 +127483,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - rule: &772 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + rule: &773 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) @@ -127606,11 +127710,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - rule: *772 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + rule: *773 sender: *4 required: - action @@ -127798,11 +127902,11 @@ webhooks: - everyone required: - from - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - rule: *772 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + rule: *773 sender: *4 required: - action @@ -127886,7 +127990,7 @@ webhooks: type: string enum: - completed - check_run: &774 + check_run: &775 title: CheckRun description: A check performed on the code of a given code change type: object @@ -127996,7 +128100,7 @@ webhooks: - examples: - neutral - deployment: *773 + deployment: *774 details_url: type: string examples: @@ -128094,10 +128198,10 @@ webhooks: - output - app - pull_requests - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 sender: *4 required: - check_run @@ -128488,11 +128592,11 @@ webhooks: type: string enum: - created - check_run: *774 - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + check_run: *775 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 sender: *4 required: - check_run @@ -128886,11 +128990,11 @@ webhooks: type: string enum: - requested_action - check_run: *774 - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + check_run: *775 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 requested_action: description: The action requested by the user. type: object @@ -129293,11 +129397,11 @@ webhooks: type: string enum: - rerequested - check_run: *774 - installation: *769 - enterprise: *768 - organization: *770 - repository: *771 + check_run: *775 + installation: *770 + enterprise: *769 + organization: *771 + repository: *772 sender: *4 required: - check_run @@ -130282,10 +130386,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -130999,10 +131103,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -131710,10 +131814,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -131882,7 +131986,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132034,20 +132138,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &775 + commit_oid: &776 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: *768 - installation: *769 - organization: *770 - ref: &776 + enterprise: *769 + installation: *770 + organization: *771 + ref: &777 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: *771 + repository: *772 sender: *4 required: - action @@ -132214,7 +132318,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -132455,12 +132559,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -132558,7 +132662,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -132743,12 +132847,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -132917,7 +133021,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -133094,12 +133198,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -133200,7 +133304,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -133389,9 +133493,9 @@ webhooks: type: - string - 'null' - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -133399,7 +133503,7 @@ webhooks: type: - string - 'null' - repository: *771 + repository: *772 sender: *4 required: - action @@ -133498,7 +133602,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -133645,12 +133749,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *775 - enterprise: *768 - installation: *769 - organization: *770 - ref: *776 - repository: *771 + commit_oid: *776 + enterprise: *769 + installation: *770 + organization: *771 + ref: *777 + repository: *772 sender: *4 required: - action @@ -133819,7 +133923,7 @@ webhooks: required: - login - id - dismissed_comment: *433 + dismissed_comment: *434 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -133971,10 +134075,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -134234,10 +134338,10 @@ webhooks: - updated_at - author_association - body - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -134318,18 +134422,18 @@ webhooks: type: - string - 'null' - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *770 - pusher_type: &777 + organization: *771 + pusher_type: &778 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &778 + ref: &779 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -134339,7 +134443,7 @@ webhooks: enum: - tag - branch - repository: *771 + repository: *772 sender: *4 required: - ref @@ -134421,10 +134525,10 @@ webhooks: type: string enum: - created - definition: *292 - enterprise: *768 - installation: *769 - organization: *770 + definition: *293 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -134509,9 +134613,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -134588,10 +134692,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *292 - enterprise: *768 - installation: *769 - organization: *770 + definition: *293 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -134668,10 +134772,10 @@ webhooks: type: string enum: - updated - definition: *292 - enterprise: *768 - installation: *769 - organization: *770 + definition: *293 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -134748,19 +134852,19 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - repository: *771 - organization: *770 + enterprise: *769 + installation: *770 + repository: *772 + organization: *771 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *296 + items: *297 old_property_values: type: array description: The old custom property values for the repository. - items: *296 + items: *297 required: - action - repository @@ -134836,18 +134940,18 @@ webhooks: title: delete event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - pusher_type: *777 - ref: *778 + enterprise: *769 + installation: *770 + organization: *771 + pusher_type: *778 + ref: *779 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *771 + repository: *772 sender: *4 required: - ref @@ -134927,11 +135031,11 @@ webhooks: type: string enum: - assignees_changed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -135011,11 +135115,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -135096,11 +135200,11 @@ webhooks: type: string enum: - auto_reopened - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -135181,11 +135285,11 @@ webhooks: type: string enum: - created - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -135264,11 +135368,11 @@ webhooks: type: string enum: - dismissed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -135347,11 +135451,11 @@ webhooks: type: string enum: - fixed - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -135431,11 +135535,11 @@ webhooks: type: string enum: - reintroduced - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -135514,11 +135618,11 @@ webhooks: type: string enum: - reopened - alert: *493 - installation: *769 - organization: *770 - enterprise: *768 - repository: *771 + alert: *494 + installation: *770 + organization: *771 + enterprise: *769 + repository: *772 sender: *4 required: - action @@ -135595,9 +135699,9 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - key: &779 + enterprise: *769 + installation: *770 + key: &780 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -135635,8 +135739,8 @@ webhooks: - verified - created_at - read_only - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -135713,11 +135817,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - key: *779 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + key: *780 + organization: *771 + repository: *772 sender: *4 required: - action @@ -136284,12 +136388,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: &783 + workflow: &784 title: Workflow type: - object @@ -137040,13 +137144,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *500 + - *501 pull_requests: type: array - items: *602 - repository: *771 - organization: *770 - installation: *769 + items: *603 + repository: *772 + organization: *771 + installation: *770 sender: *4 responses: '200': @@ -137117,7 +137221,7 @@ webhooks: type: string enum: - approved - approver: &780 + approver: &781 type: object properties: avatar_url: @@ -137160,11 +137264,11 @@ webhooks: type: string comment: type: string - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - reviewers: &781 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + reviewers: &782 type: array items: type: object @@ -137245,7 +137349,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &782 + workflow_job_run: &783 type: object properties: conclusion: @@ -137991,18 +138095,18 @@ webhooks: type: string enum: - rejected - approver: *780 + approver: *781 comment: type: string - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - reviewers: *781 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + reviewers: *782 sender: *4 since: type: string - workflow_job_run: *782 + workflow_job_run: *783 workflow_job_runs: type: array items: @@ -138719,13 +138823,13 @@ webhooks: type: string enum: - requested - enterprise: *768 + enterprise: *769 environment: type: string - installation: *769 - organization: *770 - repository: *771 - requestor: &788 + installation: *770 + organization: *771 + repository: *772 + requestor: &789 title: User type: - object @@ -140658,12 +140762,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - workflow: *783 + workflow: *784 workflow_run: title: Deployment Workflow Run type: @@ -141354,7 +141458,7 @@ webhooks: type: string enum: - answered - answer: &786 + answer: &787 type: object properties: author_association: @@ -141514,11 +141618,11 @@ webhooks: - created_at - updated_at - body - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141645,11 +141749,11 @@ webhooks: - from required: - category - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141732,11 +141836,11 @@ webhooks: type: string enum: - closed - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -141818,7 +141922,7 @@ webhooks: type: string enum: - created - comment: &785 + comment: &786 type: object properties: author_association: @@ -141978,11 +142082,11 @@ webhooks: - updated_at - body - reactions - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142065,12 +142169,12 @@ webhooks: type: string enum: - deleted - comment: *785 - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + comment: *786 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142165,12 +142269,12 @@ webhooks: - from required: - body - comment: *785 - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + comment: *786 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142254,11 +142358,11 @@ webhooks: type: string enum: - created - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142340,11 +142444,11 @@ webhooks: type: string enum: - deleted - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142444,11 +142548,11 @@ webhooks: type: string required: - from - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142530,10 +142634,10 @@ webhooks: type: string enum: - labeled - discussion: *784 - enterprise: *768 - installation: *769 - label: &787 + discussion: *785 + enterprise: *769 + installation: *770 + label: &788 title: Label type: object properties: @@ -142566,8 +142670,8 @@ webhooks: - color - default - description - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142650,11 +142754,11 @@ webhooks: type: string enum: - locked - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142736,11 +142840,11 @@ webhooks: type: string enum: - pinned - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142822,11 +142926,11 @@ webhooks: type: string enum: - reopened - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -142911,16 +143015,16 @@ webhooks: changes: type: object properties: - new_discussion: *784 - new_repository: *771 + new_discussion: *785 + new_repository: *772 required: - new_discussion - new_repository - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -143003,10 +143107,10 @@ webhooks: type: string enum: - unanswered - discussion: *784 - old_answer: *786 - organization: *770 - repository: *771 + discussion: *785 + old_answer: *787 + organization: *771 + repository: *772 sender: *4 required: - action @@ -143088,12 +143192,12 @@ webhooks: type: string enum: - unlabeled - discussion: *784 - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -143176,11 +143280,11 @@ webhooks: type: string enum: - unlocked - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -143262,11 +143366,11 @@ webhooks: type: string enum: - unpinned - discussion: *784 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + discussion: *785 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -143339,7 +143443,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *768 + enterprise: *769 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -144017,9 +144121,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - forkee @@ -144165,9 +144269,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pages: description: The pages that were updated. type: array @@ -144205,7 +144309,7 @@ webhooks: - action - sha - html_url - repository: *771 + repository: *772 sender: *4 required: - pages @@ -144281,10 +144385,10 @@ webhooks: type: string enum: - created - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: &789 + organization: *771 + repositories: &790 description: An array of repository objects that the installation can access. type: array @@ -144310,8 +144414,8 @@ webhooks: - name - full_name - private - repository: *771 - requester: *788 + repository: *772 + requester: *789 sender: *4 required: - action @@ -144386,11 +144490,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -144467,11 +144571,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -144548,10 +144652,10 @@ webhooks: type: string enum: - added - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories_added: &790 + organization: *771 + repositories_added: &791 description: An array of repository objects, which were added to the installation. type: array @@ -144597,15 +144701,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *771 - repository_selection: &791 + repository: *772 + repository_selection: &792 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *788 + requester: *789 sender: *4 required: - action @@ -144684,10 +144788,10 @@ webhooks: type: string enum: - removed - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories_added: *790 + organization: *771 + repositories_added: *791 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -144714,9 +144818,9 @@ webhooks: - name - full_name - private - repository: *771 - repository_selection: *791 - requester: *788 + repository: *772 + repository_selection: *792 + requester: *789 sender: *4 required: - action @@ -144795,11 +144899,11 @@ webhooks: type: string enum: - suspend - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -144981,10 +145085,10 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 target_type: type: string @@ -145063,11 +145167,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *768 + enterprise: *769 installation: *20 - organization: *770 - repositories: *789 - repository: *771 + organization: *771 + repositories: *790 + repository: *772 requester: type: - 'null' @@ -145233,11 +145337,11 @@ webhooks: pin: anyOf: - type: 'null' - - *568 + - *569 minimized: anyOf: - type: 'null' - - *569 + - *570 user: title: User type: @@ -145323,8 +145427,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -146136,8 +146240,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146154,7 +146258,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -146498,8 +146602,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -146579,7 +146683,7 @@ webhooks: type: string enum: - deleted - comment: &792 + comment: &793 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -146736,11 +146840,11 @@ webhooks: pin: anyOf: - type: 'null' - - *568 + - *569 minimized: anyOf: - type: 'null' - - *569 + - *570 required: - url - html_url @@ -146754,8 +146858,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -147563,8 +147667,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147581,7 +147685,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -147927,8 +148031,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -148008,7 +148112,7 @@ webhooks: type: string enum: - edited - changes: &816 + changes: &817 description: The changes to the comment. type: object properties: @@ -148020,9 +148124,9 @@ webhooks: type: string required: - from - comment: *792 - enterprise: *768 - installation: *769 + comment: *793 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -148833,8 +148937,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148851,7 +148955,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -149195,8 +149299,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -149277,9 +149381,9 @@ webhooks: type: string enum: - pinned - comment: *792 - enterprise: *768 - installation: *769 + comment: *793 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -150092,8 +150196,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150110,7 +150214,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -150456,8 +150560,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -150537,9 +150641,9 @@ webhooks: type: string enum: - unpinned - comment: *792 - enterprise: *768 - installation: *769 + comment: *793 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -151352,8 +151456,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151370,7 +151474,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -151716,8 +151820,8 @@ webhooks: - state - locked - assignee - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -151806,9 +151910,9 @@ webhooks: type: number blocking_issue: *83 blocking_issue_repo: *79 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -151897,9 +152001,9 @@ webhooks: type: number blocking_issue: *83 blocking_issue_repo: *79 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -151987,9 +152091,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -152078,9 +152182,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -152160,10 +152264,10 @@ webhooks: type: string enum: - assigned - assignee: *788 - enterprise: *768 - installation: *769 - issue: &793 + assignee: *789 + enterprise: *769 + installation: *770 + issue: &794 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -152974,11 +153078,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152995,7 +153099,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -153098,8 +153202,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -153179,8 +153283,8 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -153996,11 +154100,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154017,7 +154121,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -154263,8 +154367,8 @@ webhooks: required: - state - closed_at - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -154343,8 +154447,8 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155151,11 +155255,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155172,7 +155276,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -155274,8 +155378,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -155354,8 +155458,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156185,11 +156289,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156206,7 +156310,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -156287,7 +156391,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &794 + milestone: &795 title: Milestone description: A collection of related issues and pull requests. type: object @@ -156430,8 +156534,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -156530,8 +156634,8 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -157342,11 +157446,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157360,7 +157464,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *247 title: description: Title of the issue type: string @@ -157466,9 +157570,9 @@ webhooks: - active_lock_reason - body - reactions - label: *787 - organization: *770 - repository: *771 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -157548,9 +157652,9 @@ webhooks: type: string enum: - field_added - enterprise: *768 - installation: *769 - issue: *793 + enterprise: *769 + installation: *770 + issue: *794 issue_field: type: object description: The issue field whose value was set or updated on the @@ -157716,8 +157820,8 @@ webhooks: - id required: - from - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -157797,9 +157901,9 @@ webhooks: type: string enum: - field_removed - enterprise: *768 - installation: *769 - issue: *793 + enterprise: *769 + installation: *770 + issue: *794 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -157886,8 +157990,8 @@ webhooks: - 'null' required: - id - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -157967,8 +158071,8 @@ webhooks: type: string enum: - labeled - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158778,11 +158882,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158796,7 +158900,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *247 title: description: Title of the issue type: string @@ -158902,9 +159006,9 @@ webhooks: - active_lock_reason - body - reactions - label: *787 - organization: *770 - repository: *771 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -158984,8 +159088,8 @@ webhooks: type: string enum: - locked - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159820,11 +159924,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159838,7 +159942,7 @@ webhooks: timeline_url: type: string format: uri - type: *246 + type: *247 title: description: Title of the issue type: string @@ -159921,8 +160025,8 @@ webhooks: format: uri user_view_type: type: string - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -160001,8 +160105,8 @@ webhooks: type: string enum: - milestoned - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -160831,11 +160935,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160852,7 +160956,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -160932,9 +161036,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *794 - organization: *770 - repository: *771 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -161821,11 +161925,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161925,7 +162029,7 @@ webhooks: required: - login - id - type: *246 + type: *247 required: - id - number @@ -162417,8 +162521,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -163225,11 +163329,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163246,7 +163350,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -163352,8 +163456,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -163433,9 +163537,9 @@ webhooks: type: string enum: - pinned - enterprise: *768 - installation: *769 - issue: &795 + enterprise: *769 + installation: *770 + issue: &796 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -164240,11 +164344,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164261,7 +164365,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -164363,8 +164467,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -164443,8 +164547,8 @@ webhooks: type: string enum: - reopened - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -165277,11 +165381,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165378,9 +165482,9 @@ webhooks: format: uri user_view_type: type: string - type: *246 - organization: *770 - repository: *771 + type: *247 + organization: *771 + repository: *772 sender: *4 required: - action @@ -166268,11 +166372,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166289,7 +166393,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -166882,11 +166986,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *768 - installation: *769 - issue: *795 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *796 + organization: *771 + repository: *772 sender: *4 required: - action @@ -166966,12 +167070,12 @@ webhooks: type: string enum: - typed - enterprise: *768 - installation: *769 - issue: *793 - type: *246 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + type: *247 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167052,7 +167156,7 @@ webhooks: type: string enum: - unassigned - assignee: &819 + assignee: &820 title: User type: - object @@ -167124,11 +167228,11 @@ webhooks: required: - login - id - enterprise: *768 - installation: *769 - issue: *793 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167207,12 +167311,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *768 - installation: *769 - issue: *793 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -167292,8 +167396,8 @@ webhooks: type: string enum: - unlocked - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -168126,11 +168230,11 @@ webhooks: anyOf: - type: 'null' - *84 - sub_issues_summary: *702 - issue_dependencies_summary: *703 + sub_issues_summary: *703 + issue_dependencies_summary: *704 issue_field_values: type: array - items: *550 + items: *551 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168147,7 +168251,7 @@ webhooks: title: description: Title of the issue type: string - type: *246 + type: *247 updated_at: type: string format: date-time @@ -168227,8 +168331,8 @@ webhooks: format: uri user_view_type: type: string - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168308,11 +168412,11 @@ webhooks: type: string enum: - unpinned - enterprise: *768 - installation: *769 - issue: *795 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *796 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168391,12 +168495,12 @@ webhooks: type: string enum: - untyped - enterprise: *768 - installation: *769 - issue: *793 - type: *246 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + issue: *794 + type: *247 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168476,11 +168580,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168558,11 +168662,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168672,11 +168776,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - label: *787 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + label: *788 + organization: *771 + repository: *772 sender: *4 required: - action @@ -168758,9 +168862,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: &796 + enterprise: *769 + installation: *770 + marketplace_purchase: &797 title: Marketplace Purchase type: object required: @@ -168848,8 +168952,8 @@ webhooks: type: integer unit_count: type: integer - organization: *770 - previous_marketplace_purchase: &797 + organization: *771 + previous_marketplace_purchase: &798 title: Marketplace Purchase type: object properties: @@ -168933,7 +169037,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *771 + repository: *772 sender: *4 required: - action @@ -169013,10 +169117,10 @@ webhooks: - changed effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: *796 - organization: *770 + enterprise: *769 + installation: *770 + marketplace_purchase: *797 + organization: *771 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -169104,7 +169208,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *771 + repository: *772 sender: *4 required: - action @@ -169186,10 +169290,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: *796 - organization: *770 + enterprise: *769 + installation: *770 + marketplace_purchase: *797 + organization: *771 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -169275,7 +169379,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *771 + repository: *772 sender: *4 required: - action @@ -169356,8 +169460,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 marketplace_purchase: title: Marketplace Purchase type: object @@ -169443,9 +169547,9 @@ webhooks: type: integer unit_count: type: integer - organization: *770 - previous_marketplace_purchase: *797 - repository: *771 + organization: *771 + previous_marketplace_purchase: *798 + repository: *772 sender: *4 required: - action @@ -169525,12 +169629,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *768 - installation: *769 - marketplace_purchase: *796 - organization: *770 - previous_marketplace_purchase: *797 - repository: *771 + enterprise: *769 + installation: *770 + marketplace_purchase: *797 + organization: *771 + previous_marketplace_purchase: *798 + repository: *772 sender: *4 required: - action @@ -169632,11 +169736,11 @@ webhooks: type: string required: - to - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169738,11 +169842,11 @@ webhooks: type: - string - 'null' - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169821,11 +169925,11 @@ webhooks: type: string enum: - removed - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 sender: *4 required: - action @@ -169903,11 +170007,11 @@ webhooks: type: string enum: - added - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 scope: description: The scope of the membership. Currently, can only be `team`. @@ -169985,7 +170089,7 @@ webhooks: required: - login - id - team: &798 + team: &799 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -170215,11 +170319,11 @@ webhooks: type: string enum: - removed - enterprise: *768 - installation: *769 - member: *788 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + member: *789 + organization: *771 + repository: *772 scope: description: The scope of the membership. Currently, can only be `team`. @@ -170298,7 +170402,7 @@ webhooks: required: - login - id - team: *798 + team: *799 required: - action - scope @@ -170380,8 +170484,8 @@ webhooks: type: string enum: - checks_requested - installation: *769 - merge_group: &799 + installation: *770 + merge_group: &800 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -170400,15 +170504,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *420 + head_commit: *421 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170494,10 +170598,10 @@ webhooks: - merged - invalidated - dequeued - installation: *769 - merge_group: *799 - organization: *770 - repository: *771 + installation: *770 + merge_group: *800 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170570,7 +170674,7 @@ webhooks: type: string enum: - deleted - enterprise: *768 + enterprise: *769 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -170679,12 +170783,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *769 - organization: *770 + installation: *770 + organization: *771 repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -170764,11 +170868,11 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 - milestone: *794 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -170847,9 +170951,9 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - milestone: &800 + enterprise: *769 + installation: *770 + milestone: &801 title: Milestone description: A collection of related issues and pull requests. type: object @@ -170991,8 +171095,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -171071,11 +171175,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - milestone: *794 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -171185,11 +171289,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - milestone: *794 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *795 + organization: *771 + repository: *772 sender: *4 required: - action @@ -171269,11 +171373,11 @@ webhooks: type: string enum: - opened - enterprise: *768 - installation: *769 - milestone: *800 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + milestone: *801 + organization: *771 + repository: *772 sender: *4 required: - action @@ -171352,11 +171456,11 @@ webhooks: type: string enum: - blocked - blocked_user: *788 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + blocked_user: *789 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -171435,11 +171539,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *788 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + blocked_user: *789 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -171518,9 +171622,9 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - membership: &801 + enterprise: *769 + installation: *770 + membership: &802 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -171630,8 +171734,8 @@ webhooks: - role - organization_url - user - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 required: - action @@ -171709,11 +171813,11 @@ webhooks: type: string enum: - member_added - enterprise: *768 - installation: *769 - membership: *801 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + membership: *802 + organization: *771 + repository: *772 sender: *4 required: - action @@ -171792,8 +171896,8 @@ webhooks: type: string enum: - member_invited - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -171915,10 +172019,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 - user: *788 + user: *789 required: - action - invitation @@ -171996,11 +172100,11 @@ webhooks: type: string enum: - member_removed - enterprise: *768 - installation: *769 - membership: *801 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + membership: *802 + organization: *771 + repository: *772 sender: *4 required: - action @@ -172087,11 +172191,11 @@ webhooks: properties: from: type: string - enterprise: *768 - installation: *769 - membership: *801 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + membership: *802 + organization: *771 + repository: *772 sender: *4 required: - action @@ -172168,9 +172272,9 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 package: description: Information about the package. type: object @@ -172693,7 +172797,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &802 + items: &803 title: Ruby Gems metadata type: object properties: @@ -172790,7 +172894,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -172866,9 +172970,9 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 package: description: Information about the package. type: object @@ -173230,7 +173334,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *802 + items: *803 source_url: type: string format: uri @@ -173301,7 +173405,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -173481,12 +173585,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *768 + enterprise: *769 id: type: integer - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - id @@ -173563,7 +173667,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &803 + personal_access_token_request: &804 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -173713,10 +173817,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *768 - organization: *770 + enterprise: *769 + organization: *771 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -173793,11 +173897,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *803 - enterprise: *768 - organization: *770 + personal_access_token_request: *804 + enterprise: *769 + organization: *771 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -173873,11 +173977,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *803 - enterprise: *768 - organization: *770 + personal_access_token_request: *804 + enterprise: *769 + organization: *771 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -173952,11 +174056,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *803 - organization: *770 - enterprise: *768 + personal_access_token_request: *804 + organization: *771 + enterprise: *769 sender: *4 - installation: *769 + installation: *770 required: - action - personal_access_token_request @@ -174061,7 +174165,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *804 + last_response: *805 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -174093,8 +174197,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 zen: description: Random string of GitHub zen. @@ -174339,10 +174443,10 @@ webhooks: - from required: - note - enterprise: *768 - installation: *769 - organization: *770 - project_card: &805 + enterprise: *769 + installation: *770 + organization: *771 + project_card: &806 title: Project Card type: object properties: @@ -174465,7 +174569,7 @@ webhooks: - creator - created_at - updated_at - repository: *771 + repository: *772 sender: *4 required: - action @@ -174546,11 +174650,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - project_card: *805 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_card: *806 + repository: *772 sender: *4 required: - action @@ -174630,9 +174734,9 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 project_card: title: Project Card type: object @@ -174762,7 +174866,7 @@ webhooks: repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -174856,11 +174960,11 @@ webhooks: - from required: - note - enterprise: *768 - installation: *769 - organization: *770 - project_card: *805 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_card: *806 + repository: *772 sender: *4 required: - action @@ -174954,9 +175058,9 @@ webhooks: - from required: - column_id - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 project_card: allOf: - title: Project Card @@ -175153,7 +175257,7 @@ webhooks: type: string required: - after_id - repository: *771 + repository: *772 sender: *4 required: - action @@ -175233,10 +175337,10 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 - organization: *770 - project: &807 + enterprise: *769 + installation: *770 + organization: *771 + project: &808 title: Project type: object properties: @@ -175363,7 +175467,7 @@ webhooks: - creator - created_at - updated_at - repository: *771 + repository: *772 sender: *4 required: - action @@ -175443,10 +175547,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - project_column: &806 + enterprise: *769 + installation: *770 + organization: *771 + project_column: &807 title: Project Column type: object properties: @@ -175486,7 +175590,7 @@ webhooks: - name - created_at - updated_at - repository: *771 + repository: *772 sender: *4 required: - action @@ -175565,14 +175669,14 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - project_column: *806 + enterprise: *769 + installation: *770 + organization: *771 + project_column: *807 repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -175661,11 +175765,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - project_column: *806 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_column: *807 + repository: *772 sender: *4 required: - action @@ -175745,11 +175849,11 @@ webhooks: type: string enum: - moved - enterprise: *768 - installation: *769 - organization: *770 - project_column: *806 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project_column: *807 + repository: *772 sender: *4 required: - action @@ -175829,11 +175933,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - project: *807 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 + repository: *772 sender: *4 required: - action @@ -175913,14 +176017,14 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - project: *807 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 repository: anyOf: - type: 'null' - - *771 + - *772 sender: *4 required: - action @@ -176021,11 +176125,11 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - project: *807 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 + repository: *772 sender: *4 required: - action @@ -176104,11 +176208,11 @@ webhooks: type: string enum: - reopened - enterprise: *768 - installation: *769 - organization: *770 - project: *807 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + project: *808 + repository: *772 sender: *4 required: - action @@ -176189,9 +176293,9 @@ webhooks: type: string enum: - closed - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -176272,9 +176376,9 @@ webhooks: type: string enum: - created - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -176355,9 +176459,9 @@ webhooks: type: string enum: - deleted - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -176478,9 +176582,9 @@ webhooks: type: string to: type: string - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -176563,7 +176667,7 @@ webhooks: type: string enum: - archived - changes: &811 + changes: &812 type: object properties: archived_at: @@ -176579,9 +176683,9 @@ webhooks: - string - 'null' format: date-time - installation: *769 - organization: *770 - projects_v2_item: &808 + installation: *770 + organization: *771 + projects_v2_item: &809 title: Projects v2 Item description: An item belonging to a project type: object @@ -176599,7 +176703,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *285 + content_type: *286 creator: *4 created_at: type: string @@ -176721,9 +176825,9 @@ webhooks: - 'null' to: type: string - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -176805,9 +176909,9 @@ webhooks: type: string enum: - created - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -176888,9 +176992,9 @@ webhooks: type: string enum: - deleted - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -176995,7 +177099,7 @@ webhooks: oneOf: - type: string - type: integer - - &809 + - &810 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -177019,7 +177123,7 @@ webhooks: required: - id - name - - &810 + - &811 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -177059,8 +177163,8 @@ webhooks: oneOf: - type: string - type: integer - - *809 - *810 + - *811 type: - 'null' - string @@ -177083,9 +177187,9 @@ webhooks: - 'null' required: - body - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -177182,9 +177286,9 @@ webhooks: type: - string - 'null' - installation: *769 - organization: *770 - projects_v2_item: *808 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -177267,10 +177371,10 @@ webhooks: type: string enum: - restored - changes: *811 - installation: *769 - organization: *770 - projects_v2_item: *808 + changes: *812 + installation: *770 + organization: *771 + projects_v2_item: *809 sender: *4 required: - action @@ -177352,9 +177456,9 @@ webhooks: type: string enum: - reopened - installation: *769 - organization: *770 - projects_v2: *279 + installation: *770 + organization: *771 + projects_v2: *280 sender: *4 required: - action @@ -177435,9 +177539,9 @@ webhooks: type: string enum: - created - installation: *769 - organization: *770 - projects_v2_status_update: *812 + installation: *770 + organization: *771 + projects_v2_status_update: *813 sender: *4 required: - action @@ -177518,9 +177622,9 @@ webhooks: type: string enum: - deleted - installation: *769 - organization: *770 - projects_v2_status_update: *812 + installation: *770 + organization: *771 + projects_v2_status_update: *813 sender: *4 required: - action @@ -177666,9 +177770,9 @@ webhooks: - string - 'null' format: date - installation: *769 - organization: *770 - projects_v2_status_update: *812 + installation: *770 + organization: *771 + projects_v2_status_update: *813 sender: *4 required: - action @@ -177739,10 +177843,10 @@ webhooks: title: public event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - repository @@ -177819,13 +177923,13 @@ webhooks: type: string enum: - assigned - assignee: *788 - enterprise: *768 - installation: *769 - number: &813 + assignee: *789 + enterprise: *769 + installation: *770 + number: &814 description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -180068,7 +180172,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -180197,7 +180301,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -180294,11 +180398,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -182532,7 +182636,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -182663,7 +182767,7 @@ webhooks: - draft reason: type: string - repository: *771 + repository: *772 sender: *4 required: - action @@ -182760,11 +182864,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -184998,7 +185102,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -185129,7 +185233,7 @@ webhooks: - draft reason: type: string - repository: *771 + repository: *772 sender: *4 required: - action @@ -185226,13 +185330,13 @@ webhooks: type: string enum: - closed - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: &814 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: &815 allOf: - - *602 + - *603 - type: object properties: allow_auto_merge: @@ -185294,7 +185398,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *771 + repository: *772 sender: *4 required: - action @@ -185375,12 +185479,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -185460,11 +185564,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *768 - milestone: *282 - number: *813 - organization: *770 - pull_request: &815 + enterprise: *769 + milestone: *283 + number: *814 + organization: *771 + pull_request: &816 title: Pull Request type: object properties: @@ -187685,7 +187789,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -187856,7 +187960,7 @@ webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *771 + repository: *772 sender: *4 required: - action @@ -187935,11 +188039,11 @@ webhooks: type: string enum: - dequeued - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -190164,7 +190268,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -190308,7 +190412,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *771 + repository: *772 sender: *4 required: - action @@ -190440,12 +190544,12 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -190525,11 +190629,11 @@ webhooks: type: string enum: - enqueued - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -192754,7 +192858,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -192883,7 +192987,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -192971,11 +193075,11 @@ webhooks: type: string enum: - labeled - enterprise: *768 - installation: *769 - label: *787 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + label: *788 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -195217,7 +195321,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -195346,7 +195450,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -195442,10 +195546,10 @@ webhooks: type: string enum: - locked - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -197685,7 +197789,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -197814,7 +197918,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -197909,12 +198013,12 @@ webhooks: type: string enum: - milestoned - enterprise: *768 - milestone: *282 - number: *813 - organization: *770 - pull_request: *815 - repository: *771 + enterprise: *769 + milestone: *283 + number: *814 + organization: *771 + pull_request: *816 + repository: *772 sender: *4 required: - action @@ -197993,12 +198097,12 @@ webhooks: type: string enum: - opened - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -198079,12 +198183,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -198164,12 +198268,12 @@ webhooks: type: string enum: - reopened - enterprise: *768 - installation: *769 - number: *813 - organization: *770 - pull_request: *814 - repository: *771 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 + pull_request: *815 + repository: *772 sender: *4 required: - action @@ -198544,9 +198648,9 @@ webhooks: - start_side - side - reactions - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: type: object properties: @@ -200675,7 +200779,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -200799,7 +200903,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *771 + repository: *772 sender: *4 required: - action @@ -200894,7 +200998,7 @@ webhooks: type: string enum: - deleted - comment: &817 + comment: &818 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -201187,9 +201291,9 @@ webhooks: - start_side - side - reactions - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: type: object properties: @@ -203306,7 +203410,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -203430,7 +203534,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *771 + repository: *772 sender: *4 required: - action @@ -203525,11 +203629,11 @@ webhooks: type: string enum: - edited - changes: *816 - comment: *817 - enterprise: *768 - installation: *769 - organization: *770 + changes: *817 + comment: *818 + enterprise: *769 + installation: *770 + organization: *771 pull_request: type: object properties: @@ -205649,7 +205753,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -205773,7 +205877,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *771 + repository: *772 sender: *4 required: - action @@ -205869,9 +205973,9 @@ webhooks: type: string enum: - dismissed - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -208001,7 +208105,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -208127,7 +208231,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 + repository: *772 review: description: The review that was affected. type: object @@ -208393,9 +208497,9 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -210509,8 +210613,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 - review: &818 + repository: *772 + review: &819 description: The review that was affected. type: object properties: @@ -210756,12 +210860,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -213002,7 +213106,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -213131,7 +213235,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_reviewer: title: User type: @@ -213217,12 +213321,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -215470,7 +215574,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -215599,7 +215703,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_team: title: Team description: Groups of organization members that gives permissions @@ -215817,12 +215921,12 @@ webhooks: type: string enum: - review_requested - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -218064,7 +218168,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -218194,7 +218298,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_reviewer: title: User type: @@ -218281,12 +218385,12 @@ webhooks: type: string enum: - review_requested - enterprise: *768 - installation: *769 + enterprise: *769 + installation: *770 number: description: The pull request number. type: integer - organization: *770 + organization: *771 pull_request: title: Pull Request type: object @@ -220519,7 +220623,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. @@ -220649,7 +220753,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 requested_team: title: Team description: Groups of organization members that gives permissions @@ -220856,9 +220960,9 @@ webhooks: type: string enum: - submitted - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -222991,7 +223095,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -223117,8 +223221,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 - review: *818 + repository: *772 + review: *819 sender: *4 required: - action @@ -223213,9 +223317,9 @@ webhooks: type: string enum: - resolved - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -225243,7 +225347,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -225369,7 +225473,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 + repository: *772 sender: *4 thread: type: object @@ -225774,9 +225878,9 @@ webhooks: type: string enum: - unresolved - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 pull_request: title: Simple Pull Request type: object @@ -227788,7 +227892,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: type: string enum: @@ -227913,7 +228017,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *771 + repository: *772 sender: *4 thread: type: object @@ -228314,11 +228418,11 @@ webhooks: type: string enum: - stacked - enterprise: *768 - installation: *769 - stack: *599 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + stack: *600 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -230560,7 +230664,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -230689,7 +230793,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -230790,10 +230894,10 @@ webhooks: type: string before: type: string - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -233022,7 +233126,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -233151,7 +233255,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -233248,11 +233352,11 @@ webhooks: type: string enum: - unassigned - assignee: *819 - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + assignee: *820 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -235496,7 +235600,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -235625,7 +235729,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -235719,11 +235823,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *768 - installation: *769 - label: *787 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + label: *788 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -237956,7 +238060,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -238085,7 +238189,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -238181,10 +238285,10 @@ webhooks: type: string enum: - unlocked - enterprise: *768 - installation: *769 - number: *813 - organization: *770 + enterprise: *769 + installation: *770 + number: *814 + organization: *771 pull_request: title: Pull Request type: object @@ -240408,7 +240512,7 @@ webhooks: review_comments_url: type: string format: uri - stack: *599 + stack: *600 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -240536,7 +240640,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *771 + repository: *772 sender: *4 required: - action @@ -240754,7 +240858,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *768 + enterprise: *769 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -240849,8 +240953,8 @@ webhooks: - url - author - committer - installation: *769 - organization: *770 + installation: *770 + organization: *771 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -241449,9 +241553,9 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 registry_package: type: object properties: @@ -241928,7 +242032,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *802 + items: *803 summary: type: string tag_name: @@ -241984,7 +242088,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -242062,9 +242166,9 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 registry_package: type: object properties: @@ -242376,7 +242480,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *802 + items: *803 summary: type: string tag_name: @@ -242426,7 +242530,7 @@ webhooks: - owner - package_version - registry - repository: *771 + repository: *772 sender: *4 required: - action @@ -242503,10 +242607,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - release: &820 + enterprise: *769 + installation: *770 + organization: *771 + release: &821 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -242837,7 +242941,7 @@ webhooks: - updated_at - zipball_url - body - repository: *771 + repository: *772 sender: *4 required: - action @@ -242914,11 +243018,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - release: *820 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *821 + repository: *772 sender: *4 required: - action @@ -243035,11 +243139,11 @@ webhooks: type: boolean required: - to - enterprise: *768 - installation: *769 - organization: *770 - release: *820 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *821 + repository: *772 sender: *4 required: - action @@ -243117,9 +243221,9 @@ webhooks: type: string enum: - prereleased - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -243455,7 +243559,7 @@ webhooks: - string - 'null' format: uri - repository: *771 + repository: *772 sender: *4 required: - action @@ -243531,10 +243635,10 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 - release: &821 + enterprise: *769 + installation: *770 + organization: *771 + release: &822 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -243867,7 +243971,7 @@ webhooks: - string - 'null' format: uri - repository: *771 + repository: *772 sender: *4 required: - action @@ -243943,11 +244047,11 @@ webhooks: type: string enum: - released - enterprise: *768 - installation: *769 - organization: *770 - release: *820 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *821 + repository: *772 sender: *4 required: - action @@ -244023,11 +244127,11 @@ webhooks: type: string enum: - unpublished - enterprise: *768 - installation: *769 - organization: *770 - release: *821 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + release: *822 + repository: *772 sender: *4 required: - action @@ -244103,11 +244207,11 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_advisory: *688 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_advisory: *689 sender: *4 required: - action @@ -244183,11 +244287,11 @@ webhooks: type: string enum: - reported - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_advisory: *688 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_advisory: *689 sender: *4 required: - action @@ -244263,10 +244367,10 @@ webhooks: type: string enum: - archived - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244343,10 +244447,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244424,10 +244528,10 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244512,10 +244616,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244630,10 +244734,10 @@ webhooks: - 'null' items: type: string - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244705,10 +244809,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 status: type: string @@ -244789,10 +244893,10 @@ webhooks: type: string enum: - privatized - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244869,10 +244973,10 @@ webhooks: type: string enum: - publicized - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -244966,10 +245070,10 @@ webhooks: - name required: - repository - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245049,11 +245153,11 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_ruleset: *324 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_ruleset: *325 sender: *4 required: - action @@ -245131,11 +245235,11 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_ruleset: *324 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_ruleset: *325 sender: *4 required: - action @@ -245213,11 +245317,11 @@ webhooks: type: string enum: - edited - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - repository_ruleset: *324 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + repository_ruleset: *325 changes: type: object properties: @@ -245236,16 +245340,16 @@ webhooks: properties: added: type: array - items: *298 + items: *299 deleted: type: array - items: *298 + items: *299 updated: type: array items: type: object properties: - condition: *298 + condition: *299 changes: type: object properties: @@ -245278,16 +245382,16 @@ webhooks: properties: added: type: array - items: *624 + items: *625 deleted: type: array - items: *624 + items: *625 updated: type: array items: type: object properties: - rule: *624 + rule: *625 changes: type: object properties: @@ -245524,10 +245628,10 @@ webhooks: - from required: - owner - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245605,10 +245709,10 @@ webhooks: type: string enum: - unarchived - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -245686,7 +245790,7 @@ webhooks: type: string enum: - create - alert: &822 + alert: &823 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -245811,10 +245915,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -246024,10 +246128,10 @@ webhooks: type: string enum: - dismissed - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -246105,11 +246209,11 @@ webhooks: type: string enum: - reopen - alert: *822 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *823 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -246311,10 +246415,10 @@ webhooks: enum: - fixed - open - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -246392,7 +246496,7 @@ webhooks: type: string enum: - assigned - alert: &824 + alert: &825 type: object properties: number: *181 @@ -246539,12 +246643,12 @@ webhooks: anyOf: - type: 'null' - *4 - metadata: *823 + metadata: *824 assignee: *4 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -246622,11 +246726,11 @@ webhooks: type: string enum: - created - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -246707,11 +246811,11 @@ webhooks: type: string enum: - created - alert: *824 - installation: *769 - location: *825 - organization: *770 - repository: *771 + alert: *825 + installation: *770 + location: *826 + organization: *771 + repository: *772 sender: *4 required: - location @@ -246949,11 +247053,11 @@ webhooks: type: string enum: - metadata_created - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247030,11 +247134,11 @@ webhooks: type: string enum: - metadata_removed - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247111,11 +247215,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247193,11 +247297,11 @@ webhooks: type: string enum: - reopened - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247275,11 +247379,11 @@ webhooks: type: string enum: - resolved - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247357,12 +247461,12 @@ webhooks: type: string enum: - unassigned - alert: *824 + alert: *825 assignee: *4 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247440,11 +247544,11 @@ webhooks: type: string enum: - validated - alert: *824 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + alert: *825 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -247574,10 +247678,10 @@ webhooks: - organization - enterprise - - repository: *771 - enterprise: *768 - installation: *769 - organization: *770 + repository: *772 + enterprise: *769 + installation: *770 + organization: *771 sender: *4 required: - action @@ -247655,11 +247759,11 @@ webhooks: type: string enum: - published - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - security_advisory: &826 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + security_advisory: &827 description: The details of the security advisory, including summary, description, and severity. type: object @@ -247863,11 +247967,11 @@ webhooks: type: string enum: - updated - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 - security_advisory: *826 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 + security_advisory: *827 sender: *4 required: - action @@ -247940,10 +248044,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -248137,11 +248241,11 @@ webhooks: from: type: object properties: - security_and_analysis: *297 - enterprise: *768 - installation: *769 - organization: *770 - repository: *343 + security_and_analysis: *298 + enterprise: *769 + installation: *770 + organization: *771 + repository: *344 sender: *4 required: - changes @@ -248219,12 +248323,12 @@ webhooks: type: string enum: - cancelled - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: &827 + sponsorship: &828 type: object properties: created_at: @@ -248529,12 +248633,12 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - sponsorship @@ -248622,12 +248726,12 @@ webhooks: type: string required: - from - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - changes @@ -248704,17 +248808,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &828 + effective_date: &829 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: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - sponsorship @@ -248788,7 +248892,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &829 + changes: &830 type: object properties: tier: @@ -248832,13 +248936,13 @@ webhooks: - from required: - tier - effective_date: *828 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + effective_date: *829 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - changes @@ -248915,13 +249019,13 @@ webhooks: type: string enum: - tier_changed - changes: *829 - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + changes: *830 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - sponsorship: *827 + sponsorship: *828 required: - action - changes @@ -248995,10 +249099,10 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -249082,10 +249186,10 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -249519,15 +249623,15 @@ webhooks: type: - string - 'null' - enterprise: *768 + enterprise: *769 id: description: The unique identifier of the status. type: integer - installation: *769 + installation: *770 name: type: string - organization: *770 - repository: *771 + organization: *771 + repository: *772 sender: *4 sha: description: The Commit SHA. @@ -249643,9 +249747,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -249734,9 +249838,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -249825,9 +249929,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -249916,9 +250020,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *83 - installation: *769 - organization: *770 - repository: *771 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -249994,12 +250098,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 - team: &830 + team: &831 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -250229,9 +250333,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -250701,7 +250805,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -250777,9 +250881,9 @@ webhooks: type: string enum: - created - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -251249,7 +251353,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -251326,9 +251430,9 @@ webhooks: type: string enum: - deleted - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -251798,7 +251902,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -251942,9 +252046,9 @@ webhooks: - from required: - permissions - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -252414,7 +252518,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - changes @@ -252492,9 +252596,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *768 - installation: *769 - organization: *770 + enterprise: *769 + installation: *770 + organization: *771 repository: title: Repository description: A git repository @@ -252964,7 +253068,7 @@ webhooks: - topics - visibility sender: *4 - team: *830 + team: *831 required: - action - team @@ -253040,10 +253144,10 @@ webhooks: type: string enum: - started - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 required: - action @@ -253116,17 +253220,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *768 + enterprise: *769 inputs: type: - object - 'null' additionalProperties: true - installation: *769 - organization: *770 + installation: *770 + organization: *771 ref: type: string - repository: *771 + repository: *772 sender: *4 workflow: type: string @@ -253208,10 +253312,10 @@ webhooks: type: string enum: - completed - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 workflow_job: allOf: @@ -253467,7 +253571,7 @@ webhooks: type: string required: - conclusion - deployment: *500 + deployment: *501 required: - action - repository @@ -253546,10 +253650,10 @@ webhooks: type: string enum: - in_progress - enterprise: *768 - installation: *769 - organization: *770 - repository: *771 + enterprise: *769 + installation: *770 + organization: *771 + repository: *772 sender: *4 workflow_job: allOf: @@ -253831,7 +253935,7 @@ webhooks: required: - status - steps - deployment: *500 + deployment: *501 required: - action - repository @@ -253910,10 +254014,10 @@ webhooks: type: string enum: {"code":"deadline_exceeded","msg":"operation timed out"}